]> git.lyx.org Git - lyx.git/blob - src/output_latex.cpp
Natbib authoryear uses (Ref1; Ref2) by default.
[lyx.git] / src / output_latex.cpp
1 /**
2  * \file output_latex.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "output_latex.h"
14
15 #include "Buffer.h"
16 #include "BufferParams.h"
17 #include "Encoding.h"
18 #include "Font.h"
19 #include "InsetList.h"
20 #include "Language.h"
21 #include "Layout.h"
22 #include "LyXRC.h"
23 #include "OutputParams.h"
24 #include "Paragraph.h"
25 #include "ParagraphParameters.h"
26 #include "TextClass.h"
27 #include "TexRow.h"
28
29 #include "insets/InsetBibitem.h"
30 #include "insets/InsetArgument.h"
31
32 #include "support/lassert.h"
33 #include "support/convert.h"
34 #include "support/debug.h"
35 #include "support/lstrings.h"
36 #include "support/textutils.h"
37
38 #include <algorithm>
39 #include <boost/next_prior.hpp>
40 #include <list>
41
42 using namespace std;
43 using namespace lyx::support;
44
45
46 namespace lyx {
47
48 namespace {
49
50 enum OpenEncoding {
51         none,
52         inputenc,
53         CJK
54 };
55
56 static int open_encoding_ = none;
57 static int cjk_inherited_ = 0;
58 Language const * prev_env_language_ = 0;
59
60
61 string const getPolyglossiaEnvName(Language const * lang)
62 {
63         string result = lang->polyglossia();
64         if (result == "arabic")
65                 // exceptional spelling; see polyglossia docs.
66                 result = "Arabic";
67         return result;
68 }
69
70
71 struct TeXEnvironmentData
72 {
73         bool cjk_nested;
74         Layout const * style;
75         Language const * par_language;
76         Encoding const * prev_encoding;
77         bool leftindent_open;
78 };
79
80
81 static TeXEnvironmentData prepareEnvironment(Buffer const & buf,
82                                         Text const & text,
83                                         ParagraphList::const_iterator pit,
84                                         otexstream & os,
85                                         OutputParams const & runparams)
86 {
87         TeXEnvironmentData data;
88
89         BufferParams const & bparams = buf.params();
90
91         // FIXME This test should not be necessary.
92         // We should perhaps issue an error if it is.
93         Layout const & style = text.inset().forcePlainLayout() ?
94                 bparams.documentClass().plainLayout() : pit->layout();
95
96         ParagraphList const & paragraphs = text.paragraphs();
97         ParagraphList::const_iterator const priorpit =
98                 pit == paragraphs.begin() ? pit : boost::prior(pit);
99
100         bool const use_prev_env_language = prev_env_language_ != 0
101                         && priorpit->layout().isEnvironment()
102                         && (priorpit->getDepth() > pit->getDepth()
103                             || (priorpit->getDepth() == pit->getDepth()
104                                 && priorpit->layout() != pit->layout()));
105
106         data.prev_encoding = runparams.encoding;
107         data.par_language = pit->getParLanguage(bparams);
108         Language const * const doc_language = bparams.language;
109         Language const * const prev_par_language =
110                 (pit != paragraphs.begin())
111                 ? (use_prev_env_language ? prev_env_language_
112                                          : priorpit->getParLanguage(bparams))
113                 : doc_language;
114
115         bool const use_polyglossia = runparams.use_polyglossia;
116         string const par_lang = use_polyglossia ?
117                 getPolyglossiaEnvName(data.par_language) : data.par_language->babel();
118         string const prev_par_lang = use_polyglossia ?
119                 getPolyglossiaEnvName(prev_par_language) : prev_par_language->babel();
120         string const doc_lang = use_polyglossia ?
121                 getPolyglossiaEnvName(doc_language) : doc_language->babel();
122         string const lang_begin_command = use_polyglossia ?
123                 "\\begin{$$lang}" : lyxrc.language_command_begin;
124         string const lang_end_command = use_polyglossia ?
125                 "\\end{$$lang}" : lyxrc.language_command_end;
126
127         if (par_lang != prev_par_lang) {
128                 if (!lang_end_command.empty() &&
129                     prev_par_lang != doc_lang &&
130                     !prev_par_lang.empty()) {
131                         os << from_ascii(subst(
132                                 lang_end_command,
133                                 "$$lang",
134                                 prev_par_lang))
135                           // the '%' is necessary to prevent unwanted whitespace
136                           << "%\n";
137                 }
138
139                 if ((lang_end_command.empty() ||
140                     par_lang != doc_lang) &&
141                     !par_lang.empty()) {
142                         os << from_ascii(subst(
143                                 lang_begin_command,
144                                 "$$lang",
145                                 par_lang));
146                         if (use_polyglossia
147                             && !data.par_language->polyglossiaOpts().empty())
148                                         os << "["
149                                            << from_ascii(data.par_language->polyglossiaOpts())
150                                            << "]";
151                           // the '%' is necessary to prevent unwanted whitespace
152                         os << "%\n";
153                 }
154         }
155
156         data.leftindent_open = false;
157         if (!pit->params().leftIndent().zero()) {
158                 os << "\\begin{LyXParagraphLeftIndent}{"
159                    << from_ascii(pit->params().leftIndent().asLatexString())
160                    << "}\n";
161                 data.leftindent_open = true;
162         }
163
164         if (style.isEnvironment()) {
165                 os << "\\begin{" << from_ascii(style.latexname()) << '}';
166                 if (!style.latexargs().empty()) {
167                         OutputParams rp = runparams;
168                         rp.local_font = &pit->getFirstFontSettings(bparams);
169                         latexArgInsets(paragraphs, pit, os, rp, style.latexargs());
170                 }
171                 if (style.latextype == LATEX_LIST_ENVIRONMENT) {
172                         os << '{'
173                            << pit->params().labelWidthString()
174                            << "}\n";
175                 } else if (style.labeltype == LABEL_BIBLIO) {
176                         if (pit->params().labelWidthString().empty())
177                                 os << '{' << bibitemWidest(buf, runparams) << "}\n";
178                         else
179                                 os << '{'
180                                   << pit->params().labelWidthString()
181                                   << "}\n";
182                 } else
183                         os << from_ascii(style.latexparam()) << '\n';
184         }
185         data.style = &style;
186
187         // in multilingual environments, the CJK tags have to be nested properly
188         data.cjk_nested = false;
189         if (data.par_language->encoding()->package() == Encoding::CJK &&
190             open_encoding_ != CJK && pit->isMultiLingual(bparams)) {
191                 if (prev_par_language->encoding()->package() == Encoding::CJK)
192                         os << "\\begin{CJK}{" << from_ascii(data.par_language->encoding()->latexName())
193                            << "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
194                 open_encoding_ = CJK;
195                 data.cjk_nested = true;
196         }
197         return data;
198 }
199
200
201 static void finishEnvironment(otexstream & os, OutputParams const & runparams,
202                                TeXEnvironmentData const & data)
203 {
204         if (open_encoding_ == CJK && data.cjk_nested) {
205                 // We need to close the encoding even if it does not change
206                 // to do correct environment nesting
207                 os << "\\end{CJK}\n";
208                 open_encoding_ = none;
209         }
210
211         if (data.style->isEnvironment()) {
212                 os << "\\end{" << from_ascii(data.style->latexname()) << "}\n";
213                 prev_env_language_ = data.par_language;
214                 if (runparams.encoding != data.prev_encoding) {
215                         runparams.encoding = data.prev_encoding;
216                         if (!runparams.isFullUnicode())
217                                 os << setEncoding(data.prev_encoding->iconvName());
218                 }
219         }
220
221         if (data.leftindent_open) {
222                 os << "\\end{LyXParagraphLeftIndent}\n";
223                 prev_env_language_ = data.par_language;
224                 if (runparams.encoding != data.prev_encoding) {
225                         runparams.encoding = data.prev_encoding;
226                         if (!runparams.isFullUnicode())
227                                 os << setEncoding(data.prev_encoding->iconvName());
228                 }
229         }
230 }
231
232
233 void TeXEnvironment(Buffer const & buf, Text const & text,
234                     OutputParams const & runparams,
235                     pit_type & pit, otexstream & os)
236 {
237         ParagraphList const & paragraphs = text.paragraphs();
238         ParagraphList::const_iterator par = paragraphs.constIterator(pit);
239         LYXERR(Debug::LATEX, "TeXEnvironment for paragraph " << pit);
240
241         Layout const & current_layout = par->layout();
242         depth_type const current_depth = par->params().depth();
243         Length const & current_left_indent = par->params().leftIndent();
244
245         // This is for debugging purpose at the end.
246         pit_type const par_begin = pit;
247         for (; pit < runparams.par_end; ++pit) {
248                 ParagraphList::const_iterator par = paragraphs.constIterator(pit);
249
250                 // check first if this is an higher depth paragraph.
251                 bool go_out = (par->params().depth() < current_depth);
252                 if (par->params().depth() == current_depth) {
253                         // This environment is finished.
254                         go_out |= (par->layout() != current_layout);
255                         go_out |= (par->params().leftIndent() != current_left_indent);
256                 }
257                 if (go_out) {
258                         // nothing to do here, restore pit and go out.
259                         pit--;
260                         break;
261                 }
262
263                 if (par->layout() == current_layout
264                         && par->params().depth() == current_depth
265                         && par->params().leftIndent() == current_left_indent) {
266                         // We are still in the same environment so TeXOnePar and continue;
267                         TeXOnePar(buf, text, pit, os, runparams);
268                         continue;
269                 }
270
271                 // We are now in a deeper environment.
272                 // Either par->layout() != current_layout
273                 // Or     par->params().depth() > current_depth
274                 // Or     par->params().leftIndent() != current_left_indent)
275
276                 if (par->layout().isParagraph()) {
277                         // FIXME (Lgb): How to handle this?
278                         //&& !suffixIs(os, "\n\n")
279
280                         // (ARRae) There should be at least one '\n' already but we need there to
281                         // be two for Standard paragraphs that are depth-increment'ed to be
282                         // output correctly. However, tables can also be paragraphs so
283                         // don't adjust them.
284
285                         // FIXME (Lgb): Will it ever harm to have one '\n' too
286                         // many? i.e. that we sometimes will have
287                         // three in a row.
288                         os << '\n';
289                 }
290
291                 // FIXME This test should not be necessary.
292                 // We should perhaps issue an error if it is.
293                 bool const force_plain_layout = text.inset().forcePlainLayout();
294                 Layout const & style = force_plain_layout
295                         ? buf.params().documentClass().plainLayout()
296                         : par->layout();
297
298                 if (!style.isEnvironment()) {
299                         // This is a standard paragraph, no need to call TeXEnvironment.
300                         TeXOnePar(buf, text, pit, os, runparams);
301                         continue;
302                 }
303
304                 // This is a new environment.
305                 TeXEnvironmentData const data =
306                         prepareEnvironment(buf, text, par, os, runparams);
307                 // Recursive call to TeXEnvironment!
308                 TeXEnvironment(buf, text, runparams, pit, os);
309                 finishEnvironment(os, runparams, data);
310         }
311
312         if (pit != runparams.par_end)
313                 LYXERR(Debug::LATEX, "TeXEnvironment for paragraph " << par_begin << " done.");
314 }
315
316
317 void getArgInsets(otexstream & os, OutputParams const & runparams, Layout::LaTeXArgMap const & latexargs,
318                   map<int, lyx::InsetArgument const *> ilist, vector<string> required, string const & prefix)
319 {
320         unsigned int const argnr = latexargs.size();
321         if (argnr == 0)
322                 return;
323
324         for (unsigned int i = 1; i <= argnr; ++i) {
325                 map<int, InsetArgument const *>::const_iterator lit = ilist.find(i);
326                 bool inserted = false;
327                 if (lit != ilist.end()) {
328                         InsetArgument const * ins = (*lit).second;
329                         if (ins) {
330                                 Layout::LaTeXArgMap::const_iterator const lait =
331                                                 latexargs.find(ins->name());
332                                 if (lait != latexargs.end()) {
333                                         Layout::latexarg arg = (*lait).second;
334                                         docstring ldelim = arg.mandatory ?
335                                                         from_ascii("{") : from_ascii("[");
336                                         docstring rdelim = arg.mandatory ?
337                                                         from_ascii("}") : from_ascii("]");
338                                         if (!arg.ldelim.empty())
339                                                 ldelim = arg.ldelim;
340                                         if (!arg.rdelim.empty())
341                                                 rdelim = arg.rdelim;
342                                         ins->latexArgument(os, runparams, ldelim, rdelim, arg.presetarg);
343                                         inserted = true;
344                                 }
345                         }
346                 }
347                 if (!inserted) {
348                         Layout::LaTeXArgMap::const_iterator lait = latexargs.begin();
349                         Layout::LaTeXArgMap::const_iterator const laend = latexargs.end();
350                         for (; lait != laend; ++lait) {
351                                 string const name = prefix + convert<string>(i);
352                                 if ((*lait).first == name) {
353                                         Layout::latexarg arg = (*lait).second;
354                                         docstring preset = arg.presetarg;
355                                         if (!arg.defaultarg.empty()) {
356                                                 if (!preset.empty())
357                                                         preset += ",";
358                                                 preset += arg.defaultarg;
359                                         }
360                                         if (arg.mandatory) {
361                                                 docstring ldelim = arg.ldelim.empty() ?
362                                                                 from_ascii("{") : arg.ldelim;
363                                                 docstring rdelim = arg.rdelim.empty() ?
364                                                                 from_ascii("}") : arg.rdelim;
365                                                 os << ldelim << preset << rdelim;
366                                         } else if (!preset.empty()) {
367                                                 docstring ldelim = arg.ldelim.empty() ?
368                                                                 from_ascii("[") : arg.ldelim;
369                                                 docstring rdelim = arg.rdelim.empty() ?
370                                                                 from_ascii("]") : arg.rdelim;
371                                                 os << ldelim << preset << rdelim;
372                                         } else if (find(required.begin(), required.end(),
373                                                    (*lait).first) != required.end()) {
374                                                 docstring ldelim = arg.ldelim.empty() ?
375                                                                 from_ascii("[") : arg.ldelim;
376                                                 docstring rdelim = arg.rdelim.empty() ?
377                                                                 from_ascii("]") : arg.rdelim;
378                                                 os << ldelim << rdelim;
379                                         } else
380                                                 break;
381                                 }
382                         }
383                 }
384         }
385 }
386
387
388 } // namespace anon
389
390
391 void latexArgInsets(Paragraph const & par, otexstream & os,
392         OutputParams const & runparams, Layout::LaTeXArgMap const & latexargs, string const & prefix)
393 {
394         map<int, InsetArgument const *> ilist;
395         vector<string> required;
396
397         InsetList::const_iterator it = par.insetList().begin();
398         InsetList::const_iterator end = par.insetList().end();
399         for (; it != end; ++it) {
400                 if (it->inset->lyxCode() == ARG_CODE) {
401                         InsetArgument const * ins =
402                                 static_cast<InsetArgument const *>(it->inset);
403                         if (ins->name().empty())
404                                 LYXERR0("Error: Unnamed argument inset!");
405                         else {
406                                 string const name = prefix.empty() ? ins->name() : split(ins->name(), ':');
407                                 unsigned int const nr = convert<unsigned int>(name);
408                                 ilist[nr] = ins;
409                                 Layout::LaTeXArgMap::const_iterator const lit =
410                                                 latexargs.find(ins->name());
411                                 if (lit != latexargs.end()) {
412                                         Layout::latexarg const & arg = (*lit).second;
413                                         if (!arg.requires.empty()) {
414                                                 vector<string> req = getVectorFromString(arg.requires);
415                                                 required.insert(required.end(), req.begin(), req.end());
416                                         }
417                                 }
418                         }
419                 }
420         }
421         getArgInsets(os, runparams, latexargs, ilist, required, prefix);
422 }
423
424
425 void latexArgInsets(ParagraphList const & pars, ParagraphList::const_iterator pit,
426         otexstream & os, OutputParams const & runparams, Layout::LaTeXArgMap const & latexargs,
427         string const & prefix)
428 {
429         map<int, InsetArgument const *> ilist;
430         vector<string> required;
431
432         depth_type const current_depth = pit->params().depth();
433         Layout const current_layout = pit->layout();
434
435         // get the first paragraph in sequence with this layout and depth
436         pit_type offset = 0;
437         while (true) {
438                 if (boost::prior(pit, offset) == pars.begin())
439                         break;
440                 ParagraphList::const_iterator priorpit = boost::prior(pit, offset + 1);
441                 if (priorpit->layout() == current_layout
442                     && priorpit->params().depth() == current_depth)
443                         ++offset;
444                 else
445                         break;
446         }
447
448         ParagraphList::const_iterator spit = boost::prior(pit, offset);
449
450         for (; spit != pars.end(); ++spit) {
451                 if (spit->layout() != current_layout || spit->params().depth() < current_depth)
452                         break;
453                 if (spit->params().depth() > current_depth)
454                         continue;
455                 InsetList::const_iterator it = spit->insetList().begin();
456                 InsetList::const_iterator end = spit->insetList().end();
457                 for (; it != end; ++it) {
458                         if (it->inset->lyxCode() == ARG_CODE) {
459                                 InsetArgument const * ins =
460                                         static_cast<InsetArgument const *>(it->inset);
461                                 if (ins->name().empty())
462                                         LYXERR0("Error: Unnamed argument inset!");
463                                 else {
464                                         string const name = prefix.empty() ? ins->name() : split(ins->name(), ':');
465                                         unsigned int const nr = convert<unsigned int>(name);
466                                         if (ilist.find(nr) == ilist.end())
467                                                 ilist[nr] = ins;
468                                         Layout::LaTeXArgMap::const_iterator const lit =
469                                                         latexargs.find(ins->name());
470                                         if (lit != latexargs.end()) {
471                                                 Layout::latexarg const & arg = (*lit).second;
472                                                 if (!arg.requires.empty()) {
473                                                         vector<string> req = getVectorFromString(arg.requires);
474                                                         required.insert(required.end(), req.begin(), req.end());
475                                                 }
476                                         }
477                                 }
478                         }
479                 }
480         }
481         getArgInsets(os, runparams, latexargs, ilist, required, prefix);
482 }
483
484 namespace {
485
486 // output the proper paragraph start according to latextype.
487 void parStartCommand(Paragraph const & par, otexstream & os,
488                      OutputParams const & runparams, Layout const & style) 
489 {
490         switch (style.latextype) {
491         case LATEX_COMMAND:
492                 os << '\\' << from_ascii(style.latexname());
493
494                 // Command arguments
495                 if (!style.latexargs().empty())
496                         latexArgInsets(par, os, runparams, style.latexargs());
497                 os << from_ascii(style.latexparam());
498                 break;
499         case LATEX_ITEM_ENVIRONMENT:
500         case LATEX_LIST_ENVIRONMENT:
501                 os << "\\" + style.itemcommand();
502                 // Item arguments
503                 if (!style.itemargs().empty())
504                         latexArgInsets(par, os, runparams, style.itemargs(), "item:");
505                 os << " ";
506                 break;
507         case LATEX_BIB_ENVIRONMENT:
508                 // ignore this, the inset will write itself
509                 break;
510         default:
511                 break;
512         }
513 }
514
515 } // namespace anon
516
517 // FIXME: this should be anonymous
518 void TeXOnePar(Buffer const & buf,
519                Text const & text,
520                pit_type pit,
521                otexstream & os,
522                OutputParams const & runparams_in,
523                string const & everypar,
524                int start_pos, int end_pos)
525 {
526         BufferParams const & bparams = buf.params();
527         ParagraphList const & paragraphs = text.paragraphs();
528         Paragraph const & par = paragraphs.at(pit);
529         // FIXME This check should not really be needed.
530         // Perhaps we should issue an error if it is.
531         Layout const style = text.inset().forcePlainLayout() ?
532                 bparams.documentClass().plainLayout() : par.layout();
533
534         if (style.inpreamble)
535                 return;
536
537         LYXERR(Debug::LATEX, "TeXOnePar for paragraph " << pit << " ptr " << &par << " '"
538                 << everypar << "'");
539
540         OutputParams runparams = runparams_in;
541         runparams.isLastPar = (pit == pit_type(paragraphs.size() - 1));
542         // We reinitialze par begin and end to be on the safe side
543         // with embedded inset as we don't know if they set those
544         // value correctly.
545         runparams.par_begin = 0;
546         runparams.par_end = 0;
547
548         bool const maintext = text.isMainText();
549         // we are at the beginning of an inset and CJK is already open;
550         // we count inheritation levels to get the inset nesting right.
551         if (pit == 0 && !maintext
552             && (cjk_inherited_ > 0 || open_encoding_ == CJK)) {
553                 cjk_inherited_ += 1;
554                 open_encoding_ = none;
555         }
556
557         if (text.inset().isPassThru()) {
558                 Font const outerfont = text.outerFont(pit);
559
560                 // No newline before first paragraph in this lyxtext
561                 if (pit > 0) {
562                         os << '\n';
563                         if (!text.inset().getLayout().parbreakIsNewline())
564                                 os << '\n';
565                 }
566
567                 par.latex(bparams, outerfont, os, runparams, start_pos, end_pos);
568                 return;
569         }
570
571         Paragraph const * nextpar = runparams.isLastPar
572                 ? 0 : &paragraphs.at(pit + 1);
573
574         if (style.pass_thru) {
575                 Font const outerfont = text.outerFont(pit);
576                 runparams.local_font = &par.getFirstFontSettings(bparams);
577                 parStartCommand(par, os, runparams, style);
578
579                 par.latex(bparams, outerfont, os, runparams, start_pos, end_pos);
580
581                 // I did not create a parEndCommand for this minuscule
582                 // task because in the other user of parStartCommand
583                 // the code is different (JMarc)
584                 if (style.isCommand())
585                         os << "}\n";
586                 else
587                         os << '\n';
588                 if (!style.parbreak_is_newline) {
589                         os << '\n';
590                 } else if (nextpar && !style.isEnvironment()) {
591                         Layout const nextstyle = text.inset().forcePlainLayout()
592                                 ? bparams.documentClass().plainLayout()
593                                 : nextpar->layout();
594                         if (nextstyle.name() != style.name())
595                                 os << '\n';
596                 }
597
598                 return;
599         }
600
601         // This paragraph's language
602         Language const * const par_language = par.getParLanguage(bparams);
603         // The document's language
604         Language const * const doc_language = bparams.language;
605         // The language that was in effect when the environment this paragraph is
606         // inside of was opened
607         Language const * const outer_language =
608                 (runparams.local_font != 0) ?
609                         runparams.local_font->language() : doc_language;
610
611         Paragraph const * priorpar = (pit == 0) ? 0 : &paragraphs.at(pit - 1);
612
613         // The previous language that was in effect is the language of the
614         // previous paragraph, unless the previous paragraph is inside an
615         // environment with nesting depth greater than (or equal to, but with
616         // a different layout) the current one. If there is no previous
617         // paragraph, the previous language is the outer language.
618         bool const use_prev_env_language = prev_env_language_ != 0
619                         && priorpar
620                         && priorpar->layout().isEnvironment()
621                         && (priorpar->getDepth() > par.getDepth()
622                             || (priorpar->getDepth() == par.getDepth()
623                                     && priorpar->layout() != par.layout()));
624         Language const * const prev_language =
625                 (pit != 0)
626                 ? (use_prev_env_language ? prev_env_language_
627                                          : priorpar->getParLanguage(bparams))
628                 : outer_language;
629
630
631         bool const use_polyglossia = runparams.use_polyglossia;
632         string const par_lang = use_polyglossia ?
633                 getPolyglossiaEnvName(par_language): par_language->babel();
634         string const prev_lang = use_polyglossia ?
635                 getPolyglossiaEnvName(prev_language) : prev_language->babel();
636         string const doc_lang = use_polyglossia ?
637                 getPolyglossiaEnvName(doc_language) : doc_language->babel();
638         string const outer_lang = use_polyglossia ?
639                 getPolyglossiaEnvName(outer_language) : outer_language->babel();
640         string lang_begin_command = use_polyglossia ?
641                 "\\begin{$$lang}" : lyxrc.language_command_begin;
642         string lang_end_command = use_polyglossia ?
643                 "\\end{$$lang}" : lyxrc.language_command_end;
644         // the '%' is necessary to prevent unwanted whitespace
645         string lang_command_termination = "%\n";
646
647         // In some insets (such as Arguments), we cannot use \selectlanguage
648         bool const localswitch = !use_polyglossia
649                 && text.inset().getLayout().forcelocalfontswitch();
650         if (localswitch) {
651                 lang_begin_command = lyxrc.language_command_local;
652                 lang_end_command = "}";
653                 lang_command_termination.clear();
654         }
655
656         if (par_lang != prev_lang
657                 // check if we already put language command in TeXEnvironment()
658                 && !(style.isEnvironment()
659                      && (pit == 0 || (priorpar->layout() != par.layout()
660                                           && priorpar->getDepth() <= par.getDepth())
661                                   || priorpar->getDepth() < par.getDepth())))
662         {
663                 if (!lang_end_command.empty() &&
664                     prev_lang != outer_lang &&
665                     !prev_lang.empty())
666                 {
667                         os << from_ascii(subst(lang_end_command,
668                                 "$$lang",
669                                 prev_lang))
670                            << lang_command_termination;
671                 }
672
673                 // We need to open a new language if we couldn't close the previous
674                 // one (because there's no language_command_end); and even if we closed
675                 // the previous one, if the current language is different than the
676                 // outer_language (which is currently in effect once the previous one
677                 // is closed).
678                 if ((lang_end_command.empty() || par_lang != outer_lang)
679                         && !par_lang.empty()) {
680                         // If we're inside an inset, and that inset is within an \L or \R
681                         // (or equivalents), then within the inset, too, any opposite
682                         // language paragraph should appear within an \L or \R (in addition
683                         // to, outside of, the normal language switch commands).
684                         // This behavior is not correct for ArabTeX, though.
685                         if (!use_polyglossia
686                             // not for ArabTeX
687                                 && par_language->lang() != "arabic_arabtex"
688                                 && outer_language->lang() != "arabic_arabtex"
689                             // are we in an inset?
690                             && runparams.local_font != 0
691                             // is the inset within an \L or \R?
692                             //
693                             // FIXME: currently, we don't check this; this means that
694                             // we'll have unnnecessary \L and \R commands, but that
695                             // doesn't seem to hurt (though latex will complain)
696                             //
697                             // is this paragraph in the opposite direction?
698                             && runparams.local_font->isRightToLeft() != par_language->rightToLeft()) {
699                                 // FIXME: I don't have a working copy of the Arabi package, so
700                                 // I'm not sure if the farsi and arabic_arabi stuff is correct
701                                 // or not...
702                                 if (par_language->lang() == "farsi")
703                                         os << "\\textFR{";
704                                 else if (outer_language->lang() == "farsi")
705                                         os << "\\textLR{";
706                                 else if (par_language->lang() == "arabic_arabi")
707                                         os << "\\textAR{";
708                                 else if (outer_language->lang() == "arabic_arabi")
709                                         os << "\\textLR{";
710                                 // remaining RTL languages currently is hebrew
711                                 else if (par_language->rightToLeft())
712                                         os << "\\R{";
713                                 else
714                                         os << "\\L{";
715                         }
716                         // With CJK, the CJK tag has to be closed first (see below)
717                         if (runparams.encoding->package() != Encoding::CJK
718                             && !par_lang.empty()) {
719                                 os << from_ascii(subst(
720                                         lang_begin_command,
721                                         "$$lang",
722                                         par_lang));
723                                 if (use_polyglossia
724                                     && !par_language->polyglossiaOpts().empty())
725                                                 os << "["
726                                                   << from_ascii(par_language->polyglossiaOpts())
727                                                   << "]";
728                                 os << lang_command_termination;
729                         }
730                 }
731         }
732
733         // Switch file encoding if necessary; no need to do this for "default"
734         // encoding, since this only affects the position of the outputted
735         // \inputencoding command; the encoding switch will occur when necessary
736         if (bparams.inputenc == "auto"
737                 && runparams.encoding->package() != Encoding::none) {
738                 // Look ahead for future encoding changes.
739                 // We try to output them at the beginning of the paragraph,
740                 // since the \inputencoding command is not allowed e.g. in
741                 // sections. For this reason we only set runparams.moving_arg
742                 // after checking for the encoding change, otherwise the
743                 // change would be always avoided by switchEncoding().
744                 for (pos_type i = 0; i < par.size(); ++i) {
745                         char_type const c = par.getChar(i);
746                         Encoding const * const encoding =
747                                 par.getFontSettings(bparams, i).language()->encoding();
748                         if (encoding->package() != Encoding::CJK
749                                 && runparams.encoding->package() == Encoding::inputenc
750                                 && isASCII(c))
751                                 continue;
752                         if (par.isInset(i))
753                                 break;
754                         // All characters before c are in the ASCII range, and
755                         // c is non-ASCII (but no inset), so change the
756                         // encoding to that required by the language of c.
757                         // With CJK, only add switch if we have CJK content at the beginning
758                         // of the paragraph
759                         if (i != 0 && encoding->package() == Encoding::CJK)
760                                 continue;
761
762                         pair<bool, int> enc_switch = switchEncoding(os.os(),
763                                                 bparams, runparams, *encoding);
764                         // the following is necessary after a CJK environment in a multilingual
765                         // context (nesting issue).
766                         if (par_language->encoding()->package() == Encoding::CJK
767                                 && open_encoding_ != CJK && cjk_inherited_ == 0) {
768                                 os << "\\begin{CJK}{" << from_ascii(par_language->encoding()->latexName())
769                                    << "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
770                                 open_encoding_ = CJK;
771                         }
772                         if (encoding->package() != Encoding::none && enc_switch.first) {
773                                 if (enc_switch.second > 0) {
774                                         // the '%' is necessary to prevent unwanted whitespace
775                                         os << "%\n";
776                                 }
777                                 // With CJK, the CJK tag had to be closed first (see above)
778                                 if (runparams.encoding->package() == Encoding::CJK
779                                     && !par_lang.empty()) {
780                                         os << from_ascii(subst(
781                                                 lang_begin_command,
782                                                 "$$lang",
783                                                 par_lang))
784                                         << lang_command_termination;
785                                 }
786                                 runparams.encoding = encoding;
787                         }
788                         break;
789                 }
790         }
791
792         runparams.moving_arg |= style.needprotect;
793         Encoding const * const prev_encoding = runparams.encoding;
794
795         bool const useSetSpace = bparams.documentClass().provides("SetSpace");
796         if (par.allowParagraphCustomization()) {
797                 if (par.params().startOfAppendix()) {
798                         os << "\\appendix\n";
799                 }
800
801                 if (!par.params().spacing().isDefault()
802                         && (pit == 0 || !priorpar->hasSameLayout(par)))
803                 {
804                         os << from_ascii(par.params().spacing().writeEnvirBegin(useSetSpace))
805                             << '\n';
806                 }
807
808                 if (style.isCommand()) {
809                         os << '\n';
810                 }
811         }
812
813         runparams.local_font = &par.getFirstFontSettings(bparams);
814         parStartCommand(par, os, runparams, style);
815         Font const outerfont = text.outerFont(pit);
816
817         // FIXME UNICODE
818         os << from_utf8(everypar);
819         par.latex(bparams, outerfont, os, runparams, start_pos, end_pos);
820
821         // Make sure that \\par is done with the font of the last
822         // character if this has another size as the default.
823         // This is necessary because LaTeX (and LyX on the screen)
824         // calculates the space between the baselines according
825         // to this font. (Matthias)
826         //
827         // Is this really needed ? (Dekel)
828         // We do not need to use to change the font for the last paragraph
829         // or for a command.
830
831         Font const font = par.empty()
832                  ? par.getLayoutFont(bparams, outerfont)
833                  : par.getFont(bparams, par.size() - 1, outerfont);
834
835         bool const is_command = style.isCommand();
836
837         if (style.resfont.size() != font.fontInfo().size()
838             && nextpar
839             && !is_command) {
840                 os << '{';
841                 os << "\\" << from_ascii(font.latexSize()) << " \\par}";
842         } else if (is_command) {
843                 os << '}';
844                 if (!style.postcommandargs().empty())
845                         latexArgInsets(par, os, runparams, style.postcommandargs(), "post:");
846                 if (runparams.encoding != prev_encoding) {
847                         runparams.encoding = prev_encoding;
848                         if (!runparams.isFullUnicode())
849                                 os << setEncoding(prev_encoding->iconvName());
850                 }
851         }
852
853         bool pending_newline = false;
854         bool unskip_newline = false;
855         switch (style.latextype) {
856         case LATEX_ITEM_ENVIRONMENT:
857         case LATEX_LIST_ENVIRONMENT:
858                 if (nextpar && (par.params().depth() < nextpar->params().depth()))
859                         pending_newline = true;
860                 break;
861         case LATEX_ENVIRONMENT: {
862                 // if its the last paragraph of the current environment
863                 // skip it otherwise fall through
864                 if (nextpar
865                         && (nextpar->layout() != par.layout()
866                         || nextpar->params().depth() != par.params().depth()))
867                         break;
868         }
869
870         // fall through possible
871         default:
872                 // we don't need it for the last paragraph!!!
873                 if (nextpar)
874                         pending_newline = true;
875         }
876
877         if (par.allowParagraphCustomization()) {
878                 if (!par.params().spacing().isDefault()
879                         && (runparams.isLastPar || !nextpar->hasSameLayout(par))) {
880                         if (pending_newline)
881                                 os << '\n';
882                         os << from_ascii(par.params().spacing().writeEnvirEnd(useSetSpace));
883                         pending_newline = true;
884                 }
885         }
886
887         // Closing the language is needed for the last paragraph; it is also
888         // needed if we're within an \L or \R that we may have opened above (not
889         // necessarily in this paragraph) and are about to close.
890         bool closing_rtl_ltr_environment = !use_polyglossia
891                 // not for ArabTeX
892                 && (par_language->lang() != "arabic_arabtex"
893                     && outer_language->lang() != "arabic_arabtex")
894                      // have we opened and \L or \R environment?
895                 && runparams.local_font != 0
896                 && runparams.local_font->isRightToLeft() != par_language->rightToLeft()
897                 // are we about to close the language?
898                 &&((nextpar && par_language->babel() != (nextpar->getParLanguage(bparams))->babel())
899                    || (runparams.isLastPar && par_language->babel() != outer_language->babel()));
900
901         if (closing_rtl_ltr_environment
902             || (runparams.isLastPar
903                 && ((!use_polyglossia && par_language->babel() != outer_language->babel())
904                     || (use_polyglossia && par_language->polyglossia() != outer_language->polyglossia())))) {
905                 // Since \selectlanguage write the language to the aux file,
906                 // we need to reset the language at the end of footnote or
907                 // float.
908
909                 if (pending_newline)
910                         os << '\n';
911
912                 // when the paragraph uses CJK, the language has to be closed earlier
913                 if (font.language()->encoding()->package() != Encoding::CJK) {
914                         if (lang_end_command.empty()) {
915                                 // If this is a child, we should restore the
916                                 // master language after the last paragraph.
917                                 Language const * const current_language =
918                                         (runparams.isLastPar && runparams.master_language)
919                                                 ? runparams.master_language
920                                                 : outer_language;
921                                 string const current_lang = use_polyglossia
922                                         ? getPolyglossiaEnvName(current_language)
923                                         : current_language->babel();
924                                 if (!current_lang.empty()) {
925                                         os << from_ascii(subst(
926                                                 lang_begin_command,
927                                                 "$$lang",
928                                                 current_lang));
929                                         pending_newline = !localswitch;
930                                         unskip_newline = !localswitch;
931                                 }
932                         } else if (!par_lang.empty()) {
933                                 os << from_ascii(subst(
934                                         lang_end_command,
935                                         "$$lang",
936                                         par_lang));
937                                 pending_newline = !localswitch;
938                                 unskip_newline = !localswitch;
939                         }
940                 }
941         }
942         if (closing_rtl_ltr_environment)
943                 os << "}";
944
945         if (pending_newline) {
946                 if (unskip_newline)
947                         // prevent unwanted whitespace
948                         os << '%';
949                 os << '\n';
950         }
951
952         // if this is a CJK-paragraph and the next isn't, close CJK
953         // also if the next paragraph is a multilingual environment (because of nesting)
954         if (nextpar
955                 && open_encoding_ == CJK
956                 && (nextpar->getParLanguage(bparams)->encoding()->package() != Encoding::CJK
957                    || (nextpar->layout().isEnvironment() && nextpar->isMultiLingual(bparams)))
958                 // inbetween environments, CJK has to be closed later (nesting!)
959                 && (!style.isEnvironment() || !nextpar->layout().isEnvironment())) {
960                 os << "\\end{CJK}\n";
961                 open_encoding_ = none;
962         }
963
964         // If this is the last paragraph, close the CJK environment
965         // if necessary. If it's an environment, we'll have to \end that first.
966         if (runparams.isLastPar && !style.isEnvironment()) {
967                 switch (open_encoding_) {
968                         case CJK: {
969                                 // do nothing at the end of child documents
970                                 if (maintext && buf.masterBuffer() != &buf)
971                                         break;
972                                 // end of main text
973                                 if (maintext) {
974                                         os << "\n\\end{CJK}\n";
975                                 // end of an inset
976                                 } else
977                                         os << "\\end{CJK}";
978                                 open_encoding_ = none;
979                                 break;
980                         }
981                         case inputenc: {
982                                 os << "\\egroup";
983                                 open_encoding_ = none;
984                                 break;
985                         }
986                         case none:
987                         default:
988                                 // do nothing
989                                 break;
990                 }
991         }
992
993         // If this is the last paragraph, and a local_font was set upon entering
994         // the inset, and we're using "auto" or "default" encoding, the encoding
995         // should be set back to that local_font's encoding.
996         // However, do not change the encoding when a fully unicode aware backend
997         // such as XeTeX is used.
998         if (runparams.isLastPar && runparams_in.local_font != 0
999             && runparams_in.encoding != runparams_in.local_font->language()->encoding()
1000             && (bparams.inputenc == "auto" || bparams.inputenc == "default")
1001             && (!runparams.isFullUnicode())) {
1002                 runparams_in.encoding = runparams_in.local_font->language()->encoding();
1003                 os << setEncoding(runparams_in.encoding->iconvName());
1004         }
1005         // Otherwise, the current encoding should be set for the next paragraph.
1006         else
1007                 runparams_in.encoding = runparams.encoding;
1008
1009
1010         // we don't need a newline for the last paragraph!!!
1011         // Note from JMarc: we will re-add a \n explicitly in
1012         // TeXEnvironment, because it is needed in this case
1013         if (nextpar) {
1014                 Layout const & next_layout = nextpar->layout();
1015                 if (style == next_layout
1016                     // no blank lines before environments!
1017                     || !next_layout.isEnvironment()
1018                     // unless there's a depth change
1019                     // FIXME What we really want to do here is put every \begin and \end
1020                     // tag on a new line (which was not the case with nested environments).
1021                     // But in the present state of play, we don't have access to the
1022                     // information whether the current TeX row is empty or not.
1023                     // For some ideas about how to fix this, see this thread:
1024                     // http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg145787.html
1025                     || nextpar->params().depth() != par.params().depth()) {
1026                         os << '\n';
1027                 }
1028         }
1029
1030         LYXERR(Debug::LATEX, "TeXOnePar for paragraph " << pit << " done; ptr "
1031                 << &par << " next " << nextpar);
1032
1033         return;
1034 }
1035
1036
1037 // LaTeX all paragraphs
1038 void latexParagraphs(Buffer const & buf,
1039                      Text const & text,
1040                      otexstream & os,
1041                      OutputParams const & runparams,
1042                      string const & everypar)
1043 {
1044         LASSERT(runparams.par_begin <= runparams.par_end,
1045                 { os << "% LaTeX Output Error\n"; return; } );
1046
1047         BufferParams const & bparams = buf.params();
1048
1049         bool const maintext = text.isMainText();
1050         bool const is_child = buf.masterBuffer() != &buf;
1051
1052         // Open a CJK environment at the beginning of the main buffer
1053         // if the document's language is a CJK language
1054         // (but not in child documents)
1055         if (maintext && !is_child
1056             && bparams.encoding().package() == Encoding::CJK) {
1057                 os << "\\begin{CJK}{" << from_ascii(bparams.encoding().latexName())
1058                 << "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
1059                 open_encoding_ = CJK;
1060         }
1061         // if "auto begin" is switched off, explicitly switch the
1062         // language on at start
1063         string const mainlang = runparams.use_polyglossia
1064                 ? getPolyglossiaEnvName(bparams.language)
1065                 : bparams.language->babel();
1066         string const lang_begin_command = runparams.use_polyglossia ?
1067                 "\\begin{$$lang}" : lyxrc.language_command_begin;
1068
1069         if (maintext && !lyxrc.language_auto_begin &&
1070             !mainlang.empty()) {
1071                 // FIXME UNICODE
1072                 os << from_utf8(subst(lang_begin_command,
1073                                         "$$lang",
1074                                         mainlang));
1075                 if (runparams.use_polyglossia
1076                     && !bparams.language->polyglossiaOpts().empty())
1077                         os << "["
1078                             << from_ascii(bparams.language->polyglossiaOpts())
1079                             << "]";
1080                 os << '\n';
1081         }
1082
1083         ParagraphList const & paragraphs = text.paragraphs();
1084
1085         if (runparams.par_begin == runparams.par_end) {
1086                 // The full doc will be exported but it is easier to just rely on
1087                 // runparams range parameters that will be passed TeXEnvironment.
1088                 runparams.par_begin = 0;
1089                 runparams.par_end = paragraphs.size();
1090         }
1091
1092         pit_type pit = runparams.par_begin;
1093         // lastpit is for the language check after the loop.
1094         pit_type lastpit = pit;
1095         // variables used in the loop:
1096         bool was_title = false;
1097         bool already_title = false;
1098         DocumentClass const & tclass = bparams.documentClass();
1099
1100         for (; pit < runparams.par_end; ++pit) {
1101                 lastpit = pit;
1102                 ParagraphList::const_iterator par = paragraphs.constIterator(pit);
1103
1104                 // FIXME This check should not be needed. We should
1105                 // perhaps issue an error if it is.
1106                 Layout const & layout = text.inset().forcePlainLayout() ?
1107                                 tclass.plainLayout() : par->layout();
1108
1109                 if (layout.intitle) {
1110                         if (already_title) {
1111                                 LYXERR0("Error in latexParagraphs: You"
1112                                         " should not mix title layouts"
1113                                         " with normal ones.");
1114                         } else if (!was_title) {
1115                                 was_title = true;
1116                                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
1117                                         os << "\\begin{"
1118                                                         << from_ascii(tclass.titlename())
1119                                                         << "}\n";
1120                                 }
1121                         }
1122                 } else if (was_title && !already_title) {
1123                         if (tclass.titletype() == TITLE_ENVIRONMENT) {
1124                                 os << "\\end{" << from_ascii(tclass.titlename())
1125                                                 << "}\n";
1126                         }
1127                         else {
1128                                 os << "\\" << from_ascii(tclass.titlename())
1129                                                 << "\n";
1130                         }
1131                         already_title = true;
1132                         was_title = false;
1133                 }
1134
1135
1136                 if (!layout.isEnvironment() && par->params().leftIndent().zero()) {
1137                         // This is a standard top level paragraph, TeX it and continue.
1138                         TeXOnePar(buf, text, pit, os, runparams, everypar);
1139                         continue;
1140                 }
1141                 
1142                 TeXEnvironmentData const data =
1143                         prepareEnvironment(buf, text, par, os, runparams);
1144                 // pit can be changed in TeXEnvironment.
1145                 TeXEnvironment(buf, text, runparams, pit, os);
1146                 finishEnvironment(os, runparams, data);
1147         }
1148
1149         if (pit == runparams.par_end) {
1150                         // Make sure that the last paragraph is
1151                         // correctly terminated (because TeXOnePar does
1152                         // not add a \n in this case)
1153                         //os << '\n';
1154         }
1155
1156         // It might be that we only have a title in this document
1157         if (was_title && !already_title) {
1158                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
1159                         os << "\\end{" << from_ascii(tclass.titlename())
1160                            << "}\n";
1161                 } else {
1162                         os << "\\" << from_ascii(tclass.titlename())
1163                            << "\n";
1164                 }
1165         }
1166
1167         // if "auto end" is switched off, explicitly close the language at the end
1168         // but only if the last par is in a babel language
1169         string const lang_end_command = runparams.use_polyglossia ?
1170                 "\\end{$$lang}" : lyxrc.language_command_end;
1171         if (maintext && !lyxrc.language_auto_end && !mainlang.empty() &&
1172                 paragraphs.at(lastpit).getParLanguage(bparams)->encoding()->package() != Encoding::CJK) {
1173                 os << from_utf8(subst(lang_end_command,
1174                                         "$$lang",
1175                                         mainlang))
1176                         << '\n';
1177         }
1178
1179         // If the last paragraph is an environment, we'll have to close
1180         // CJK at the very end to do proper nesting.
1181         if (maintext && !is_child && open_encoding_ == CJK) {
1182                 os << "\\end{CJK}\n";
1183                 open_encoding_ = none;
1184         }
1185
1186         // reset inherited encoding
1187         if (cjk_inherited_ > 0) {
1188                 cjk_inherited_ -= 1;
1189                 if (cjk_inherited_ == 0)
1190                         open_encoding_ = CJK;
1191         }
1192 }
1193
1194
1195 pair<bool, int> switchEncoding(odocstream & os, BufferParams const & bparams,
1196                    OutputParams const & runparams, Encoding const & newEnc,
1197                    bool force)
1198 {
1199         Encoding const & oldEnc = *runparams.encoding;
1200         bool moving_arg = runparams.moving_arg;
1201         if (!force && ((bparams.inputenc != "auto" && bparams.inputenc != "default")
1202                 || moving_arg))
1203                 return make_pair(false, 0);
1204
1205         // Do nothing if the encoding is unchanged.
1206         if (oldEnc.name() == newEnc.name())
1207                 return make_pair(false, 0);
1208
1209         // FIXME We ignore encoding switches from/to encodings that do
1210         // neither support the inputenc package nor the CJK package here.
1211         // This does of course only work in special cases (e.g. switch from
1212         // tis620-0 to latin1, but the text in latin1 contains ASCII only),
1213         // but it is the best we can do
1214         if (oldEnc.package() == Encoding::none
1215                 || newEnc.package() == Encoding::none)
1216                 return make_pair(false, 0);
1217
1218         LYXERR(Debug::LATEX, "Changing LaTeX encoding from "
1219                 << oldEnc.name() << " to " << newEnc.name());
1220         os << setEncoding(newEnc.iconvName());
1221         if (bparams.inputenc == "default")
1222                 return make_pair(true, 0);
1223
1224         docstring const inputenc_arg(from_ascii(newEnc.latexName()));
1225         switch (newEnc.package()) {
1226                 case Encoding::none:
1227                 case Encoding::japanese:
1228                         // shouldn't ever reach here, see above
1229                         return make_pair(true, 0);
1230                 case Encoding::inputenc: {
1231                         int count = inputenc_arg.length();
1232                         if (oldEnc.package() == Encoding::CJK &&
1233                             open_encoding_ == CJK) {
1234                                 os << "\\end{CJK}";
1235                                 open_encoding_ = none;
1236                                 count += 9;
1237                         }
1238                         else if (oldEnc.package() == Encoding::inputenc &&
1239                                  open_encoding_ == inputenc) {
1240                                 os << "\\egroup";
1241                                 open_encoding_ = none;
1242                                 count += 7;
1243                         }
1244                         if (runparams.local_font != 0
1245                             &&  oldEnc.package() == Encoding::CJK) {
1246                                 // within insets, \inputenc switches need
1247                                 // to be embraced within \bgroup...\egroup;
1248                                 // else CJK fails.
1249                                 os << "\\bgroup";
1250                                 count += 7;
1251                                 open_encoding_ = inputenc;
1252                         }
1253                         // with the japanese option, inputenc is omitted.
1254                         if (runparams.use_japanese)
1255                                 return make_pair(true, count);
1256                         os << "\\inputencoding{" << inputenc_arg << '}';
1257                         return make_pair(true, count + 16);
1258                 }
1259                 case Encoding::CJK: {
1260                         int count = inputenc_arg.length();
1261                         if (oldEnc.package() == Encoding::CJK &&
1262                             open_encoding_ == CJK) {
1263                                 os << "\\end{CJK}";
1264                                 count += 9;
1265                         }
1266                         if (oldEnc.package() == Encoding::inputenc &&
1267                             open_encoding_ == inputenc) {
1268                                 os << "\\egroup";
1269                                 count += 7;
1270                         }
1271                         os << "\\begin{CJK}{" << inputenc_arg << "}{"
1272                            << from_ascii(bparams.fonts_cjk) << "}";
1273                         open_encoding_ = CJK;
1274                         return make_pair(true, count + 15);
1275                 }
1276         }
1277         // Dead code to avoid a warning:
1278         return make_pair(true, 0);
1279
1280 }
1281
1282 } // namespace lyx