1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
* ======================================================
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 the LyX Team.
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
1999-11-09 23:52:04 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
2001-12-28 13:26:54 +00:00
|
|
|
#pragma implementation
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyx_sty.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "bufferparams.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "lyxtextclasslist.h"
|
2000-12-29 12:48:02 +00:00
|
|
|
#include "FloatList.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "language.h"
|
2001-11-19 15:34:11 +00:00
|
|
|
#include "encoding.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "LString.h"
|
2000-12-29 12:48:02 +00:00
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
using lyx::layout_type;
|
|
|
|
using lyx::textclass_type;
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
using std::endl;
|
|
|
|
using std::set;
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
LaTeXFeatures::LaTeXFeatures(BufferParams const & p, layout_type n)
|
2000-04-10 21:40:13 +00:00
|
|
|
: layout(n, false), params(p)
|
2001-11-29 17:12:21 +00:00
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
|
|
void LaTeXFeatures::require(string const & name)
|
|
|
|
{
|
2001-11-19 15:34:11 +00:00
|
|
|
// INSET_GRAPHICS: remove this when InsetFig is thrown.
|
|
|
|
if (name == "graphics") {
|
|
|
|
features.push_back("graphicx");
|
|
|
|
features.push_back("graphics");
|
|
|
|
} else
|
|
|
|
features.push_back(name);
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
void LaTeXFeatures::useLayout(std::vector<bool>::size_type const & idx)
|
|
|
|
{
|
|
|
|
layout[idx] = true;
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
bool LaTeXFeatures::isRequired(string const & name) const
|
|
|
|
{
|
|
|
|
FeaturesList::const_iterator i = std::find(features.begin(),
|
|
|
|
features.end(),
|
|
|
|
name);
|
2001-11-29 17:12:21 +00:00
|
|
|
return i != features.end();
|
2001-11-19 15:34:11 +00:00
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
void LaTeXFeatures::addExternalPreamble(string const & pream)
|
|
|
|
{
|
|
|
|
externalPreambles += pream;
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
void LaTeXFeatures::useFloat(string const & name)
|
|
|
|
{
|
|
|
|
usedFloats.insert(name);
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
void LaTeXFeatures::useLanguage(Language const * lang)
|
|
|
|
{
|
|
|
|
UsedLanguages.insert(lang);
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
void LaTeXFeatures::includeFile(string const & key, string const & name)
|
|
|
|
{
|
|
|
|
IncludedFiles[key] = name;
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
bool LaTeXFeatures::hasLanguages()
|
|
|
|
{
|
|
|
|
return !UsedLanguages.empty();
|
|
|
|
}
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
string LaTeXFeatures::getLanguages() const
|
|
|
|
{
|
|
|
|
ostringstream languages;
|
|
|
|
|
|
|
|
for (LanguageList::const_iterator cit =
|
|
|
|
UsedLanguages.begin();
|
|
|
|
cit != UsedLanguages.end();
|
|
|
|
++cit)
|
|
|
|
languages << (*cit)->babel() << ',';
|
|
|
|
|
|
|
|
return languages.str().c_str();
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
set<string> LaTeXFeatures::getEncodingSet(string const & doc_encoding)
|
|
|
|
{
|
|
|
|
set<string> encodings;
|
|
|
|
for (LanguageList::const_iterator it =
|
|
|
|
UsedLanguages.begin();
|
|
|
|
it != UsedLanguages.end(); ++it)
|
|
|
|
if ((*it)->encoding()->LatexName() != doc_encoding)
|
|
|
|
encodings.insert((*it)->encoding()->LatexName());
|
|
|
|
return encodings;
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
string const LaTeXFeatures::getPackages() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-05-08 17:08:44 +00:00
|
|
|
ostringstream packages;
|
2000-04-10 21:40:13 +00:00
|
|
|
LyXTextClass const & tclass =
|
|
|
|
textclasslist.TextClass(params.textclass);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* These are all the 'simple' includes. i.e
|
|
|
|
* packages which we just \usepackage{package}
|
|
|
|
**/
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
// array-package
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("array"))
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{array}\n";
|
2000-07-17 14:31:07 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
// verbatim.sty
|
|
|
|
if (isRequired("verbatim"))
|
|
|
|
packages << "\\usepackage{verbatim}\n";
|
|
|
|
|
|
|
|
//longtable.sty
|
|
|
|
if (isRequired("longtable"))
|
|
|
|
packages << "\\usepackage{longtable}\n";
|
|
|
|
|
|
|
|
//rotating.sty
|
|
|
|
if (isRequired("rotating"))
|
|
|
|
packages << "\\usepackage{rotating}\n";
|
|
|
|
|
|
|
|
|
|
|
|
// latexsym.sty
|
|
|
|
if (isRequired("latexsym"))
|
|
|
|
packages << "\\usepackage{latexsym}\n";
|
|
|
|
|
|
|
|
// pifont.sty
|
|
|
|
if (isRequired("pifont"))
|
|
|
|
packages << "\\usepackage{pifont}\n";
|
|
|
|
|
|
|
|
// subfigure.sty
|
|
|
|
if (isRequired("subfigure"))
|
|
|
|
packages << "\\usepackage{subfigure}\n";
|
|
|
|
|
|
|
|
// floatflt.sty
|
|
|
|
if (isRequired("floatflt"))
|
|
|
|
packages << "\\usepackage{floatflt}\n";
|
|
|
|
|
|
|
|
|
|
|
|
// varioref.sty
|
|
|
|
if (isRequired("varioref"))
|
|
|
|
packages << "\\usepackage{varioref}\n";
|
|
|
|
|
|
|
|
// prettyref.sty
|
|
|
|
if (isRequired("prettyref"))
|
|
|
|
packages << "\\usepackage{prettyref}\n";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The rest of these packages are somewhat more complicated
|
|
|
|
* than those above.
|
|
|
|
**/
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// color.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("color")) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (params.graphicsDriver == "default")
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{color}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage["
|
|
|
|
<< params.graphicsDriver
|
|
|
|
<< "]{color}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// makeidx.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("makeidx")) {
|
2001-10-04 13:00:25 +00:00
|
|
|
if (! tclass.provides(LyXTextClass::makeidx))
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{makeidx}\n";
|
|
|
|
packages << "\\makeindex\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
// graphicx.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("graphicx") && params.graphicsDriver != "none") {
|
2000-07-31 12:30:10 +00:00
|
|
|
if (params.graphicsDriver == "default")
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{graphicx}\n";
|
2000-07-31 12:30:10 +00:00
|
|
|
else
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage["
|
|
|
|
<< params.graphicsDriver
|
|
|
|
<< "]{graphicx}\n";
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
// INSET_GRAPHICS: remove this when InsetFig is thrown.
|
1999-09-27 18:44:28 +00:00
|
|
|
// graphics.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("graphics") && params.graphicsDriver != "none") {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (params.graphicsDriver == "default")
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{graphics}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage["
|
|
|
|
<< params.graphicsDriver
|
|
|
|
<< "]{graphics}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-05-10 15:53:10 +00:00
|
|
|
//if (algorithm) {
|
|
|
|
// packages << "\\usepackage{algorithm}\n";
|
|
|
|
//}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-10-31 15:19:49 +00:00
|
|
|
// lyxskak.sty --- newer chess support based on skak.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("chess")) {
|
2001-10-31 15:19:49 +00:00
|
|
|
packages << "\\usepackage[ps,mover]{lyxskak}\n";
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// setspace.sty
|
2000-04-11 22:55:29 +00:00
|
|
|
if ((params.spacing.getSpace() != Spacing::Single
|
|
|
|
&& !params.spacing.isDefault())
|
2001-11-19 15:34:11 +00:00
|
|
|
|| isRequired("setspace")) {
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{setspace}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
switch (params.spacing.getSpace()) {
|
2000-04-11 22:55:29 +00:00
|
|
|
case Spacing::Default:
|
1999-09-27 18:44:28 +00:00
|
|
|
case Spacing::Single:
|
|
|
|
// we dont use setspace.sty so dont print anything
|
|
|
|
//packages += "\\singlespacing\n";
|
|
|
|
break;
|
|
|
|
case Spacing::Onehalf:
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\onehalfspacing\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Double:
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\doublespacing\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Other:
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\setstretch{"
|
|
|
|
<< params.spacing.getValue() << "}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// amssymb.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("amssymb") || params.use_amsmath)
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\usepackage{amssymb}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
// url.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("url") && ! tclass.provides(LyXTextClass::url))
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << "\\IfFileExists{url.sty}{\\usepackage{url}}\n"
|
1999-09-27 18:44:28 +00:00
|
|
|
" {\\newcommand{\\url}{\\texttt}}\n";
|
2000-05-19 16:46:01 +00:00
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
// float.sty
|
2001-07-30 11:56:00 +00:00
|
|
|
// We only need float.sty if we use non builtin floats, or if we
|
|
|
|
// use the "H" modifier. This includes modified table and
|
|
|
|
// figure floats. (Lgb)
|
2000-12-29 12:48:02 +00:00
|
|
|
if (!usedFloats.empty()) {
|
|
|
|
UsedFloats::const_iterator beg = usedFloats.begin();
|
|
|
|
UsedFloats::const_iterator end = usedFloats.end();
|
|
|
|
for (; beg != end; ++beg) {
|
|
|
|
Floating const & fl = floatList.getType((*beg));
|
|
|
|
if (!fl.type().empty() && !fl.builtin()) {
|
2001-11-19 15:34:11 +00:00
|
|
|
const_cast<LaTeXFeatures *>(this)->require("floats");
|
2000-12-29 12:48:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("floats")) {
|
2001-07-30 11:56:00 +00:00
|
|
|
packages << "\\usepackage{float}\n";
|
|
|
|
}
|
|
|
|
|
2001-07-19 14:12:37 +00:00
|
|
|
// natbib.sty
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("natbib")) {
|
2001-07-26 09:47:36 +00:00
|
|
|
packages << "\\usepackage[";
|
|
|
|
if (params.use_numerical_citations) {
|
|
|
|
packages << "numbers";
|
|
|
|
} else {
|
|
|
|
packages << "authoryear";
|
|
|
|
}
|
|
|
|
packages << "]{natbib}\n";
|
2001-07-19 14:12:37 +00:00
|
|
|
}
|
2000-06-28 13:35:52 +00:00
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
packages << externalPreambles;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
return packages.str().c_str();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
string const LaTeXFeatures::getMacros() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-05-08 17:08:44 +00:00
|
|
|
ostringstream macros;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// always include this
|
2001-11-19 15:34:11 +00:00
|
|
|
if (true || isRequired("lyx"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << lyx_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("lyxline"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << lyxline_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
if (isRequired("noun"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << noun_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
if (isRequired("lyxarrow"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << lyxarrow_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// quotes.
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("quotesinglbase"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << quotesinglbase_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("quotedblbase"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << quotedblbase_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("guilsinglleft"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << guilsinglleft_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("guilsinglright"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << guilsinglright_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("guillemotleft"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << guillemotleft_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("guillemotright"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << guillemotright_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Math mode
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("boldsymbol") && !isRequired("amsstyle"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << boldsymbol_def << '\n';
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("binom") && !isRequired("amsstyle"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << binom_def << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// other
|
2001-11-29 17:12:21 +00:00
|
|
|
if (isRequired("NeedLyXMinipageIndent"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << minipageindent_def;
|
2001-11-29 17:12:21 +00:00
|
|
|
if (isRequired("ParagraphIndent"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << paragraphindent_def;
|
2001-11-29 17:12:21 +00:00
|
|
|
if (isRequired("NeedLyXFootnoteCode"))
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << floatingfootnote_def;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
// floats
|
2001-05-08 17:08:44 +00:00
|
|
|
getFloatDefinitions(macros);
|
|
|
|
|
2001-01-20 14:16:01 +00:00
|
|
|
for (LanguageList::const_iterator cit = UsedLanguages.begin();
|
|
|
|
cit != UsedLanguages.end(); ++cit)
|
|
|
|
if (!(*cit)->latex_options().empty())
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << (*cit)->latex_options() << '\n';
|
2001-01-20 14:16:01 +00:00
|
|
|
if (!params.language->latex_options().empty())
|
2001-05-08 17:08:44 +00:00
|
|
|
macros << params.language->latex_options() << '\n';
|
2001-01-20 14:16:01 +00:00
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
return macros.str().c_str();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
string const LaTeXFeatures::getTClassPreamble() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// the text class specific preamble
|
2001-11-29 17:12:21 +00:00
|
|
|
LyXTextClass const & tclass = textclasslist.TextClass(params.textclass);
|
2001-05-08 17:08:44 +00:00
|
|
|
ostringstream tcpreamble;
|
|
|
|
|
|
|
|
tcpreamble << tclass.preamble();
|
1999-11-04 01:40:20 +00:00
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
for (layout_type i = 0; i < tclass.numLayouts(); ++i) {
|
1999-11-09 23:52:04 +00:00
|
|
|
if (layout[i]) {
|
2001-11-19 15:34:11 +00:00
|
|
|
tcpreamble << tclass[i].preamble();
|
1999-11-09 23:52:04 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
return tcpreamble.str().c_str();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-23 09:42:14 +00:00
|
|
|
string const LaTeXFeatures::getLyXSGMLEntities() const
|
|
|
|
{
|
|
|
|
// Definition of entities used in the document that are LyX related.
|
|
|
|
ostringstream entities;
|
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
if (isRequired("lyxarrow")) {
|
2001-11-29 17:12:21 +00:00
|
|
|
entities << "<!ENTITY lyxarrow \"->\">" << '\n';
|
2001-10-23 09:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return entities.str().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
string const LaTeXFeatures::getIncludedFiles(string const & fname) const
|
2000-07-01 12:54:45 +00:00
|
|
|
{
|
2001-05-08 17:08:44 +00:00
|
|
|
ostringstream sgmlpreamble;
|
|
|
|
string const basename = OnlyPath(fname);
|
2000-11-13 15:43:36 +00:00
|
|
|
|
2000-08-03 21:17:52 +00:00
|
|
|
FileMap::const_iterator end = IncludedFiles.end();
|
2000-10-11 21:06:43 +00:00
|
|
|
for (FileMap::const_iterator fi = IncludedFiles.begin();
|
|
|
|
fi != end; ++fi)
|
2001-05-08 17:08:44 +00:00
|
|
|
sgmlpreamble << "\n<!ENTITY " << fi->first
|
|
|
|
<< (IsSGMLFilename(fi->second) ? " SYSTEM \"" : " \"" )
|
2001-05-09 09:14:50 +00:00
|
|
|
<< MakeRelPath(fi->second, basename) << "\">";
|
2000-07-01 12:54:45 +00:00
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
return sgmlpreamble.str().c_str();
|
2000-07-01 12:54:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-09 09:14:50 +00:00
|
|
|
void LaTeXFeatures::showStruct() const {
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "LyX needs the following commands when LaTeXing:"
|
2000-04-10 21:40:13 +00:00
|
|
|
<< "\n***** Packages:" << getPackages()
|
|
|
|
<< "\n***** Macros:" << getMacros()
|
|
|
|
<< "\n***** Textclass stuff:" << getTClassPreamble()
|
1999-10-07 18:44:17 +00:00
|
|
|
<< "\n***** done." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2000-04-10 21:40:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
BufferParams const & LaTeXFeatures::bufferParams() const
|
|
|
|
{
|
|
|
|
return params;
|
|
|
|
}
|
2001-05-08 17:08:44 +00:00
|
|
|
|
2001-06-27 15:33:55 +00:00
|
|
|
void LaTeXFeatures::getFloatDefinitions(std::ostream & os) const
|
2001-05-08 17:08:44 +00:00
|
|
|
{
|
|
|
|
// Here we will output the code to create the needed float styles.
|
|
|
|
// We will try to do this as minimal as possible.
|
|
|
|
// \floatstyle{ruled}
|
|
|
|
// \newfloat{algorithm}{htbp}{loa}
|
|
|
|
// \floatname{algorithm}{Algorithm}
|
|
|
|
UsedFloats::const_iterator cit = usedFloats.begin();
|
|
|
|
UsedFloats::const_iterator end = usedFloats.end();
|
|
|
|
// ostringstream floats;
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
Floating const & fl = floatList.getType((*cit));
|
|
|
|
|
|
|
|
// For builtin floats we do nothing.
|
|
|
|
if (fl.builtin()) continue;
|
|
|
|
|
|
|
|
// We have to special case "table" and "figure"
|
|
|
|
if (fl.type() == "tabular" || fl.type() == "figure") {
|
|
|
|
// Output code to modify "table" or "figure"
|
|
|
|
// but only if builtin == false
|
|
|
|
// and that have to be true at this point in the
|
|
|
|
// function.
|
|
|
|
string const type = fl.type();
|
|
|
|
string const placement = fl.placement();
|
|
|
|
string const style = fl.style();
|
|
|
|
if (!style.empty()) {
|
|
|
|
os << "\\floatstyle{" << style << "}\n"
|
|
|
|
<< "\\restylefloat{" << type << "}\n";
|
|
|
|
}
|
|
|
|
if (!placement.empty()) {
|
|
|
|
os << "\\floatplacement{" << type << "}{"
|
|
|
|
<< placement << "}\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The other non builtin floats.
|
|
|
|
|
|
|
|
string const type = fl.type();
|
|
|
|
string const placement = fl.placement();
|
|
|
|
string const ext = fl.ext();
|
|
|
|
string const within = fl.within();
|
|
|
|
string const style = fl.style();
|
|
|
|
string const name = fl.name();
|
|
|
|
os << "\\floatstyle{" << style << "}\n"
|
|
|
|
<< "\\newfloat{" << type << "}{" << placement
|
|
|
|
<< "}{" << ext << "}";
|
|
|
|
if (!within.empty())
|
|
|
|
os << "[" << within << "]";
|
|
|
|
os << "\n"
|
|
|
|
<< "\\floatname{" << type << "}{"
|
|
|
|
<< name << "}\n";
|
|
|
|
|
|
|
|
// What missing here is to code to minimalize the code
|
2001-11-09 13:44:48 +00:00
|
|
|
// outputted so that the same floatstyle will not be
|
|
|
|
// used several times, when the same style is still in
|
2001-05-08 17:08:44 +00:00
|
|
|
// effect. (Lgb)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|