2003-11-05 12:06:20 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file output_latex.cpp
|
2003-11-05 12:06:20 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-11-05 12:06:20 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "output_latex.h"
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "Encoding.h"
|
2010-10-31 01:04:03 +00:00
|
|
|
#include "Font.h"
|
2007-10-18 15:29:51 +00:00
|
|
|
#include "InsetList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Language.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
#include "Layout.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "LyXRC.h"
|
|
|
|
#include "OutputParams.h"
|
|
|
|
#include "Paragraph.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "TexRow.h"
|
|
|
|
#include "VSpace.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "insets/InsetBibitem.h"
|
2010-06-04 22:44:58 +00:00
|
|
|
#include "insets/InsetArgument.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
2007-10-02 18:27:20 +00:00
|
|
|
#include <boost/next_prior.hpp>
|
2010-06-04 21:50:08 +00:00
|
|
|
#include <list>
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2007-12-12 10:16:00 +00:00
|
|
|
|
2008-04-10 21:49:34 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
namespace {
|
|
|
|
|
2007-12-08 11:21:00 +00:00
|
|
|
enum OpenEncoding {
|
|
|
|
none,
|
|
|
|
inputenc,
|
|
|
|
CJK
|
2008-03-21 22:51:36 +00:00
|
|
|
};
|
2007-12-08 11:21:00 +00:00
|
|
|
|
|
|
|
static int open_encoding_ = none;
|
2008-06-03 07:51:14 +00:00
|
|
|
static int cjk_inherited_ = 0;
|
2009-07-30 00:58:37 +00:00
|
|
|
Language const * prev_env_language_ = 0;
|
2007-12-08 11:21:00 +00:00
|
|
|
|
|
|
|
|
2010-11-22 12:10:16 +00:00
|
|
|
string const getPolyglossiaEnvName(Language const * lang)
|
|
|
|
{
|
|
|
|
string result = lang->polyglossia();
|
|
|
|
if (result == "arabic")
|
|
|
|
// exceptional spelling; see polyglossia docs.
|
|
|
|
result = "Arabic";
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 23:39:38 +00:00
|
|
|
struct TeXEnvironementData
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2010-12-15 23:39:38 +00:00
|
|
|
bool cjk_nested;
|
|
|
|
Layout const * style;
|
|
|
|
Language const * par_language;
|
|
|
|
Encoding const * prev_encoding;
|
|
|
|
bool leftindent_open;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static TeXEnvironementData prepareEnvironement(Buffer const & buf, Text const & text,
|
|
|
|
ParagraphList::const_iterator pit, odocstream & os, TexRow & texrow,
|
|
|
|
OutputParams const & runparams)
|
|
|
|
{
|
|
|
|
TeXEnvironementData data;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
BufferParams const & bparams = buf.params();
|
|
|
|
|
2008-10-31 15:33:48 +00:00
|
|
|
// FIXME This test should not be necessary.
|
|
|
|
// We should perhaps issue an error if it is.
|
2009-08-09 16:19:43 +00:00
|
|
|
Layout const & style = text.inset().forcePlainLayout() ?
|
2008-08-01 20:57:27 +00:00
|
|
|
bparams.documentClass().plainLayout() : pit->layout();
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2008-01-25 13:27:08 +00:00
|
|
|
ParagraphList const & paragraphs = text.paragraphs();
|
2009-07-30 00:58:37 +00:00
|
|
|
ParagraphList::const_iterator const priorpit =
|
|
|
|
pit == paragraphs.begin() ? pit : boost::prior(pit);
|
|
|
|
|
2009-07-30 03:21:04 +00:00
|
|
|
bool const use_prev_env_language = prev_env_language_ != 0
|
|
|
|
&& priorpit->layout().isEnvironment()
|
2009-07-30 00:58:37 +00:00
|
|
|
&& (priorpit->getDepth() > pit->getDepth()
|
|
|
|
|| (priorpit->getDepth() == pit->getDepth()
|
|
|
|
&& priorpit->layout() != pit->layout()));
|
2008-01-25 13:27:08 +00:00
|
|
|
|
2010-12-15 23:39:38 +00:00
|
|
|
data.prev_encoding = runparams.encoding;
|
|
|
|
data.par_language = pit->getParLanguage(bparams);
|
2007-03-12 17:19:08 +00:00
|
|
|
Language const * const doc_language = bparams.language;
|
|
|
|
Language const * const prev_par_language =
|
2009-07-30 00:37:53 +00:00
|
|
|
(pit != paragraphs.begin())
|
2009-07-30 00:58:37 +00:00
|
|
|
? (use_prev_env_language ? prev_env_language_
|
|
|
|
: priorpit->getParLanguage(bparams))
|
2009-07-30 00:37:53 +00:00
|
|
|
: doc_language;
|
2010-12-15 23:39:38 +00:00
|
|
|
string par_lang = data.par_language->babel();
|
2010-11-22 12:10:16 +00:00
|
|
|
string prev_par_lang = prev_par_language->babel();
|
|
|
|
string doc_lang = doc_language->babel();
|
|
|
|
string lang_begin_command = lyxrc.language_command_begin;
|
|
|
|
string lang_end_command = lyxrc.language_command_end;
|
|
|
|
|
|
|
|
if (runparams.use_polyglossia) {
|
2010-12-15 23:39:38 +00:00
|
|
|
par_lang = getPolyglossiaEnvName(data.par_language);
|
2010-11-22 12:10:16 +00:00
|
|
|
prev_par_lang = getPolyglossiaEnvName(prev_par_language);
|
|
|
|
doc_lang = getPolyglossiaEnvName(doc_language);
|
|
|
|
lang_begin_command = "\\begin{$$lang}";
|
|
|
|
lang_end_command = "\\end{$$lang}";
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2010-11-22 12:10:16 +00:00
|
|
|
if (par_lang != prev_par_lang) {
|
|
|
|
if (!lang_end_command.empty() &&
|
|
|
|
prev_par_lang != doc_lang &&
|
|
|
|
!prev_par_lang.empty()) {
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_end_command,
|
2006-10-19 16:51:30 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
prev_par_lang))
|
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
|
|
|
<< "%\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
|
2010-12-08 18:25:21 +00:00
|
|
|
if ((lang_end_command.empty() ||
|
2010-11-22 12:10:16 +00:00
|
|
|
par_lang != doc_lang) &&
|
|
|
|
!par_lang.empty()) {
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_begin_command,
|
2006-10-19 16:51:30 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
par_lang));
|
|
|
|
if (runparams.use_polyglossia
|
2010-12-15 23:39:38 +00:00
|
|
|
&& !data.par_language->polyglossiaOpts().empty())
|
2010-11-22 12:10:16 +00:00
|
|
|
os << "["
|
2010-12-15 23:39:38 +00:00
|
|
|
<< from_ascii(data.par_language->polyglossiaOpts())
|
2010-11-22 12:10:16 +00:00
|
|
|
<< "]";
|
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
|
|
|
os << "%\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-15 23:39:38 +00:00
|
|
|
data.leftindent_open = false;
|
2003-11-05 12:06:20 +00:00
|
|
|
if (!pit->params().leftIndent().zero()) {
|
2006-10-19 16:51:30 +00:00
|
|
|
os << "\\begin{LyXParagraphLeftIndent}{"
|
2006-10-21 00:16:43 +00:00
|
|
|
<< from_ascii(pit->params().leftIndent().asLatexString())
|
2006-10-19 16:51:30 +00:00
|
|
|
<< "}\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
texrow.newline();
|
2010-12-15 23:39:38 +00:00
|
|
|
data.leftindent_open = true;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.isEnvironment()) {
|
2008-10-31 01:26:11 +00:00
|
|
|
os << "\\begin{" << from_ascii(style.latexname()) << '}';
|
2010-06-04 21:50:08 +00:00
|
|
|
if (style.optargs != 0 || style.reqargs != 0) {
|
|
|
|
int ret = latexArgInsets(*pit, os, runparams, style.reqargs, style.optargs);
|
2006-10-12 20:21:14 +00:00
|
|
|
while (ret > 0) {
|
|
|
|
texrow.newline();
|
|
|
|
--ret;
|
|
|
|
}
|
|
|
|
}
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.latextype == LATEX_LIST_ENVIRONMENT) {
|
2006-10-19 16:51:30 +00:00
|
|
|
os << '{'
|
2006-10-20 19:26:23 +00:00
|
|
|
<< pit->params().labelWidthString()
|
2006-10-19 16:51:30 +00:00
|
|
|
<< "}\n";
|
2008-03-06 21:31:27 +00:00
|
|
|
} else if (style.labeltype == LABEL_BIBLIO) {
|
2009-05-25 08:13:56 +00:00
|
|
|
if (pit->params().labelWidthString().empty())
|
2010-02-12 16:08:30 +00:00
|
|
|
os << '{' << bibitemWidest(buf, runparams) << "}\n";
|
2009-05-25 08:13:56 +00:00
|
|
|
else
|
|
|
|
os << '{'
|
|
|
|
<< pit->params().labelWidthString()
|
|
|
|
<< "}\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
} else
|
2008-03-06 21:31:27 +00:00
|
|
|
os << from_ascii(style.latexparam()) << '\n';
|
2003-11-05 12:06:20 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
2010-12-15 23:39:38 +00:00
|
|
|
data.style = &style;
|
2007-12-08 11:21:00 +00:00
|
|
|
|
|
|
|
// in multilingual environments, the CJK tags have to be nested properly
|
2010-12-15 23:39:38 +00:00
|
|
|
data.cjk_nested = false;
|
|
|
|
if (data.par_language->encoding()->package() == Encoding::CJK &&
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ != CJK && pit->isMultiLingual(bparams)) {
|
2008-11-22 16:40:39 +00:00
|
|
|
if (prev_par_language->encoding()->package() == Encoding::CJK)
|
2010-12-15 23:39:38 +00:00
|
|
|
os << "\\begin{CJK}{" << from_ascii(data.par_language->encoding()->latexName())
|
2010-11-26 18:32:29 +00:00
|
|
|
<< "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ = CJK;
|
2010-12-15 23:39:38 +00:00
|
|
|
data.cjk_nested = true;
|
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void finishEnvironement(odocstream & os, TexRow & texrow,
|
|
|
|
OutputParams const & runparams, TeXEnvironementData const & data)
|
|
|
|
{
|
|
|
|
if (open_encoding_ == CJK && data.cjk_nested) {
|
|
|
|
// We need to close the encoding even if it does not change
|
|
|
|
// to do correct environment nesting
|
|
|
|
os << "\\end{CJK}\n";
|
|
|
|
texrow.newline();
|
|
|
|
open_encoding_ = none;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.style->isEnvironment()) {
|
|
|
|
os << "\\end{" << from_ascii(data.style->latexname()) << "}\n";
|
2007-12-08 11:21:00 +00:00
|
|
|
texrow.newline();
|
2010-12-15 23:39:38 +00:00
|
|
|
prev_env_language_ = data.par_language;
|
|
|
|
if (runparams.encoding != data.prev_encoding) {
|
|
|
|
runparams.encoding = data.prev_encoding;
|
|
|
|
if (!runparams.isFullUnicode())
|
|
|
|
os << setEncoding(data.prev_encoding->iconvName());
|
|
|
|
}
|
2007-12-08 11:21:00 +00:00
|
|
|
}
|
|
|
|
|
2010-12-15 23:39:38 +00:00
|
|
|
if (data.leftindent_open) {
|
|
|
|
os << "\\end{LyXParagraphLeftIndent}\n";
|
|
|
|
texrow.newline();
|
|
|
|
prev_env_language_ = data.par_language;
|
|
|
|
if (runparams.encoding != data.prev_encoding) {
|
|
|
|
runparams.encoding = data.prev_encoding;
|
|
|
|
if (!runparams.isFullUnicode())
|
|
|
|
os << setEncoding(data.prev_encoding->iconvName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ParagraphList::const_iterator
|
|
|
|
TeXEnvironment(Buffer const & buf,
|
|
|
|
Text const & text,
|
|
|
|
ParagraphList::const_iterator pit,
|
|
|
|
odocstream & os, TexRow & texrow,
|
2010-12-15 23:46:02 +00:00
|
|
|
OutputParams const & runparams)
|
2010-12-15 23:39:38 +00:00
|
|
|
{
|
|
|
|
LYXERR(Debug::LATEX, "TeXEnvironment... " << &*pit);
|
|
|
|
ParagraphList const & paragraphs = text.paragraphs();
|
|
|
|
|
2004-05-17 11:28:31 +00:00
|
|
|
ParagraphList::const_iterator par = pit;
|
2003-11-05 12:06:20 +00:00
|
|
|
do {
|
2010-12-15 20:51:25 +00:00
|
|
|
TeXOnePar(buf, text, par, os, texrow, runparams);
|
|
|
|
if (par != paragraphs.end())
|
|
|
|
par++;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2004-05-17 11:28:31 +00:00
|
|
|
if (par == paragraphs.end()) {
|
2004-04-22 13:59:39 +00:00
|
|
|
// Make sure that the last paragraph is
|
|
|
|
// correctly terminated (because TeXOnePar does
|
|
|
|
// not add a \n in this case)
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
} else if (par->params().depth() > pit->params().depth()) {
|
2008-03-06 21:31:27 +00:00
|
|
|
if (par->layout().isParagraph()) {
|
2007-09-29 20:02:32 +00:00
|
|
|
// Thinko!
|
|
|
|
// How to handle this? (Lgb)
|
|
|
|
//&& !suffixIs(os, "\n\n")
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
// There should be at least one '\n' already
|
|
|
|
// but we need there to be two for Standard
|
|
|
|
// paragraphs that are depth-increment'ed to be
|
|
|
|
// output correctly. However, tables can
|
|
|
|
// also be paragraphs so don't adjust them.
|
|
|
|
// ARRae
|
|
|
|
// Thinkee:
|
|
|
|
// Will it ever harm to have one '\n' too
|
|
|
|
// many? i.e. that we sometimes will have
|
|
|
|
// three in a row. (Lgb)
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2010-12-15 21:48:00 +00:00
|
|
|
|
|
|
|
LYXERR(Debug::LATEX, "TeXDeeper... " << &*par);
|
|
|
|
bool const force_plain_layout = text.inset().forcePlainLayout();
|
|
|
|
depth_type const max_depth = par->params().depth();
|
|
|
|
|
|
|
|
// FIXME: move that to a for loop!
|
|
|
|
while (par != paragraphs.end()
|
|
|
|
&& par->params().depth() == max_depth) {
|
|
|
|
// FIXME This test should not be necessary.
|
|
|
|
// We should perhaps issue an error if it is.
|
|
|
|
Layout const & style = force_plain_layout
|
|
|
|
? buf.params().documentClass().plainLayout() : par->layout();
|
|
|
|
if (style.isEnvironment()) {
|
2010-12-15 23:46:02 +00:00
|
|
|
TeXEnvironementData const data = prepareEnvironement(buf,
|
2010-12-15 23:39:38 +00:00
|
|
|
text, par, os, texrow, runparams);
|
2010-12-15 21:48:00 +00:00
|
|
|
// Recursive call to TeXEnvironment!
|
2010-12-15 23:46:02 +00:00
|
|
|
par = TeXEnvironment(buf, text, par, os, texrow, runparams);
|
|
|
|
finishEnvironement(os, texrow, runparams, data);
|
2010-12-15 21:48:00 +00:00
|
|
|
} else {
|
|
|
|
TeXOnePar(buf, text, par, os, texrow, runparams);
|
|
|
|
if (par != text.paragraphs().end())
|
|
|
|
par++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LYXERR(Debug::LATEX, "TeXDeeper...done ");
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2004-05-17 11:28:31 +00:00
|
|
|
} while (par != paragraphs.end()
|
2003-11-05 12:06:20 +00:00
|
|
|
&& par->layout() == pit->layout()
|
|
|
|
&& par->params().depth() == pit->params().depth()
|
|
|
|
&& par->params().leftIndent() == pit->params().leftIndent());
|
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
if (par != paragraphs.end())
|
|
|
|
LYXERR(Debug::LATEX, "TeXEnvironment...done " << &*par);
|
|
|
|
|
2005-01-20 11:44:20 +00:00
|
|
|
return par;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 22:51:36 +00:00
|
|
|
} // namespace anon
|
2007-01-30 13:23:21 +00:00
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2010-06-04 21:50:08 +00:00
|
|
|
int latexArgInsets(Paragraph const & par, odocstream & os,
|
|
|
|
OutputParams const & runparams, unsigned int reqargs,
|
|
|
|
unsigned int optargs)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2010-06-04 21:50:08 +00:00
|
|
|
unsigned int totalargs = reqargs + optargs;
|
2010-06-04 22:44:58 +00:00
|
|
|
list<InsetArgument const *> ilist;
|
2004-11-26 14:52:54 +00:00
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
InsetList::const_iterator it = par.insetList().begin();
|
|
|
|
InsetList::const_iterator end = par.insetList().end();
|
2010-06-04 21:50:08 +00:00
|
|
|
for (; it != end; ++it) {
|
2010-06-04 22:44:58 +00:00
|
|
|
if (it->inset->lyxCode() == ARG_CODE) {
|
2010-06-04 21:50:08 +00:00
|
|
|
if (ilist.size() >= totalargs) {
|
|
|
|
LYXERR0("WARNING: Found extra argument inset.");
|
|
|
|
continue;
|
|
|
|
}
|
2010-06-04 22:44:58 +00:00
|
|
|
InsetArgument const * ins =
|
|
|
|
static_cast<InsetArgument const *>(it->inset);
|
2010-06-04 21:50:08 +00:00
|
|
|
ilist.push_back(ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!reqargs && ilist.size() == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
int lines = 0;
|
|
|
|
bool const have_optional_args = ilist.size() > reqargs;
|
|
|
|
if (have_optional_args) {
|
|
|
|
unsigned int todo = ilist.size() - reqargs;
|
|
|
|
for (unsigned int i = 0; i < todo; ++i) {
|
2010-06-04 22:44:58 +00:00
|
|
|
InsetArgument const * ins = ilist.front();
|
2010-06-04 21:50:08 +00:00
|
|
|
ilist.pop_front();
|
|
|
|
lines += ins->latexArgument(os, runparams, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we should now have no more insets than there are required
|
|
|
|
// arguments.
|
|
|
|
LASSERT(ilist.size() <= reqargs, /* */);
|
|
|
|
if (!reqargs)
|
|
|
|
return lines;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < reqargs; ++i) {
|
|
|
|
if (ilist.empty())
|
|
|
|
// a required argument wasn't given, so we output {}
|
|
|
|
os << "{}";
|
|
|
|
else {
|
2010-06-04 22:44:58 +00:00
|
|
|
InsetArgument const * ins = ilist.front();
|
2010-06-04 21:50:08 +00:00
|
|
|
ilist.pop_front();
|
|
|
|
lines += ins->latexArgument(os, runparams, false);
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-19 16:17:52 +00:00
|
|
|
return lines;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2010-06-04 21:50:08 +00:00
|
|
|
|
2008-11-16 00:12:21 +00:00
|
|
|
// FIXME: this should be anonymous
|
2010-12-15 20:51:25 +00:00
|
|
|
void TeXOnePar(Buffer const & buf,
|
2008-01-25 13:27:08 +00:00
|
|
|
Text const & text,
|
2008-03-21 22:51:36 +00:00
|
|
|
ParagraphList::const_iterator const pit,
|
2007-01-09 19:25:40 +00:00
|
|
|
odocstream & os, TexRow & texrow,
|
2004-11-15 13:39:06 +00:00
|
|
|
OutputParams const & runparams_in,
|
2008-11-16 00:12:21 +00:00
|
|
|
string const & everypar,
|
|
|
|
int start_pos, int end_pos)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::LATEX, "TeXOnePar... " << &*pit << " '"
|
|
|
|
<< everypar << "'");
|
2010-06-15 15:37:39 +00:00
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
BufferParams const & bparams = buf.params();
|
2010-06-15 15:37:39 +00:00
|
|
|
// FIXME This check should not really be needed.
|
|
|
|
// Perhaps we should issue an error if it is.
|
|
|
|
Layout const style = text.inset().forcePlainLayout() ?
|
|
|
|
bparams.documentClass().plainLayout() : pit->layout();
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2010-06-15 15:37:39 +00:00
|
|
|
ParagraphList const & paragraphs = text.paragraphs();
|
2008-10-31 23:32:52 +00:00
|
|
|
ParagraphList::const_iterator const priorpit =
|
|
|
|
pit == paragraphs.begin() ? pit : boost::prior(pit);
|
|
|
|
ParagraphList::const_iterator const nextpit =
|
|
|
|
pit == paragraphs.end() ? pit : boost::next(pit);
|
2008-03-21 22:51:36 +00:00
|
|
|
|
2010-06-15 15:37:39 +00:00
|
|
|
if (style.inpreamble)
|
2010-12-15 20:51:25 +00:00
|
|
|
return;
|
2010-06-15 15:37:39 +00:00
|
|
|
|
2008-09-18 14:51:16 +00:00
|
|
|
OutputParams runparams = runparams_in;
|
|
|
|
runparams.isLastPar = nextpit == paragraphs.end();
|
|
|
|
|
2010-02-09 14:01:21 +00:00
|
|
|
bool const maintext = text.isMainText();
|
|
|
|
// we are at the beginning of an inset and CJK is already open;
|
|
|
|
// we count inheritation levels to get the inset nesting right.
|
|
|
|
if (pit == paragraphs.begin() && !maintext
|
|
|
|
&& (cjk_inherited_ > 0 || open_encoding_ == CJK)) {
|
|
|
|
cjk_inherited_ += 1;
|
|
|
|
open_encoding_ = none;
|
|
|
|
}
|
|
|
|
|
2010-11-06 15:06:19 +00:00
|
|
|
if (text.inset().getLayout().isPassThru()) {
|
2010-12-18 07:37:12 +00:00
|
|
|
int const dist = paragraphs.position(pit);
|
2009-08-09 18:35:39 +00:00
|
|
|
Font const outerfont = text.outerFont(dist);
|
2007-10-30 16:22:56 +00:00
|
|
|
|
2010-11-06 15:06:19 +00:00
|
|
|
// No newline before first paragraph in this lyxtext
|
2007-10-30 16:22:56 +00:00
|
|
|
if (dist > 0) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
2010-11-06 15:06:19 +00:00
|
|
|
if (!text.inset().getLayout().parbreakIsNewline()) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2007-10-30 16:22:56 +00:00
|
|
|
}
|
2007-10-24 07:13:20 +00:00
|
|
|
|
2010-06-15 15:49:24 +00:00
|
|
|
pit->latex(bparams, outerfont, os, texrow,
|
2010-08-08 14:48:15 +00:00
|
|
|
runparams, start_pos, end_pos);
|
2010-12-15 20:51:25 +00:00
|
|
|
return;
|
2007-10-23 18:23:03 +00:00
|
|
|
}
|
|
|
|
|
2010-11-06 15:06:19 +00:00
|
|
|
if (style.pass_thru) {
|
2010-12-18 07:37:12 +00:00
|
|
|
int const dist = paragraphs.position(pit);
|
2010-11-06 15:06:19 +00:00
|
|
|
Font const outerfont = text.outerFont(dist);
|
|
|
|
pit->latex(bparams, outerfont, os, texrow,
|
|
|
|
runparams, start_pos, end_pos);
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
if (!style.parbreak_is_newline) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
} else if (nextpit != paragraphs.end()) {
|
|
|
|
Layout const nextstyle = text.inset().forcePlainLayout() ?
|
|
|
|
bparams.documentClass().plainLayout() : nextpit->layout();
|
|
|
|
if (nextstyle.name() != style.name()) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-15 20:51:25 +00:00
|
|
|
return;
|
2010-11-06 15:06:19 +00:00
|
|
|
}
|
|
|
|
|
2007-07-20 01:28:20 +00:00
|
|
|
// This paragraph's language
|
2007-03-12 17:19:08 +00:00
|
|
|
Language const * const par_language = pit->getParLanguage(bparams);
|
2007-07-20 01:28:20 +00:00
|
|
|
// The document's language
|
2007-03-12 17:19:08 +00:00
|
|
|
Language const * const doc_language = bparams.language;
|
2008-10-13 11:25:37 +00:00
|
|
|
// The language that was in effect when the environment this paragraph is
|
2007-07-20 01:28:20 +00:00
|
|
|
// inside of was opened
|
2008-10-13 11:25:37 +00:00
|
|
|
Language const * const outer_language =
|
2007-07-20 01:28:20 +00:00
|
|
|
(runparams.local_font != 0) ?
|
|
|
|
runparams.local_font->language() : doc_language;
|
2009-07-30 00:58:37 +00:00
|
|
|
|
|
|
|
// The previous language that was in effect is the language of the
|
|
|
|
// previous paragraph, unless the previous paragraph is inside an
|
|
|
|
// environment with nesting depth greater than (or equal to, but with
|
|
|
|
// a different layout) the current one. If there is no previous
|
|
|
|
// paragraph, the previous language is the outer language.
|
2009-07-30 03:21:04 +00:00
|
|
|
bool const use_prev_env_language = prev_env_language_ != 0
|
|
|
|
&& priorpit->layout().isEnvironment()
|
2009-07-30 00:58:37 +00:00
|
|
|
&& (priorpit->getDepth() > pit->getDepth()
|
|
|
|
|| (priorpit->getDepth() == pit->getDepth()
|
|
|
|
&& priorpit->layout() != pit->layout()));
|
2009-07-28 16:15:34 +00:00
|
|
|
Language const * const prev_language =
|
2009-07-30 00:58:37 +00:00
|
|
|
(pit != paragraphs.begin())
|
|
|
|
? (use_prev_env_language ? prev_env_language_
|
|
|
|
: priorpit->getParLanguage(bparams))
|
|
|
|
: outer_language;
|
2009-07-28 16:15:34 +00:00
|
|
|
|
2010-11-22 12:10:16 +00:00
|
|
|
string par_lang = par_language->babel();
|
|
|
|
string prev_lang = prev_language->babel();
|
|
|
|
string doc_lang = doc_language->babel();
|
|
|
|
string outer_lang = outer_language->babel();
|
|
|
|
string lang_begin_command = lyxrc.language_command_begin;
|
|
|
|
string lang_end_command = lyxrc.language_command_end;
|
|
|
|
|
|
|
|
if (runparams.use_polyglossia) {
|
|
|
|
par_lang = getPolyglossiaEnvName(par_language);
|
|
|
|
prev_lang = getPolyglossiaEnvName(prev_language);
|
|
|
|
doc_lang = getPolyglossiaEnvName(doc_language);
|
|
|
|
outer_lang = getPolyglossiaEnvName(outer_language);
|
|
|
|
lang_begin_command = "\\begin{$$lang}";
|
|
|
|
lang_end_command = "\\end{$$lang}";
|
|
|
|
}
|
|
|
|
if (par_lang != prev_lang
|
2003-11-05 12:06:20 +00:00
|
|
|
// check if we already put language command in TeXEnvironment()
|
2008-03-06 21:31:27 +00:00
|
|
|
&& !(style.isEnvironment()
|
2004-05-17 11:28:31 +00:00
|
|
|
&& (pit == paragraphs.begin() ||
|
2008-03-21 22:51:36 +00:00
|
|
|
(priorpit->layout() != pit->layout() &&
|
|
|
|
priorpit->getDepth() <= pit->getDepth())
|
|
|
|
|| priorpit->getDepth() < pit->getDepth())))
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2010-11-22 12:10:16 +00:00
|
|
|
if (!lang_end_command.empty() &&
|
|
|
|
prev_lang != outer_lang &&
|
|
|
|
!prev_lang.empty())
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2010-11-22 12:10:16 +00:00
|
|
|
os << from_ascii(subst(lang_end_command,
|
2006-10-19 16:51:30 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
prev_lang))
|
2007-11-23 14:59:35 +00:00
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
|
|
|
<< "%\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
|
2008-10-13 11:25:37 +00:00
|
|
|
// We need to open a new language if we couldn't close the previous
|
2007-07-20 01:28:20 +00:00
|
|
|
// one (because there's no language_command_end); and even if we closed
|
|
|
|
// the previous one, if the current language is different than the
|
|
|
|
// outer_language (which is currently in effect once the previous one
|
|
|
|
// is closed).
|
2010-11-22 12:10:16 +00:00
|
|
|
if ((lang_end_command.empty() ||
|
|
|
|
par_lang != outer_lang) &&
|
|
|
|
!par_lang.empty()) {
|
2007-07-20 01:28:20 +00:00
|
|
|
// If we're inside an inset, and that inset is within an \L or \R
|
|
|
|
// (or equivalents), then within the inset, too, any opposite
|
|
|
|
// language paragraph should appear within an \L or \R (in addition
|
|
|
|
// to, outside of, the normal language switch commands).
|
|
|
|
// This behavior is not correct for ArabTeX, though.
|
2010-11-22 12:10:16 +00:00
|
|
|
if (!runparams.use_polyglossia &&
|
|
|
|
// not for ArabTeX
|
|
|
|
(par_language->lang() != "arabic_arabtex" &&
|
|
|
|
outer_language->lang() != "arabic_arabtex") &&
|
|
|
|
// are we in an inset?
|
|
|
|
runparams.local_font != 0 &&
|
|
|
|
// is the inset within an \L or \R?
|
|
|
|
//
|
|
|
|
// FIXME: currently, we don't check this; this means that
|
|
|
|
// we'll have unnnecessary \L and \R commands, but that
|
|
|
|
// doesn't seem to hurt (though latex will complain)
|
|
|
|
//
|
|
|
|
// is this paragraph in the opposite direction?
|
|
|
|
runparams.local_font->isRightToLeft() !=
|
|
|
|
par_language->rightToLeft()
|
|
|
|
) {
|
2007-07-20 01:28:20 +00:00
|
|
|
// FIXME: I don't have a working copy of the Arabi package, so
|
|
|
|
// I'm not sure if the farsi and arabic_arabi stuff is correct
|
|
|
|
// or not...
|
|
|
|
if (par_language->lang() == "farsi")
|
|
|
|
os << "\\textFR{";
|
|
|
|
else if (outer_language->lang() == "farsi")
|
|
|
|
os << "\\textLR{";
|
|
|
|
else if (par_language->lang() == "arabic_arabi")
|
|
|
|
os << "\\textAR{";
|
|
|
|
else if (outer_language->lang() == "arabic_arabi")
|
|
|
|
os << "\\textLR{";
|
|
|
|
// remaining RTL languages currently is hebrew
|
|
|
|
else if (par_language->rightToLeft())
|
|
|
|
os << "\\R{";
|
|
|
|
else
|
|
|
|
os << "\\L{";
|
|
|
|
}
|
2007-12-08 11:21:00 +00:00
|
|
|
// With CJK, the CJK tag has to be closed first (see below)
|
|
|
|
if (runparams.encoding->package() != Encoding::CJK) {
|
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_begin_command,
|
2007-12-08 11:21:00 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
par_lang));
|
|
|
|
if (runparams.use_polyglossia
|
|
|
|
&& !par_language->polyglossiaOpts().empty())
|
|
|
|
os << "["
|
|
|
|
<< from_ascii(par_language->polyglossiaOpts())
|
|
|
|
<< "]";
|
2007-12-08 11:21:00 +00:00
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
2010-11-22 12:10:16 +00:00
|
|
|
os << "%\n";
|
2007-12-08 11:21:00 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-05 19:19:41 +00:00
|
|
|
// Switch file encoding if necessary; no need to do this for "default"
|
|
|
|
// encoding, since this only affects the position of the outputted
|
|
|
|
// \inputencoding command; the encoding switch will occur when necessary
|
2007-05-06 20:26:02 +00:00
|
|
|
if (bparams.inputenc == "auto" &&
|
2007-12-08 11:21:00 +00:00
|
|
|
runparams.encoding->package() != Encoding::none) {
|
2007-04-16 18:06:01 +00:00
|
|
|
// Look ahead for future encoding changes.
|
|
|
|
// We try to output them at the beginning of the paragraph,
|
|
|
|
// since the \inputencoding command is not allowed e.g. in
|
2010-03-27 17:29:56 +00:00
|
|
|
// sections. For this reason we only set runparams.moving_arg
|
|
|
|
// after checking for the encoding change, otherwise the
|
|
|
|
// change would be always avoided by switchEncoding().
|
2007-04-16 18:06:01 +00:00
|
|
|
for (pos_type i = 0; i < pit->size(); ++i) {
|
|
|
|
char_type const c = pit->getChar(i);
|
2008-01-25 13:27:08 +00:00
|
|
|
Encoding const * const encoding =
|
|
|
|
pit->getFontSettings(bparams, i).language()->encoding();
|
|
|
|
if (encoding->package() != Encoding::CJK &&
|
|
|
|
runparams.encoding->package() == Encoding::inputenc &&
|
|
|
|
c < 0x80)
|
2007-04-16 18:06:01 +00:00
|
|
|
continue;
|
|
|
|
if (pit->isInset(i))
|
|
|
|
break;
|
|
|
|
// All characters before c are in the ASCII range, and
|
|
|
|
// c is non-ASCII (but no inset), so change the
|
|
|
|
// encoding to that required by the language of c.
|
2008-01-25 13:27:08 +00:00
|
|
|
// With CJK, only add switch if we have CJK content at the beginning
|
2007-12-08 11:21:00 +00:00
|
|
|
// of the paragraph
|
|
|
|
if (encoding->package() != Encoding::CJK || i == 0) {
|
|
|
|
pair<bool, int> enc_switch = switchEncoding(os, bparams, runparams,
|
2007-12-17 10:53:38 +00:00
|
|
|
*encoding);
|
2007-12-08 11:21:00 +00:00
|
|
|
// the following is necessary after a CJK environment in a multilingual
|
|
|
|
// context (nesting issue).
|
|
|
|
if (par_language->encoding()->package() == Encoding::CJK &&
|
2008-06-03 07:51:14 +00:00
|
|
|
open_encoding_ != CJK && cjk_inherited_ == 0) {
|
2007-12-08 11:21:00 +00:00
|
|
|
os << "\\begin{CJK}{" << from_ascii(par_language->encoding()->latexName())
|
2010-11-26 18:32:29 +00:00
|
|
|
<< "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ = CJK;
|
2007-07-05 19:19:41 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
2007-12-08 11:21:00 +00:00
|
|
|
if (encoding->package() != Encoding::none && enc_switch.first) {
|
|
|
|
if (enc_switch.second > 0) {
|
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
|
|
|
os << "%\n";
|
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
// With CJK, the CJK tag had to be closed first (see above)
|
|
|
|
if (runparams.encoding->package() == Encoding::CJK) {
|
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_begin_command,
|
2007-12-08 11:21:00 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
par_lang))
|
2007-12-08 11:21:00 +00:00
|
|
|
// the '%' is necessary to prevent unwanted whitespace
|
|
|
|
<< "%\n";
|
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
runparams.encoding = encoding;
|
|
|
|
}
|
|
|
|
break;
|
2007-04-16 18:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-27 17:29:56 +00:00
|
|
|
runparams.moving_arg |= style.needprotect;
|
2009-08-03 18:31:20 +00:00
|
|
|
Encoding const * const prev_encoding = runparams.encoding;
|
|
|
|
|
2008-02-28 01:42:02 +00:00
|
|
|
bool const useSetSpace = bparams.documentClass().provides("SetSpace");
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
if (pit->allowParagraphCustomization()) {
|
2004-09-28 13:29:19 +00:00
|
|
|
if (pit->params().startOfAppendix()) {
|
|
|
|
os << "\\appendix\n";
|
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pit->params().spacing().isDefault()
|
|
|
|
&& (pit == paragraphs.begin()
|
2008-03-21 22:51:36 +00:00
|
|
|
|| !priorpit->hasSameLayout(*pit)))
|
2004-09-28 13:29:19 +00:00
|
|
|
{
|
2008-01-14 14:53:29 +00:00
|
|
|
os << from_ascii(pit->params().spacing().writeEnvirBegin(useSetSpace))
|
2006-10-19 16:51:30 +00:00
|
|
|
<< '\n';
|
2004-09-28 13:29:19 +00:00
|
|
|
texrow.newline();
|
|
|
|
}
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.isCommand()) {
|
2004-09-28 13:29:19 +00:00
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2004-10-05 10:11:42 +00:00
|
|
|
}
|
2004-09-28 13:29:19 +00:00
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
switch (style.latextype) {
|
2003-11-05 12:06:20 +00:00
|
|
|
case LATEX_COMMAND:
|
2008-03-06 21:31:27 +00:00
|
|
|
os << '\\' << from_ascii(style.latexname());
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
// Separate handling of optional argument inset.
|
2010-06-04 21:50:08 +00:00
|
|
|
if (style.optargs != 0 || style.reqargs != 0) {
|
|
|
|
int ret = latexArgInsets(*pit, os, runparams, style.reqargs, style.optargs);
|
2004-11-19 16:17:52 +00:00
|
|
|
while (ret > 0) {
|
|
|
|
texrow.newline();
|
|
|
|
--ret;
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
else
|
2008-03-06 21:31:27 +00:00
|
|
|
os << from_ascii(style.latexparam());
|
2003-11-05 12:06:20 +00:00
|
|
|
break;
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
case LATEX_LIST_ENVIRONMENT:
|
|
|
|
os << "\\item ";
|
|
|
|
break;
|
|
|
|
case LATEX_BIB_ENVIRONMENT:
|
|
|
|
// ignore this, the inset will write itself
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-12-18 07:37:12 +00:00
|
|
|
Font const outerfont = text.outerFont(paragraphs.position(pit));
|
2007-03-18 10:59:16 +00:00
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
// FIXME UNICODE
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_utf8(everypar);
|
2010-06-15 15:49:24 +00:00
|
|
|
pit->latex(bparams, outerfont, os, texrow,
|
|
|
|
runparams, start_pos, end_pos);
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
// Make sure that \\par is done with the font of the last
|
|
|
|
// character if this has another size as the default.
|
|
|
|
// This is necessary because LaTeX (and LyX on the screen)
|
|
|
|
// calculates the space between the baselines according
|
|
|
|
// to this font. (Matthias)
|
|
|
|
//
|
|
|
|
// Is this really needed ? (Dekel)
|
|
|
|
// We do not need to use to change the font for the last paragraph
|
|
|
|
// or for a command.
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
Font const font = pit->empty()
|
2003-11-05 12:06:20 +00:00
|
|
|
? pit->getLayoutFont(bparams, outerfont)
|
2008-02-27 20:43:16 +00:00
|
|
|
: pit->getFont(bparams, pit->size() - 1, outerfont);
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2008-10-31 15:33:48 +00:00
|
|
|
bool const is_command = style.isCommand();
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.resfont.size() != font.fontInfo().size()
|
2008-03-21 22:51:36 +00:00
|
|
|
&& nextpit != paragraphs.end()
|
2003-11-05 12:06:20 +00:00
|
|
|
&& !is_command) {
|
2010-06-15 15:49:24 +00:00
|
|
|
os << '{';
|
2006-10-21 00:16:43 +00:00
|
|
|
os << "\\" << from_ascii(font.latexSize()) << " \\par}";
|
2009-08-03 18:31:20 +00:00
|
|
|
} else if (is_command) {
|
2003-11-05 12:06:20 +00:00
|
|
|
os << '}';
|
2009-09-16 20:50:40 +00:00
|
|
|
if (runparams.encoding != prev_encoding) {
|
|
|
|
runparams.encoding = prev_encoding;
|
2010-11-23 12:23:36 +00:00
|
|
|
if (!runparams.isFullUnicode())
|
2009-09-16 20:50:40 +00:00
|
|
|
os << setEncoding(prev_encoding->iconvName());
|
|
|
|
}
|
2009-08-03 18:31:20 +00:00
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2007-01-17 22:01:08 +00:00
|
|
|
bool pending_newline = false;
|
2008-03-06 21:31:27 +00:00
|
|
|
switch (style.latextype) {
|
2003-11-05 12:06:20 +00:00
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
case LATEX_LIST_ENVIRONMENT:
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit != paragraphs.end()
|
|
|
|
&& (pit->params().depth() < nextpit->params().depth()))
|
2007-01-17 22:01:08 +00:00
|
|
|
pending_newline = true;
|
2003-11-05 12:06:20 +00:00
|
|
|
break;
|
|
|
|
case LATEX_ENVIRONMENT: {
|
|
|
|
// if its the last paragraph of the current environment
|
|
|
|
// skip it otherwise fall through
|
2008-10-31 23:32:52 +00:00
|
|
|
if (nextpit != paragraphs.end() &&
|
|
|
|
(nextpit->layout() != pit->layout()
|
|
|
|
|| nextpit->params().depth() != pit->params().depth()))
|
2003-11-05 12:06:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-11 17:16:05 +00:00
|
|
|
// fall through possible
|
2003-11-05 12:06:20 +00:00
|
|
|
default:
|
|
|
|
// we don't need it for the last paragraph!!!
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit != paragraphs.end())
|
2007-01-17 22:01:08 +00:00
|
|
|
pending_newline = true;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
if (pit->allowParagraphCustomization()) {
|
2004-09-28 13:29:19 +00:00
|
|
|
if (!pit->params().spacing().isDefault()
|
2008-03-21 22:51:36 +00:00
|
|
|
&& (nextpit == paragraphs.end() || !nextpit->hasSameLayout(*pit)))
|
2004-09-28 13:29:19 +00:00
|
|
|
{
|
2007-01-17 22:01:08 +00:00
|
|
|
if (pending_newline) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2008-01-14 14:53:29 +00:00
|
|
|
os << from_ascii(pit->params().spacing().writeEnvirEnd(useSetSpace));
|
2007-01-17 22:01:08 +00:00
|
|
|
pending_newline = true;
|
2004-09-28 13:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-20 01:28:20 +00:00
|
|
|
// Closing the language is needed for the last paragraph; it is also
|
|
|
|
// needed if we're within an \L or \R that we may have opened above (not
|
|
|
|
// necessarily in this paragraph) and are about to close.
|
2008-10-13 11:25:37 +00:00
|
|
|
bool closing_rtl_ltr_environment =
|
2010-11-22 12:10:16 +00:00
|
|
|
!runparams.use_polyglossia &&
|
2007-07-20 01:28:20 +00:00
|
|
|
// not for ArabTeX
|
|
|
|
(par_language->lang() != "arabic_arabtex" &&
|
|
|
|
outer_language->lang() != "arabic_arabtex") &&
|
|
|
|
// have we opened and \L or \R environment?
|
|
|
|
runparams.local_font != 0 &&
|
|
|
|
runparams.local_font->isRightToLeft() != par_language->rightToLeft() &&
|
|
|
|
// are we about to close the language?
|
2008-03-21 22:51:36 +00:00
|
|
|
((nextpit != paragraphs.end() &&
|
2008-10-13 11:25:37 +00:00
|
|
|
par_language->babel() !=
|
2008-10-31 16:41:52 +00:00
|
|
|
(nextpit->getParLanguage(bparams))->babel()) ||
|
|
|
|
(nextpit == paragraphs.end() &&
|
|
|
|
par_language->babel() != outer_language->babel()));
|
2007-07-20 01:28:20 +00:00
|
|
|
|
2008-03-21 22:51:36 +00:00
|
|
|
if (closing_rtl_ltr_environment || (nextpit == paragraphs.end()
|
2007-07-20 01:28:20 +00:00
|
|
|
&& par_language->babel() != outer_language->babel())) {
|
2004-04-22 13:59:39 +00:00
|
|
|
// Since \selectlanguage write the language to the aux file,
|
|
|
|
// we need to reset the language at the end of footnote or
|
|
|
|
// float.
|
|
|
|
|
2007-01-17 22:01:08 +00:00
|
|
|
if (pending_newline) {
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2007-12-08 11:21:00 +00:00
|
|
|
// when the paragraph uses CJK, the language has to be closed earlier
|
|
|
|
if (font.language()->encoding()->package() != Encoding::CJK) {
|
2010-11-22 12:10:16 +00:00
|
|
|
if (lang_end_command.empty()) {
|
2009-10-18 21:48:13 +00:00
|
|
|
// If this is a child, we should restore the
|
|
|
|
// master language after the last paragraph.
|
|
|
|
Language const * const current_language =
|
|
|
|
(nextpit == paragraphs.end()
|
|
|
|
&& runparams.master_language)
|
|
|
|
? runparams.master_language
|
2010-01-06 17:36:22 +00:00
|
|
|
: outer_language;
|
2010-11-22 12:10:16 +00:00
|
|
|
string const current_lang = runparams.use_polyglossia ?
|
|
|
|
getPolyglossiaEnvName(current_language)
|
|
|
|
: current_language->babel();
|
|
|
|
if (!current_lang.empty()) {
|
2007-12-08 11:21:00 +00:00
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_begin_command,
|
2007-12-08 11:21:00 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
current_lang));
|
2007-12-08 11:21:00 +00:00
|
|
|
pending_newline = true;
|
|
|
|
}
|
2010-11-22 12:10:16 +00:00
|
|
|
} else if (!par_lang.empty()) {
|
2007-05-05 19:18:34 +00:00
|
|
|
os << from_ascii(subst(
|
2010-11-22 12:10:16 +00:00
|
|
|
lang_end_command,
|
2007-05-05 19:18:34 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
par_lang));
|
2007-05-05 19:18:34 +00:00
|
|
|
pending_newline = true;
|
|
|
|
}
|
2007-05-05 20:27:43 +00:00
|
|
|
}
|
2004-04-22 13:59:39 +00:00
|
|
|
}
|
2007-07-20 01:28:20 +00:00
|
|
|
if (closing_rtl_ltr_environment)
|
|
|
|
os << "}";
|
2004-04-22 13:59:39 +00:00
|
|
|
|
2007-10-23 18:23:03 +00:00
|
|
|
if (pending_newline) {
|
2007-01-09 19:25:40 +00:00
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2007-07-20 01:28:20 +00:00
|
|
|
|
2007-12-08 11:21:00 +00:00
|
|
|
// if this is a CJK-paragraph and the next isn't, close CJK
|
|
|
|
// also if the next paragraph is a multilingual environment (because of nesting)
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit != paragraphs.end() && open_encoding_ == CJK &&
|
|
|
|
(nextpit->getParLanguage(bparams)->encoding()->package() != Encoding::CJK ||
|
2008-12-22 18:18:47 +00:00
|
|
|
(nextpit->layout().isEnvironment() && nextpit->isMultiLingual(bparams)))
|
2008-11-22 16:40:39 +00:00
|
|
|
// inbetween environments, CJK has to be closed later (nesting!)
|
|
|
|
&& (!style.isEnvironment() || !nextpit->layout().isEnvironment())) {
|
2007-12-08 11:21:00 +00:00
|
|
|
os << "\\end{CJK}\n";
|
|
|
|
open_encoding_ = none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is the last paragraph, close the CJK environment
|
|
|
|
// if necessary. If it's an environment, we'll have to \end that first.
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit == paragraphs.end() && !style.isEnvironment()) {
|
2007-12-08 11:21:00 +00:00
|
|
|
switch (open_encoding_) {
|
|
|
|
case CJK: {
|
2008-10-21 17:03:49 +00:00
|
|
|
// do nothing at the end of child documents
|
|
|
|
if (maintext && buf.masterBuffer() != &buf)
|
|
|
|
break;
|
2007-12-08 11:21:00 +00:00
|
|
|
// end of main text
|
2008-01-25 13:27:08 +00:00
|
|
|
if (maintext) {
|
2007-12-08 11:21:00 +00:00
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
os << "\\end{CJK}\n";
|
|
|
|
texrow.newline();
|
|
|
|
// end of an inset
|
|
|
|
} else
|
|
|
|
os << "\\end{CJK}";
|
|
|
|
open_encoding_ = none;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case inputenc: {
|
|
|
|
os << "\\egroup";
|
|
|
|
open_encoding_ = none;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case none:
|
|
|
|
default:
|
|
|
|
// do nothing
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-20 01:28:20 +00:00
|
|
|
// If this is the last paragraph, and a local_font was set upon entering
|
2008-03-26 22:38:41 +00:00
|
|
|
// the inset, and we're using "auto" or "default" encoding, the encoding
|
|
|
|
// should be set back to that local_font's encoding.
|
2010-11-23 12:23:36 +00:00
|
|
|
// However, do not change the encoding when a fully unicode aware backend
|
|
|
|
// such as XeTeX is used.
|
2008-03-26 22:38:41 +00:00
|
|
|
if (nextpit == paragraphs.end() && runparams_in.local_font != 0
|
2008-07-09 07:21:02 +00:00
|
|
|
&& runparams_in.encoding != runparams_in.local_font->language()->encoding()
|
2009-04-06 06:58:30 +00:00
|
|
|
&& (bparams.inputenc == "auto" || bparams.inputenc == "default")
|
2010-11-23 12:23:36 +00:00
|
|
|
&& (!runparams.isFullUnicode())) {
|
2007-07-20 01:28:20 +00:00
|
|
|
runparams_in.encoding = runparams_in.local_font->language()->encoding();
|
2008-03-26 22:38:41 +00:00
|
|
|
os << setEncoding(runparams_in.encoding->iconvName());
|
2007-07-20 01:28:20 +00:00
|
|
|
}
|
|
|
|
// Otherwise, the current encoding should be set for the next paragraph.
|
|
|
|
else
|
|
|
|
runparams_in.encoding = runparams.encoding;
|
|
|
|
|
2007-01-09 19:25:40 +00:00
|
|
|
|
2008-10-31 15:37:34 +00:00
|
|
|
// we don't need a newline for the last paragraph!!!
|
|
|
|
// Note from JMarc: we will re-add a \n explicitly in
|
2004-04-22 13:59:39 +00:00
|
|
|
// TeXEnvironment, because it is needed in this case
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit != paragraphs.end()) {
|
2008-07-02 08:34:55 +00:00
|
|
|
Layout const & next_layout = nextpit->layout();
|
2008-11-03 13:43:33 +00:00
|
|
|
if (style == next_layout
|
|
|
|
// no blank lines before environments!
|
|
|
|
|| !next_layout.isEnvironment()
|
2008-11-03 13:07:30 +00:00
|
|
|
// unless there's a depth change
|
2008-11-03 13:43:33 +00:00
|
|
|
// FIXME What we really want to do here is put every \begin and \end
|
|
|
|
// tag on a new line (which was not the case with nested environments).
|
|
|
|
// But in the present state of play, we don't have access to the
|
|
|
|
// information whether the current TeX row is empty or not.
|
|
|
|
// For some ideas about how to fix this, see this thread:
|
|
|
|
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg145787.html
|
2008-11-03 13:07:30 +00:00
|
|
|
|| nextpit->params().depth() != pit->params().depth()) {
|
2008-07-02 08:34:55 +00:00
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 22:51:36 +00:00
|
|
|
if (nextpit != paragraphs.end())
|
|
|
|
LYXERR(Debug::LATEX, "TeXOnePar...done " << &*nextpit);
|
2006-10-26 15:01:45 +00:00
|
|
|
|
2010-12-15 20:51:25 +00:00
|
|
|
return;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2004-02-11 14:45:44 +00:00
|
|
|
|
|
|
|
// LaTeX all paragraphs
|
2003-11-05 12:06:20 +00:00
|
|
|
void latexParagraphs(Buffer const & buf,
|
2008-01-25 13:27:08 +00:00
|
|
|
Text const & text,
|
2006-10-19 16:51:30 +00:00
|
|
|
odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
TexRow & texrow,
|
|
|
|
OutputParams const & runparams,
|
|
|
|
string const & everypar)
|
|
|
|
{
|
2008-01-25 13:27:08 +00:00
|
|
|
BufferParams const & bparams = buf.params();
|
view-source feature, from Bo Peng <ben.bob@gmail.com>
* src/buffer.h buffer.C - getSourceCode()
* src/lyxfunc.C - open view-source dialog
* src/text3.C - change LFUN_MOUSE_RELEASE
* src/output_linuxdoc.C, src/output_docbook.C, src/output_latex.C
- intercept output
* src/outputparams.h, outputparams.C - add par_begin, par_end, dryrun
* src/insets/insetgraphics.C - add dryrun mode of file conversion
* lib/ui/stdmenus.ui - add view-source menu item under view
* Add view-source dialog, add
src/frontends/qt2/QViewSourceDialog.h, QViewSource.C, QViewSource.h, QViewSourceDialog.C
src/frontends/qt2/ui/QViewSourceDialogBase.ui
src/frontends/controllers/ControlViewSource.h ControlViewSource.C
modify
src/frontends/qt2/Makefile.dialogs, Makefile.am, Dialogs.C,
src/frontends/controllers/Makefile.am, po.POTFILES.in
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13610 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-09 02:48:54 +00:00
|
|
|
|
2009-08-09 15:29:34 +00:00
|
|
|
bool const maintext = text.isMainText();
|
2008-10-21 17:03:49 +00:00
|
|
|
bool const is_child = buf.masterBuffer() != &buf;
|
2008-01-25 13:27:08 +00:00
|
|
|
|
|
|
|
// Open a CJK environment at the beginning of the main buffer
|
|
|
|
// if the document's language is a CJK language
|
2008-10-21 17:03:49 +00:00
|
|
|
// (but not in child documents)
|
|
|
|
if (maintext && !is_child
|
|
|
|
&& bparams.encoding().package() == Encoding::CJK) {
|
2008-01-25 13:27:08 +00:00
|
|
|
os << "\\begin{CJK}{" << from_ascii(bparams.encoding().latexName())
|
2010-11-26 18:32:29 +00:00
|
|
|
<< "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
|
2008-01-25 13:27:08 +00:00
|
|
|
texrow.newline();
|
|
|
|
open_encoding_ = CJK;
|
|
|
|
}
|
2010-01-29 14:44:21 +00:00
|
|
|
// if "auto begin" is switched off, explicitly switch the
|
2008-01-25 13:27:08 +00:00
|
|
|
// language on at start
|
2010-11-22 12:10:16 +00:00
|
|
|
string const mainlang = runparams.use_polyglossia ?
|
|
|
|
getPolyglossiaEnvName(bparams.language)
|
|
|
|
: bparams.language->babel();
|
|
|
|
string const lang_begin_command = runparams.use_polyglossia ?
|
|
|
|
"\\begin{$$lang}" : lyxrc.language_command_begin;
|
|
|
|
|
2008-01-25 13:27:08 +00:00
|
|
|
if (maintext && !lyxrc.language_auto_begin &&
|
2010-11-22 12:10:16 +00:00
|
|
|
!mainlang.empty()) {
|
2008-01-25 13:27:08 +00:00
|
|
|
// FIXME UNICODE
|
2010-11-22 12:10:16 +00:00
|
|
|
os << from_utf8(subst(lang_begin_command,
|
2008-01-25 13:27:08 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
mainlang));
|
|
|
|
if (runparams.use_polyglossia
|
|
|
|
&& !bparams.language->polyglossiaOpts().empty())
|
|
|
|
os << "["
|
|
|
|
<< from_ascii(bparams.language->polyglossiaOpts())
|
|
|
|
<< "]";
|
|
|
|
os << '\n';
|
|
|
|
texrow.newline();
|
2008-01-25 13:27:08 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 08:31:34 +00:00
|
|
|
ParagraphList const & paragraphs = text.paragraphs();
|
2010-12-18 08:23:14 +00:00
|
|
|
LASSERT(runparams.par_begin <= runparams.par_end, /**/);
|
|
|
|
// if only part of the paragraphs will be outputed
|
|
|
|
bool const partial_export = (runparams.par_begin != runparams.par_end);
|
|
|
|
pit_type const par_begin = partial_export ? runparams.par_begin : 0;
|
|
|
|
pit_type const par_end = partial_export ? runparams.par_end : paragraphs.size();
|
|
|
|
|
|
|
|
if (partial_export) {
|
|
|
|
// runparams will be passed to nested paragraphs, so
|
|
|
|
// we have to reset the range parameters.
|
|
|
|
const_cast<OutputParams&>(runparams).par_begin = 0;
|
|
|
|
const_cast<OutputParams&>(runparams).par_end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pit_type pit = par_begin;
|
|
|
|
// lastpit is for the language check after the loop.
|
|
|
|
pit_type lastpit;
|
2010-12-18 08:31:34 +00:00
|
|
|
// variables used in the loop:
|
|
|
|
bool was_title = false;
|
|
|
|
bool already_title = false;
|
|
|
|
DocumentClass const & tclass = bparams.documentClass();
|
|
|
|
|
2010-12-18 08:23:14 +00:00
|
|
|
for (; pit < par_end; ++pit) {
|
|
|
|
lastpit = pit;
|
2010-12-18 08:31:34 +00:00
|
|
|
ParagraphList::const_iterator par = paragraphs.constIterator(pit);
|
2010-12-18 08:23:14 +00:00
|
|
|
|
2008-10-31 15:33:48 +00:00
|
|
|
// FIXME This check should not be needed. We should
|
|
|
|
// perhaps issue an error if it is.
|
2009-08-09 16:19:43 +00:00
|
|
|
Layout const & layout = text.inset().forcePlainLayout() ?
|
2009-02-11 17:16:05 +00:00
|
|
|
tclass.plainLayout() : par->layout();
|
2008-04-22 18:33:07 +00:00
|
|
|
|
|
|
|
if (layout.intitle) {
|
|
|
|
if (already_title) {
|
|
|
|
lyxerr << "Error in latexParagraphs: You"
|
|
|
|
" should not mix title layouts"
|
|
|
|
" with normal ones." << endl;
|
|
|
|
} else if (!was_title) {
|
|
|
|
was_title = true;
|
2003-11-05 12:06:20 +00:00
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
2008-04-22 18:33:07 +00:00
|
|
|
os << "\\begin{"
|
|
|
|
<< from_ascii(tclass.titlename())
|
|
|
|
<< "}\n";
|
|
|
|
texrow.newline();
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-22 18:33:07 +00:00
|
|
|
} else if (was_title && !already_title) {
|
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
|
|
|
os << "\\end{" << from_ascii(tclass.titlename())
|
|
|
|
<< "}\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
os << "\\" << from_ascii(tclass.titlename())
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
texrow.newline();
|
|
|
|
already_title = true;
|
|
|
|
was_title = false;
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2010-12-18 08:23:14 +00:00
|
|
|
if (!layout.isEnvironment() && par->params().leftIndent().zero()) {
|
|
|
|
// Standard top level paragraph.
|
2010-12-15 20:51:25 +00:00
|
|
|
TeXOnePar(buf, text, par, os, texrow, runparams, everypar);
|
2010-12-18 08:23:14 +00:00
|
|
|
continue;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2010-12-18 08:23:14 +00:00
|
|
|
|
|
|
|
TeXEnvironementData const data = prepareEnvironement(buf, text, par,
|
|
|
|
os, texrow, runparams);
|
|
|
|
par = TeXEnvironment(buf, text, par, os, texrow, runparams);
|
|
|
|
finishEnvironement(os, texrow, runparams, data);
|
|
|
|
pit = paragraphs.position(par);
|
|
|
|
//FIXME: TeXEnvironment() advances one par too much.
|
|
|
|
pit--;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2008-04-22 18:33:07 +00:00
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
// It might be that we only have a title in this document
|
|
|
|
if (was_title && !already_title) {
|
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
2006-10-21 00:16:43 +00:00
|
|
|
os << "\\end{" << from_ascii(tclass.titlename())
|
2003-11-05 12:06:20 +00:00
|
|
|
<< "}\n";
|
|
|
|
}
|
|
|
|
else {
|
2006-10-21 00:16:43 +00:00
|
|
|
os << "\\" << from_ascii(tclass.titlename())
|
2003-11-05 12:06:20 +00:00
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2008-04-22 18:33:07 +00:00
|
|
|
|
2010-01-29 14:44:21 +00:00
|
|
|
// if "auto end" is switched off, explicitly close the language at the end
|
2008-01-25 13:27:08 +00:00
|
|
|
// but only if the last par is in a babel language
|
2010-11-22 12:10:16 +00:00
|
|
|
string const lang_end_command = runparams.use_polyglossia ?
|
|
|
|
"\\end{$$lang}" : lyxrc.language_command_end;
|
|
|
|
if (maintext && !lyxrc.language_auto_end && !mainlang.empty() &&
|
2010-12-18 08:23:14 +00:00
|
|
|
paragraphs.at(lastpit).getParLanguage(bparams)->encoding()->package() != Encoding::CJK) {
|
2010-11-22 12:10:16 +00:00
|
|
|
os << from_utf8(subst(lang_end_command,
|
2008-01-25 13:27:08 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
mainlang))
|
2008-01-25 13:27:08 +00:00
|
|
|
<< '\n';
|
|
|
|
texrow.newline();
|
|
|
|
}
|
2008-04-22 18:33:07 +00:00
|
|
|
|
2007-12-08 11:21:00 +00:00
|
|
|
// If the last paragraph is an environment, we'll have to close
|
|
|
|
// CJK at the very end to do proper nesting.
|
2008-10-21 17:03:49 +00:00
|
|
|
if (maintext && !is_child && open_encoding_ == CJK) {
|
2007-12-08 11:21:00 +00:00
|
|
|
os << "\\end{CJK}\n";
|
|
|
|
texrow.newline();
|
|
|
|
open_encoding_ = none;
|
|
|
|
}
|
2008-04-22 18:33:07 +00:00
|
|
|
|
2007-12-08 11:21:00 +00:00
|
|
|
// reset inherited encoding
|
2008-06-03 07:51:14 +00:00
|
|
|
if (cjk_inherited_ > 0) {
|
|
|
|
cjk_inherited_ -= 1;
|
|
|
|
if (cjk_inherited_ == 0)
|
|
|
|
open_encoding_ = CJK;
|
2007-12-08 11:21:00 +00:00
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2007-07-05 19:19:41 +00:00
|
|
|
pair<bool, int> switchEncoding(odocstream & os, BufferParams const & bparams,
|
2008-07-20 17:14:10 +00:00
|
|
|
OutputParams const & runparams, Encoding const & newEnc,
|
|
|
|
bool force)
|
2007-01-09 19:25:40 +00:00
|
|
|
{
|
2008-10-14 13:06:47 +00:00
|
|
|
Encoding const & oldEnc = *runparams.encoding;
|
2007-12-08 11:21:00 +00:00
|
|
|
bool moving_arg = runparams.moving_arg;
|
2008-07-20 17:14:10 +00:00
|
|
|
if (!force && ((bparams.inputenc != "auto" && bparams.inputenc != "default")
|
|
|
|
|| moving_arg))
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(false, 0);
|
2007-05-07 17:10:10 +00:00
|
|
|
|
|
|
|
// Do nothing if the encoding is unchanged.
|
|
|
|
if (oldEnc.name() == newEnc.name())
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(false, 0);
|
2007-05-07 17:10:10 +00:00
|
|
|
|
2007-05-06 20:26:02 +00:00
|
|
|
// FIXME We ignore encoding switches from/to encodings that do
|
|
|
|
// neither support the inputenc package nor the CJK package here.
|
|
|
|
// This does of course only work in special cases (e.g. switch from
|
2007-06-27 14:50:50 +00:00
|
|
|
// tis620-0 to latin1, but the text in latin1 contains ASCII only),
|
2007-05-06 20:26:02 +00:00
|
|
|
// but it is the best we can do
|
2007-05-07 17:10:10 +00:00
|
|
|
if (oldEnc.package() == Encoding::none
|
|
|
|
|| newEnc.package() == Encoding::none)
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(false, 0);
|
2007-05-07 17:10:10 +00:00
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::LATEX, "Changing LaTeX encoding from "
|
|
|
|
<< oldEnc.name() << " to " << newEnc.name());
|
2007-05-07 17:10:10 +00:00
|
|
|
os << setEncoding(newEnc.iconvName());
|
|
|
|
if (bparams.inputenc == "default")
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(true, 0);
|
2007-05-07 17:10:10 +00:00
|
|
|
|
2007-12-08 11:21:00 +00:00
|
|
|
docstring const inputenc_arg(from_ascii(newEnc.latexName()));
|
2007-05-07 17:10:10 +00:00
|
|
|
switch (newEnc.package()) {
|
|
|
|
case Encoding::none:
|
2008-08-18 17:26:09 +00:00
|
|
|
case Encoding::japanese:
|
2007-07-05 19:19:41 +00:00
|
|
|
// shouldn't ever reach here, see above
|
|
|
|
return make_pair(true, 0);
|
2007-05-07 17:10:10 +00:00
|
|
|
case Encoding::inputenc: {
|
2007-12-08 11:21:00 +00:00
|
|
|
int count = inputenc_arg.length();
|
|
|
|
if (oldEnc.package() == Encoding::CJK &&
|
|
|
|
open_encoding_ == CJK) {
|
2007-05-07 17:10:10 +00:00
|
|
|
os << "\\end{CJK}";
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ = none;
|
2007-05-07 17:10:10 +00:00
|
|
|
count += 9;
|
|
|
|
}
|
2007-12-08 11:21:00 +00:00
|
|
|
else if (oldEnc.package() == Encoding::inputenc &&
|
|
|
|
open_encoding_ == inputenc) {
|
|
|
|
os << "\\egroup";
|
|
|
|
open_encoding_ = none;
|
|
|
|
count += 7;
|
|
|
|
}
|
2008-08-19 07:51:40 +00:00
|
|
|
if (runparams.local_font != 0
|
2008-11-16 00:12:21 +00:00
|
|
|
&& oldEnc.package() == Encoding::CJK) {
|
2008-08-19 07:51:40 +00:00
|
|
|
// within insets, \inputenc switches need
|
|
|
|
// to be embraced within \bgroup...\egroup;
|
|
|
|
// else CJK fails.
|
2007-12-08 11:21:00 +00:00
|
|
|
os << "\\bgroup";
|
|
|
|
count += 7;
|
|
|
|
open_encoding_ = inputenc;
|
|
|
|
}
|
2008-08-18 17:26:09 +00:00
|
|
|
// with the japanese option, inputenc is omitted.
|
|
|
|
if (runparams.use_japanese)
|
|
|
|
return make_pair(true, count);
|
2007-12-08 11:21:00 +00:00
|
|
|
os << "\\inputencoding{" << inputenc_arg << '}';
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(true, count + 16);
|
2007-11-15 20:04:51 +00:00
|
|
|
}
|
2007-05-07 17:10:10 +00:00
|
|
|
case Encoding::CJK: {
|
2007-12-08 11:21:00 +00:00
|
|
|
int count = inputenc_arg.length();
|
2008-10-13 11:25:37 +00:00
|
|
|
if (oldEnc.package() == Encoding::CJK &&
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ == CJK) {
|
2007-05-07 17:10:10 +00:00
|
|
|
os << "\\end{CJK}";
|
|
|
|
count += 9;
|
2007-05-06 20:26:02 +00:00
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
if (oldEnc.package() == Encoding::inputenc &&
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ == inputenc) {
|
|
|
|
os << "\\egroup";
|
|
|
|
count += 7;
|
|
|
|
}
|
2008-06-05 06:18:34 +00:00
|
|
|
os << "\\begin{CJK}{" << inputenc_arg << "}{"
|
2010-11-26 18:32:29 +00:00
|
|
|
<< from_ascii(bparams.fonts_cjk) << "}";
|
2007-12-08 11:21:00 +00:00
|
|
|
open_encoding_ = CJK;
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(true, count + 15);
|
2007-01-13 14:36:54 +00:00
|
|
|
}
|
2007-01-09 19:25:40 +00:00
|
|
|
}
|
2007-05-07 17:10:10 +00:00
|
|
|
// Dead code to avoid a warning:
|
2007-07-05 19:19:41 +00:00
|
|
|
return make_pair(true, 0);
|
2007-12-08 11:21:00 +00:00
|
|
|
|
2007-01-09 19:25:40 +00:00
|
|
|
}
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|