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