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