]> git.lyx.org Git - lyx.git/blob - src/output_latex.cpp
installer: further preparation
[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                 parStartCommand(par, os, runparams, style);
577
578                 par.latex(bparams, outerfont, os, runparams, start_pos, end_pos);
579
580                 // I did not create a parEndCommand for this minuscule
581                 // task because in the other user of parStartCommand
582                 // the code is different (JMarc)
583                 if (style.isCommand())
584                         os << "}\n";
585                 else
586                         os << '\n';
587                 if (!style.parbreak_is_newline) {
588                         os << '\n';
589                 } else if (nextpar && !style.isEnvironment()) {
590                         Layout const nextstyle = text.inset().forcePlainLayout()
591                                 ? bparams.documentClass().plainLayout()
592                                 : nextpar->layout();
593                         if (nextstyle.name() != style.name())
594                                 os << '\n';
595                 }
596
597                 return;
598         }
599
600         // This paragraph's language
601         Language const * const par_language = par.getParLanguage(bparams);
602         // The document's language
603         Language const * const doc_language = bparams.language;
604         // The language that was in effect when the environment this paragraph is
605         // inside of was opened
606         Language const * const outer_language =
607                 (runparams.local_font != 0) ?
608                         runparams.local_font->language() : doc_language;
609
610         Paragraph const * priorpar = (pit == 0) ? 0 : &paragraphs.at(pit - 1);
611
612         // The previous language that was in effect is the language of the
613         // previous paragraph, unless the previous paragraph is inside an
614         // environment with nesting depth greater than (or equal to, but with
615         // a different layout) the current one. If there is no previous
616         // paragraph, the previous language is the outer language.
617         bool const use_prev_env_language = prev_env_language_ != 0
618                         && priorpar
619                         && priorpar->layout().isEnvironment()
620                         && (priorpar->getDepth() > par.getDepth()
621                             || (priorpar->getDepth() == par.getDepth()
622                                     && priorpar->layout() != par.layout()));
623         Language const * const prev_language =
624                 (pit != 0)
625                 ? (use_prev_env_language ? prev_env_language_
626                                          : priorpar->getParLanguage(bparams))
627                 : outer_language;
628
629
630         bool const use_polyglossia = runparams.use_polyglossia;
631         string const par_lang = use_polyglossia ?
632                 getPolyglossiaEnvName(par_language): par_language->babel();
633         string const prev_lang = use_polyglossia ?
634                 getPolyglossiaEnvName(prev_language) : prev_language->babel();
635         string const doc_lang = use_polyglossia ?
636                 getPolyglossiaEnvName(doc_language) : doc_language->babel();
637         string const outer_lang = use_polyglossia ?
638                 getPolyglossiaEnvName(outer_language) : outer_language->babel();
639         string lang_begin_command = use_polyglossia ?
640                 "\\begin{$$lang}" : lyxrc.language_command_begin;
641         string lang_end_command = use_polyglossia ?
642                 "\\end{$$lang}" : lyxrc.language_command_end;
643         // the '%' is necessary to prevent unwanted whitespace
644         string lang_command_termination = "%\n";
645
646         // In some insets (such as Arguments), we cannot use \selectlanguage
647         bool const localswitch = !use_polyglossia
648                 && text.inset().getLayout().forcelocalfontswitch();
649         if (localswitch) {
650                 lang_begin_command = lyxrc.language_command_local;
651                 lang_end_command = "}";
652                 lang_command_termination.clear();
653         }
654
655         if (par_lang != prev_lang
656                 // check if we already put language command in TeXEnvironment()
657                 && !(style.isEnvironment()
658                      && (pit == 0 || (priorpar->layout() != par.layout()
659                                           && priorpar->getDepth() <= par.getDepth())
660                                   || priorpar->getDepth() < par.getDepth())))
661         {
662                 if (!lang_end_command.empty() &&
663                     prev_lang != outer_lang &&
664                     !prev_lang.empty())
665                 {
666                         os << from_ascii(subst(lang_end_command,
667                                 "$$lang",
668                                 prev_lang))
669                            << lang_command_termination;
670                 }
671
672                 // We need to open a new language if we couldn't close the previous
673                 // one (because there's no language_command_end); and even if we closed
674                 // the previous one, if the current language is different than the
675                 // outer_language (which is currently in effect once the previous one
676                 // is closed).
677                 if ((lang_end_command.empty() || par_lang != outer_lang)
678                         && !par_lang.empty()) {
679                         // If we're inside an inset, and that inset is within an \L or \R
680                         // (or equivalents), then within the inset, too, any opposite
681                         // language paragraph should appear within an \L or \R (in addition
682                         // to, outside of, the normal language switch commands).
683                         // This behavior is not correct for ArabTeX, though.
684                         if (!use_polyglossia
685                             // not for ArabTeX
686                                 && par_language->lang() != "arabic_arabtex"
687                                 && outer_language->lang() != "arabic_arabtex"
688                             // are we in an inset?
689                             && runparams.local_font != 0
690                             // is the inset within an \L or \R?
691                             //
692                             // FIXME: currently, we don't check this; this means that
693                             // we'll have unnnecessary \L and \R commands, but that
694                             // doesn't seem to hurt (though latex will complain)
695                             //
696                             // is this paragraph in the opposite direction?
697                             && runparams.local_font->isRightToLeft() != par_language->rightToLeft()) {
698                                 // FIXME: I don't have a working copy of the Arabi package, so
699                                 // I'm not sure if the farsi and arabic_arabi stuff is correct
700                                 // or not...
701                                 if (par_language->lang() == "farsi")
702                                         os << "\\textFR{";
703                                 else if (outer_language->lang() == "farsi")
704                                         os << "\\textLR{";
705                                 else if (par_language->lang() == "arabic_arabi")
706                                         os << "\\textAR{";
707                                 else if (outer_language->lang() == "arabic_arabi")
708                                         os << "\\textLR{";
709                                 // remaining RTL languages currently is hebrew
710                                 else if (par_language->rightToLeft())
711                                         os << "\\R{";
712                                 else
713                                         os << "\\L{";
714                         }
715                         // With CJK, the CJK tag has to be closed first (see below)
716                         if (runparams.encoding->package() != Encoding::CJK
717                             && !par_lang.empty()) {
718                                 os << from_ascii(subst(
719                                         lang_begin_command,
720                                         "$$lang",
721                                         par_lang));
722                                 if (use_polyglossia
723                                     && !par_language->polyglossiaOpts().empty())
724                                                 os << "["
725                                                   << from_ascii(par_language->polyglossiaOpts())
726                                                   << "]";
727                                 os << lang_command_termination;
728                         }
729                 }
730         }
731
732         // Switch file encoding if necessary; no need to do this for "default"
733         // encoding, since this only affects the position of the outputted
734         // \inputencoding command; the encoding switch will occur when necessary
735         if (bparams.inputenc == "auto"
736                 && runparams.encoding->package() != Encoding::none) {
737                 // Look ahead for future encoding changes.
738                 // We try to output them at the beginning of the paragraph,
739                 // since the \inputencoding command is not allowed e.g. in
740                 // sections. For this reason we only set runparams.moving_arg
741                 // after checking for the encoding change, otherwise the
742                 // change would be always avoided by switchEncoding().
743                 for (pos_type i = 0; i < par.size(); ++i) {
744                         char_type const c = par.getChar(i);
745                         Encoding const * const encoding =
746                                 par.getFontSettings(bparams, i).language()->encoding();
747                         if (encoding->package() != Encoding::CJK
748                                 && runparams.encoding->package() == Encoding::inputenc
749                                 && isASCII(c))
750                                 continue;
751                         if (par.isInset(i))
752                                 break;
753                         // All characters before c are in the ASCII range, and
754                         // c is non-ASCII (but no inset), so change the
755                         // encoding to that required by the language of c.
756                         // With CJK, only add switch if we have CJK content at the beginning
757                         // of the paragraph
758                         if (i != 0 && encoding->package() == Encoding::CJK)
759                                 continue;
760
761                         pair<bool, int> enc_switch = switchEncoding(os.os(),
762                                                 bparams, runparams, *encoding);
763                         // the following is necessary after a CJK environment in a multilingual
764                         // context (nesting issue).
765                         if (par_language->encoding()->package() == Encoding::CJK
766                                 && open_encoding_ != CJK && cjk_inherited_ == 0) {
767                                 os << "\\begin{CJK}{" << from_ascii(par_language->encoding()->latexName())
768                                    << "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
769                                 open_encoding_ = CJK;
770                         }
771                         if (encoding->package() != Encoding::none && enc_switch.first) {
772                                 if (enc_switch.second > 0) {
773                                         // the '%' is necessary to prevent unwanted whitespace
774                                         os << "%\n";
775                                 }
776                                 // With CJK, the CJK tag had to be closed first (see above)
777                                 if (runparams.encoding->package() == Encoding::CJK
778                                     && !par_lang.empty()) {
779                                         os << from_ascii(subst(
780                                                 lang_begin_command,
781                                                 "$$lang",
782                                                 par_lang))
783                                         << lang_command_termination;
784                                 }
785                                 runparams.encoding = encoding;
786                         }
787                         break;
788                 }
789         }
790
791         runparams.moving_arg |= style.needprotect;
792         Encoding const * const prev_encoding = runparams.encoding;
793
794         bool const useSetSpace = bparams.documentClass().provides("SetSpace");
795         if (par.allowParagraphCustomization()) {
796                 if (par.params().startOfAppendix()) {
797                         os << "\\appendix\n";
798                 }
799
800                 if (!par.params().spacing().isDefault()
801                         && (pit == 0 || !priorpar->hasSameLayout(par)))
802                 {
803                         os << from_ascii(par.params().spacing().writeEnvirBegin(useSetSpace))
804                             << '\n';
805                 }
806
807                 if (style.isCommand()) {
808                         os << '\n';
809                 }
810         }
811
812         parStartCommand(par, os, runparams, style);
813         Font const outerfont = text.outerFont(pit);
814
815         // FIXME UNICODE
816         os << from_utf8(everypar);
817         par.latex(bparams, outerfont, os, runparams, start_pos, end_pos);
818
819         // Make sure that \\par is done with the font of the last
820         // character if this has another size as the default.
821         // This is necessary because LaTeX (and LyX on the screen)
822         // calculates the space between the baselines according
823         // to this font. (Matthias)
824         //
825         // Is this really needed ? (Dekel)
826         // We do not need to use to change the font for the last paragraph
827         // or for a command.
828
829         Font const font = par.empty()
830                  ? par.getLayoutFont(bparams, outerfont)
831                  : par.getFont(bparams, par.size() - 1, outerfont);
832
833         bool const is_command = style.isCommand();
834
835         if (style.resfont.size() != font.fontInfo().size()
836             && nextpar
837             && !is_command) {
838                 os << '{';
839                 os << "\\" << from_ascii(font.latexSize()) << " \\par}";
840         } else if (is_command) {
841                 os << '}';
842                 if (!style.postcommandargs().empty())
843                         latexArgInsets(par, os, runparams, style.postcommandargs(), "post:");
844                 if (runparams.encoding != prev_encoding) {
845                         runparams.encoding = prev_encoding;
846                         if (!runparams.isFullUnicode())
847                                 os << setEncoding(prev_encoding->iconvName());
848                 }
849         }
850
851         bool pending_newline = false;
852         bool unskip_newline = false;
853         switch (style.latextype) {
854         case LATEX_ITEM_ENVIRONMENT:
855         case LATEX_LIST_ENVIRONMENT:
856                 if (nextpar && (par.params().depth() < nextpar->params().depth()))
857                         pending_newline = true;
858                 break;
859         case LATEX_ENVIRONMENT: {
860                 // if its the last paragraph of the current environment
861                 // skip it otherwise fall through
862                 if (nextpar
863                         && (nextpar->layout() != par.layout()
864                         || nextpar->params().depth() != par.params().depth()))
865                         break;
866         }
867
868         // fall through possible
869         default:
870                 // we don't need it for the last paragraph!!!
871                 if (nextpar)
872                         pending_newline = true;
873         }
874
875         if (par.allowParagraphCustomization()) {
876                 if (!par.params().spacing().isDefault()
877                         && (runparams.isLastPar || !nextpar->hasSameLayout(par))) {
878                         if (pending_newline)
879                                 os << '\n';
880                         os << from_ascii(par.params().spacing().writeEnvirEnd(useSetSpace));
881                         pending_newline = true;
882                 }
883         }
884
885         // Closing the language is needed for the last paragraph; it is also
886         // needed if we're within an \L or \R that we may have opened above (not
887         // necessarily in this paragraph) and are about to close.
888         bool closing_rtl_ltr_environment = !use_polyglossia
889                 // not for ArabTeX
890                 && (par_language->lang() != "arabic_arabtex"
891                     && outer_language->lang() != "arabic_arabtex")
892                 // have we opened an \L or \R environment?
893                 && runparams.local_font != 0
894                 && runparams.local_font->isRightToLeft() != par_language->rightToLeft()
895                 // are we about to close the language?
896                 &&((nextpar && par_language->babel() != (nextpar->getParLanguage(bparams))->babel())
897                    || (runparams.isLastPar && par_language->babel() != outer_language->babel()));
898
899         if (closing_rtl_ltr_environment
900             || (runparams.isLastPar
901                 && ((!use_polyglossia && par_language->babel() != outer_language->babel())
902                     || (use_polyglossia && par_language->polyglossia() != outer_language->polyglossia())))) {
903                 // Since \selectlanguage write the language to the aux file,
904                 // we need to reset the language at the end of footnote or
905                 // float.
906
907                 if (pending_newline)
908                         os << '\n';
909
910                 // when the paragraph uses CJK, the language has to be closed earlier
911                 if (font.language()->encoding()->package() != Encoding::CJK) {
912                         if (lang_end_command.empty()) {
913                                 // If this is a child, we should restore the
914                                 // master language after the last paragraph.
915                                 Language const * const current_language =
916                                         (runparams.isLastPar && runparams.master_language)
917                                                 ? runparams.master_language
918                                                 : outer_language;
919                                 string const current_lang = use_polyglossia
920                                         ? getPolyglossiaEnvName(current_language)
921                                         : current_language->babel();
922                                 if (!current_lang.empty()) {
923                                         os << from_ascii(subst(
924                                                 lang_begin_command,
925                                                 "$$lang",
926                                                 current_lang));
927                                         pending_newline = !localswitch;
928                                         unskip_newline = !localswitch;
929                                 }
930                         } else if (!par_lang.empty()) {
931                                 os << from_ascii(subst(
932                                         lang_end_command,
933                                         "$$lang",
934                                         par_lang));
935                                 pending_newline = !localswitch;
936                                 unskip_newline = !localswitch;
937                         }
938                 }
939         }
940         if (closing_rtl_ltr_environment)
941                 os << "}";
942
943         if (pending_newline) {
944                 if (unskip_newline)
945                         // prevent unwanted whitespace
946                         os << '%';
947                 os << '\n';
948         }
949
950         // if this is a CJK-paragraph and the next isn't, close CJK
951         // also if the next paragraph is a multilingual environment (because of nesting)
952         if (nextpar
953                 && open_encoding_ == CJK
954                 && (nextpar->getParLanguage(bparams)->encoding()->package() != Encoding::CJK
955                    || (nextpar->layout().isEnvironment() && nextpar->isMultiLingual(bparams)))
956                 // inbetween environments, CJK has to be closed later (nesting!)
957                 && (!style.isEnvironment() || !nextpar->layout().isEnvironment())) {
958                 os << "\\end{CJK}\n";
959                 open_encoding_ = none;
960         }
961
962         // If this is the last paragraph, close the CJK environment
963         // if necessary. If it's an environment, we'll have to \end that first.
964         if (runparams.isLastPar && !style.isEnvironment()) {
965                 switch (open_encoding_) {
966                         case CJK: {
967                                 // do nothing at the end of child documents
968                                 if (maintext && buf.masterBuffer() != &buf)
969                                         break;
970                                 // end of main text
971                                 if (maintext) {
972                                         os << "\n\\end{CJK}\n";
973                                 // end of an inset
974                                 } else
975                                         os << "\\end{CJK}";
976                                 open_encoding_ = none;
977                                 break;
978                         }
979                         case inputenc: {
980                                 os << "\\egroup";
981                                 open_encoding_ = none;
982                                 break;
983                         }
984                         case none:
985                         default:
986                                 // do nothing
987                                 break;
988                 }
989         }
990
991         // If this is the last paragraph, and a local_font was set upon entering
992         // the inset, and we're using "auto" or "default" encoding, the encoding
993         // should be set back to that local_font's encoding.
994         // However, do not change the encoding when a fully unicode aware backend
995         // such as XeTeX is used.
996         if (runparams.isLastPar && runparams_in.local_font != 0
997             && runparams_in.encoding != runparams_in.local_font->language()->encoding()
998             && (bparams.inputenc == "auto" || bparams.inputenc == "default")
999             && (!runparams.isFullUnicode())) {
1000                 runparams_in.encoding = runparams_in.local_font->language()->encoding();
1001                 os << setEncoding(runparams_in.encoding->iconvName());
1002         }
1003         // Otherwise, the current encoding should be set for the next paragraph.
1004         else
1005                 runparams_in.encoding = runparams.encoding;
1006
1007
1008         // we don't need a newline for the last paragraph!!!
1009         // Note from JMarc: we will re-add a \n explicitly in
1010         // TeXEnvironment, because it is needed in this case
1011         if (nextpar) {
1012                 Layout const & next_layout = nextpar->layout();
1013                 if (style == next_layout
1014                     // no blank lines before environments!
1015                     || !next_layout.isEnvironment()
1016                     // unless there's a depth change
1017                     // FIXME What we really want to do here is put every \begin and \end
1018                     // tag on a new line (which was not the case with nested environments).
1019                     // But in the present state of play, we don't have access to the
1020                     // information whether the current TeX row is empty or not.
1021                     // For some ideas about how to fix this, see this thread:
1022                     // http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg145787.html
1023                     || nextpar->params().depth() != par.params().depth()) {
1024                         os << '\n';
1025                 }
1026         }
1027
1028         LYXERR(Debug::LATEX, "TeXOnePar for paragraph " << pit << " done; ptr "
1029                 << &par << " next " << nextpar);
1030
1031         return;
1032 }
1033
1034
1035 // LaTeX all paragraphs
1036 void latexParagraphs(Buffer const & buf,
1037                      Text const & text,
1038                      otexstream & os,
1039                      OutputParams const & runparams,
1040                      string const & everypar)
1041 {
1042         LASSERT(runparams.par_begin <= runparams.par_end,
1043                 { os << "% LaTeX Output Error\n"; return; } );
1044
1045         BufferParams const & bparams = buf.params();
1046
1047         bool const maintext = text.isMainText();
1048         bool const is_child = buf.masterBuffer() != &buf;
1049
1050         // Open a CJK environment at the beginning of the main buffer
1051         // if the document's language is a CJK language
1052         // (but not in child documents)
1053         if (maintext && !is_child
1054             && bparams.encoding().package() == Encoding::CJK) {
1055                 os << "\\begin{CJK}{" << from_ascii(bparams.encoding().latexName())
1056                 << "}{" << from_ascii(bparams.fonts_cjk) << "}%\n";
1057                 open_encoding_ = CJK;
1058         }
1059         // if "auto begin" is switched off, explicitly switch the
1060         // language on at start
1061         string const mainlang = runparams.use_polyglossia
1062                 ? getPolyglossiaEnvName(bparams.language)
1063                 : bparams.language->babel();
1064         string const lang_begin_command = runparams.use_polyglossia ?
1065                 "\\begin{$$lang}" : lyxrc.language_command_begin;
1066
1067         if (maintext && !lyxrc.language_auto_begin &&
1068             !mainlang.empty()) {
1069                 // FIXME UNICODE
1070                 os << from_utf8(subst(lang_begin_command,
1071                                         "$$lang",
1072                                         mainlang));
1073                 if (runparams.use_polyglossia
1074                     && !bparams.language->polyglossiaOpts().empty())
1075                         os << "["
1076                             << from_ascii(bparams.language->polyglossiaOpts())
1077                             << "]";
1078                 os << '\n';
1079         }
1080
1081         ParagraphList const & paragraphs = text.paragraphs();
1082
1083         if (runparams.par_begin == runparams.par_end) {
1084                 // The full doc will be exported but it is easier to just rely on
1085                 // runparams range parameters that will be passed TeXEnvironment.
1086                 runparams.par_begin = 0;
1087                 runparams.par_end = paragraphs.size();
1088         }
1089
1090         pit_type pit = runparams.par_begin;
1091         // lastpit is for the language check after the loop.
1092         pit_type lastpit = pit;
1093         // variables used in the loop:
1094         bool was_title = false;
1095         bool already_title = false;
1096         DocumentClass const & tclass = bparams.documentClass();
1097
1098         for (; pit < runparams.par_end; ++pit) {
1099                 lastpit = pit;
1100                 ParagraphList::const_iterator par = paragraphs.constIterator(pit);
1101
1102                 // FIXME This check should not be needed. We should
1103                 // perhaps issue an error if it is.
1104                 Layout const & layout = text.inset().forcePlainLayout() ?
1105                                 tclass.plainLayout() : par->layout();
1106
1107                 if (layout.intitle) {
1108                         if (already_title) {
1109                                 LYXERR0("Error in latexParagraphs: You"
1110                                         " should not mix title layouts"
1111                                         " with normal ones.");
1112                         } else if (!was_title) {
1113                                 was_title = true;
1114                                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
1115                                         os << "\\begin{"
1116                                                         << from_ascii(tclass.titlename())
1117                                                         << "}\n";
1118                                 }
1119                         }
1120                 } else if (was_title && !already_title) {
1121                         if (tclass.titletype() == TITLE_ENVIRONMENT) {
1122                                 os << "\\end{" << from_ascii(tclass.titlename())
1123                                                 << "}\n";
1124                         }
1125                         else {
1126                                 os << "\\" << from_ascii(tclass.titlename())
1127                                                 << "\n";
1128                         }
1129                         already_title = true;
1130                         was_title = false;
1131                 }
1132
1133
1134                 if (!layout.isEnvironment() && par->params().leftIndent().zero()) {
1135                         // This is a standard top level paragraph, TeX it and continue.
1136                         TeXOnePar(buf, text, pit, os, runparams, everypar);
1137                         continue;
1138                 }
1139                 
1140                 TeXEnvironmentData const data =
1141                         prepareEnvironment(buf, text, par, os, runparams);
1142                 // pit can be changed in TeXEnvironment.
1143                 TeXEnvironment(buf, text, runparams, pit, os);
1144                 finishEnvironment(os, runparams, data);
1145         }
1146
1147         if (pit == runparams.par_end) {
1148                         // Make sure that the last paragraph is
1149                         // correctly terminated (because TeXOnePar does
1150                         // not add a \n in this case)
1151                         //os << '\n';
1152         }
1153
1154         // It might be that we only have a title in this document
1155         if (was_title && !already_title) {
1156                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
1157                         os << "\\end{" << from_ascii(tclass.titlename())
1158                            << "}\n";
1159                 } else {
1160                         os << "\\" << from_ascii(tclass.titlename())
1161                            << "\n";
1162                 }
1163         }
1164
1165         // if "auto end" is switched off, explicitly close the language at the end
1166         // but only if the last par is in a babel language
1167         string const lang_end_command = runparams.use_polyglossia ?
1168                 "\\end{$$lang}" : lyxrc.language_command_end;
1169         if (maintext && !lyxrc.language_auto_end && !mainlang.empty() &&
1170                 paragraphs.at(lastpit).getParLanguage(bparams)->encoding()->package() != Encoding::CJK) {
1171                 os << from_utf8(subst(lang_end_command,
1172                                         "$$lang",
1173                                         mainlang))
1174                         << '\n';
1175         }
1176
1177         // If the last paragraph is an environment, we'll have to close
1178         // CJK at the very end to do proper nesting.
1179         if (maintext && !is_child && open_encoding_ == CJK) {
1180                 os << "\\end{CJK}\n";
1181                 open_encoding_ = none;
1182         }
1183
1184         // reset inherited encoding
1185         if (cjk_inherited_ > 0) {
1186                 cjk_inherited_ -= 1;
1187                 if (cjk_inherited_ == 0)
1188                         open_encoding_ = CJK;
1189         }
1190 }
1191
1192
1193 pair<bool, int> switchEncoding(odocstream & os, BufferParams const & bparams,
1194                    OutputParams const & runparams, Encoding const & newEnc,
1195                    bool force)
1196 {
1197         Encoding const & oldEnc = *runparams.encoding;
1198         bool moving_arg = runparams.moving_arg;
1199         // If we switch from/to CJK, we need to switch anyway, despite custom inputenc
1200         bool const from_to_cjk = 
1201                 (oldEnc.package() == Encoding::CJK && newEnc.package() != Encoding::CJK)
1202                 || (oldEnc.package() != Encoding::CJK && newEnc.package() == Encoding::CJK);
1203         if (!force && !from_to_cjk
1204             && ((bparams.inputenc != "auto" && bparams.inputenc != "default") || moving_arg))
1205                 return make_pair(false, 0);
1206
1207         // Do nothing if the encoding is unchanged.
1208         if (oldEnc.name() == newEnc.name())
1209                 return make_pair(false, 0);
1210
1211         // FIXME We ignore encoding switches from/to encodings that do
1212         // neither support the inputenc package nor the CJK package here.
1213         // This does of course only work in special cases (e.g. switch from
1214         // tis620-0 to latin1, but the text in latin1 contains ASCII only),
1215         // but it is the best we can do
1216         if (oldEnc.package() == Encoding::none
1217                 || newEnc.package() == Encoding::none)
1218                 return make_pair(false, 0);
1219
1220         LYXERR(Debug::LATEX, "Changing LaTeX encoding from "
1221                 << oldEnc.name() << " to " << newEnc.name());
1222         os << setEncoding(newEnc.iconvName());
1223         if (bparams.inputenc == "default")
1224                 return make_pair(true, 0);
1225
1226         docstring const inputenc_arg(from_ascii(newEnc.latexName()));
1227         switch (newEnc.package()) {
1228                 case Encoding::none:
1229                 case Encoding::japanese:
1230                         // shouldn't ever reach here, see above
1231                         return make_pair(true, 0);
1232                 case Encoding::inputenc: {
1233                         int count = inputenc_arg.length();
1234                         if (oldEnc.package() == Encoding::CJK &&
1235                             open_encoding_ == CJK) {
1236                                 os << "\\end{CJK}";
1237                                 open_encoding_ = none;
1238                                 count += 9;
1239                         }
1240                         else if (oldEnc.package() == Encoding::inputenc &&
1241                                  open_encoding_ == inputenc) {
1242                                 os << "\\egroup";
1243                                 open_encoding_ = none;
1244                                 count += 7;
1245                         }
1246                         if (runparams.local_font != 0
1247                             &&  oldEnc.package() == Encoding::CJK) {
1248                                 // within insets, \inputenc switches need
1249                                 // to be embraced within \bgroup...\egroup;
1250                                 // else CJK fails.
1251                                 os << "\\bgroup";
1252                                 count += 7;
1253                                 open_encoding_ = inputenc;
1254                         }
1255                         // with the japanese option, inputenc is omitted.
1256                         if (runparams.use_japanese)
1257                                 return make_pair(true, count);
1258                         os << "\\inputencoding{" << inputenc_arg << '}';
1259                         return make_pair(true, count + 16);
1260                 }
1261                 case Encoding::CJK: {
1262                         int count = inputenc_arg.length();
1263                         if (oldEnc.package() == Encoding::CJK &&
1264                             open_encoding_ == CJK) {
1265                                 os << "\\end{CJK}";
1266                                 count += 9;
1267                         }
1268                         if (oldEnc.package() == Encoding::inputenc &&
1269                             open_encoding_ == inputenc) {
1270                                 os << "\\egroup";
1271                                 count += 7;
1272                         }
1273                         os << "\\begin{CJK}{" << inputenc_arg << "}{"
1274                            << from_ascii(bparams.fonts_cjk) << "}";
1275                         open_encoding_ = CJK;
1276                         return make_pair(true, count + 15);
1277                 }
1278         }
1279         // Dead code to avoid a warning:
1280         return make_pair(true, 0);
1281
1282 }
1283
1284 } // namespace lyx