]> git.lyx.org Git - features.git/blob - src/LaTeXFeatures.cpp
Remove problematic workaround for "exotic" problem
[features.git] / src / LaTeXFeatures.cpp
1 /**
2  * \file LaTeXFeatures.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author José Matos
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author Jürgen Vigna
10  * \author André Pönitz
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "LaTeXFeatures.h"
18
19 #include "Buffer.h"
20 #include "BufferParams.h"
21 #include "ColorSet.h"
22 #include "Converter.h"
23 #include "Encoding.h"
24 #include "Floating.h"
25 #include "FloatList.h"
26 #include "Language.h"
27 #include "LaTeXFonts.h"
28 #include "LaTeXPackages.h"
29 #include "Layout.h"
30 #include "Lexer.h"
31 #include "LyXRC.h"
32 #include "TextClass.h"
33
34 #include "insets/InsetLayout.h"
35
36 #include "support/debug.h"
37 #include "support/docstream.h"
38 #include "support/FileName.h"
39 #include "support/filetools.h"
40 #include "support/gettext.h"
41 #include "support/lstrings.h"
42 #include "support/regex.h"
43
44 #include <algorithm>
45
46
47 using namespace std;
48 using namespace lyx::support;
49
50
51 namespace lyx {
52
53 /////////////////////////////////////////////////////////////////////
54 //
55 // Strings
56 //
57 /////////////////////////////////////////////////////////////////////
58
59 //\NeedsTeXFormat{LaTeX2e}
60 //\ProvidesPackage{lyx}[1996/01/11 LLE v0.2 (LyX LaTeX Extensions)]
61 //\message{LyX LaTeX Extensions (LLE v0.2) of 11-Jan-1996.}
62
63 static docstring const lyx_def = from_ascii(
64         "\\providecommand{\\LyX}{L\\kern-.1667em\\lower.25em\\hbox{Y}\\kern-.125emX\\@}");
65
66 static docstring const lyx_hyperref_def = from_ascii(
67         "\\providecommand{\\LyX}{\\texorpdfstring%\n"
68         "  {L\\kern-.1667em\\lower.25em\\hbox{Y}\\kern-.125emX\\@}\n"
69         "  {LyX}}");
70
71 static docstring const noun_def = from_ascii(
72         "\\newcommand{\\noun}[1]{\\textsc{#1}}");
73
74 static docstring const lyxarrow_def = from_ascii(
75         "\\DeclareRobustCommand*{\\lyxarrow}{%\n"
76         "\\@ifstar\n"
77         "{\\leavevmode\\,$\\triangleleft$\\,\\allowbreak}\n"
78         "{\\leavevmode\\,$\\triangleright$\\,\\allowbreak}}");
79
80 // for quotes without babel. This does not give perfect results, but
81 // anybody serious about non-english quotes should use babel (JMarc).
82
83 static docstring const quotedblbase_def = from_ascii(
84         "\\ProvideTextCommandDefault{\\quotedblbase}{%\n"
85         "  \\raisebox{-1.4ex}[1ex][.5ex]{\\textquotedblright}%\n"
86         "  \\penalty10000\\hskip0em\\relax%\n"
87         "}");
88
89 static docstring const quotesinglbase_def = from_ascii(
90         "\\ProvideTextCommandDefault{\\quotesinglbase}{%\n"
91         "  \\raisebox{-1.4ex}[1ex][.5ex]{\\textquoteright}%\n"
92         "  \\penalty10000\\hskip0em\\relax%\n"
93         "}");
94
95 static docstring const guillemotleft_def = from_ascii(
96         "\\ProvideTextCommandDefault{\\guillemotleft}{%\n"
97         "  {\\usefont{U}{lasy}{m}{n}\\char'50\\kern-.15em\\char'50}%\n"
98         "\\penalty10000\\hskip0pt\\relax%\n"
99         "}");
100
101 static docstring const guillemotright_def = from_ascii(
102         "\\ProvideTextCommandDefault{\\guillemotright}{%\n"
103         "  \\penalty10000\\hskip0pt%\n"
104         "  {\\usefont{U}{lasy}{m}{n}\\char'51\\kern-.15em\\char'51}%\n"
105         "}");
106
107 static docstring const guilsinglleft_def = from_ascii(
108         "\\ProvideTextCommandDefault{\\guilsinglleft}{%\n"
109         "  {\\usefont{U}{lasy}{m}{n}\\char'50}%\n"
110         "  \\penalty10000\\hskip0pt\\relax%\n"
111         "}");
112
113 static docstring const guilsinglright_def = from_ascii(
114         "\\ProvideTextCommandDefault{\\guilsinglright}{%\n"
115         "  \\penalty10000\\hskip0pt%\n"
116         "  {\\usefont{U}{lasy}{m}{n}\\char'51}%\n"
117         "}");
118
119 static docstring const paragraphleftindent_def = from_ascii(
120         "\\newenvironment{LyXParagraphLeftIndent}[1]%\n"
121         "{\n"
122         "  \\begin{list}{}{%\n"
123         "    \\setlength{\\topsep}{0pt}%\n"
124         "    \\addtolength{\\leftmargin}{#1}\n"
125 // ho hum, yet more things commented out with no hint as to why they
126 // weren't just removed
127 //      "%%    \\addtolength{\\leftmargin}{#1\\textwidth}\n"
128 //      "%%    \\setlength{\\textwidth}{#2\\textwidth}\n"
129 //      "%%    \\setlength\\listparindent\\parindent%\n"
130 //      "%%    \\setlength\\itemindent\\parindent%\n"
131         "    \\setlength{\\parsep}{0pt plus 1pt}%\n"
132         "  }\n"
133         "  \\item[]\n"
134         "}\n"
135         "{\\end{list}}\n");
136
137 static docstring const binom_def = from_ascii(
138         "%% Binom macro for standard LaTeX users\n"
139         "\\newcommand{\\binom}[2]{{#1 \\choose #2}}\n");
140
141 static docstring const mathcircumflex_def = from_ascii(
142         "%% For printing a cirumflex inside a formula\n"
143         "\\newcommand{\\mathcircumflex}[0]{\\mbox{\\^{}}}\n");
144
145 static docstring const tabularnewline_def = from_ascii(
146         "%% Because html converters don't know tabularnewline\n"
147         "\\providecommand{\\tabularnewline}{\\\\}\n");
148
149 static docstring const lyxgreyedout_def = from_ascii(
150         "%% The greyedout annotation environment\n"
151         "\\newenvironment{lyxgreyedout}\n"
152         "  {\\textcolor{note_fontcolor}\\bgroup\\ignorespaces}\n"
153         "  {\\ignorespacesafterend\\egroup}\n");
154
155 // We want to omit the file extension for includegraphics, but this does not
156 // work when the filename contains other dots.
157 // Idea from http://www.tex.ac.uk/cgi-bin/texfaq2html?label=unkgrfextn
158 static docstring const lyxdot_def = from_ascii(
159         "%% A simple dot to overcome graphicx limitations\n"
160         "\\newcommand{\\lyxdot}{.}\n");
161
162 static docstring const changetracking_dvipost_def = from_ascii(
163         "%% Change tracking with dvipost\n"
164         "\\dvipostlayout\n"
165         "\\dvipost{osstart color push Red}\n"
166         "\\dvipost{osend color pop}\n"
167         "\\dvipost{cbstart color push Blue}\n"
168         "\\dvipost{cbend color pop}\n"
169         "\\DeclareRobustCommand{\\lyxadded}[3]{\\changestart#3\\changeend}\n"
170         "\\DeclareRobustCommand{\\lyxdeleted}[3]{%\n"
171         "\\changestart\\overstrikeon#3\\overstrikeoff\\changeend}\n");
172
173 static docstring const changetracking_xcolor_ulem_def = from_ascii(
174         "%% Change tracking with ulem\n"
175         "\\DeclareRobustCommand{\\lyxadded}[3]{{\\color{lyxadded}{}#3}}\n"
176         "\\DeclareRobustCommand{\\lyxdeleted}[3]{{\\color{lyxdeleted}\\sout{#3}}}\n");
177
178 static docstring const changetracking_xcolor_ulem_hyperref_def = from_ascii(
179         "%% Change tracking with ulem\n"
180         "\\DeclareRobustCommand{\\lyxadded}[3]{{\\texorpdfstring{\\color{lyxadded}{}}{}#3}}\n"
181         "\\DeclareRobustCommand{\\lyxdeleted}[3]{{\\texorpdfstring{\\color{lyxdeleted}\\sout{#3}}{}}}\n");
182
183 static docstring const changetracking_none_def = from_ascii(
184         "\\newcommand{\\lyxadded}[3]{#3}\n"
185         "\\newcommand{\\lyxdeleted}[3]{}\n");
186
187 static docstring const textgreek_LGR_def = from_ascii(
188         "\\DeclareFontEncoding{LGR}{}{}\n");
189 static docstring const textgreek_def = from_ascii(
190         "\\DeclareRobustCommand{\\greektext}{%\n"
191         "  \\fontencoding{LGR}\\selectfont\\def\\encodingdefault{LGR}}\n"
192         "\\DeclareRobustCommand{\\textgreek}[1]{\\leavevmode{\\greektext #1}}\n"
193         "\\ProvideTextCommand{\\~}{LGR}[1]{\\char126#1}\n");
194
195 static docstring const textcyr_T2A_def = from_ascii(
196         "\\InputIfFileExists{t2aenc.def}{}{%\n"
197         "  \\errmessage{File `t2aenc.def' not found: Cyrillic script not supported}}\n");
198 static docstring const textcyr_def = from_ascii(
199         "\\DeclareRobustCommand{\\cyrtext}{%\n"
200         "  \\fontencoding{T2A}\\selectfont\\def\\encodingdefault{T2A}}\n"
201         "\\DeclareRobustCommand{\\textcyr}[1]{\\leavevmode{\\cyrtext #1}}\n");
202
203 static docstring const lyxmathsym_def = from_ascii(
204         "\\newcommand{\\lyxmathsym}[1]{\\ifmmode\\begingroup\\def\\b@ld{bold}\n"
205         "  \\text{\\ifx\\math@version\\b@ld\\bfseries\\fi#1}\\endgroup\\else#1\\fi}\n");
206
207 static docstring const papersizedvi_def = from_ascii(
208         "\\special{papersize=\\the\\paperwidth,\\the\\paperheight}\n");
209
210 static docstring const papersizepdf_def = from_ascii(
211         "\\pdfpageheight\\paperheight\n"
212         "\\pdfpagewidth\\paperwidth\n");
213
214 static docstring const cedilla_def = from_ascii(
215         "\\newcommand{\\docedilla}[2]{\\underaccent{#1\\mathchar'30}{#2}}\n"
216         "\\newcommand{\\cedilla}[1]{\\mathpalette\\docedilla{#1}}\n");
217
218 static docstring const subring_def = from_ascii(
219         "\\newcommand{\\dosubring}[2]{\\underaccent{#1\\mathchar'27}{#2}}\n"
220         "\\newcommand{\\subring}[1]{\\mathpalette\\dosubring{#1}}\n");
221
222 static docstring const subdot_def = from_ascii(
223         "\\newcommand{\\dosubdot}[2]{\\underaccent{#1.}{#2}}\n"
224         "\\newcommand{\\subdot}[1]{\\mathpalette\\dosubdot{#1}}\n");
225
226 static docstring const subhat_def = from_ascii(
227         "\\newcommand{\\dosubhat}[2]{\\underaccent{#1\\mathchar'136}{#2}}\n"
228         "\\newcommand{\\subhat}[1]{\\mathpalette\\dosubhat{#1}}\n");
229
230 static docstring const subtilde_def = from_ascii(
231         "\\newcommand{\\dosubtilde}[2]{\\underaccent{#1\\mathchar'176}{#2}}\n"
232         "\\newcommand{\\subtilde}[1]{\\mathpalette\\dosubtilde{#1}}\n");
233
234 static docstring const dacute_def = from_ascii(
235         "\\DeclareMathAccent{\\dacute}{\\mathalpha}{operators}{'175}\n");
236
237 static docstring const tipasymb_def = from_ascii(
238         "\\DeclareFontEncoding{T3}{}{}\n"
239         "\\DeclareSymbolFont{tipasymb}{T3}{cmr}{m}{n}\n");
240
241 static docstring const dgrave_def = from_ascii(
242         "\\DeclareMathAccent{\\dgrave}{\\mathord}{tipasymb}{'15}\n");
243
244 static docstring const rcap_def = from_ascii(
245         "\\DeclareMathAccent{\\rcap}{\\mathord}{tipasymb}{'20}\n");
246
247 static docstring const ogonek_def = from_ascii(
248         "\\newcommand{\\doogonek}[2]{\\setbox0=\\hbox{$#1#2$}\\underaccent{#1\\mkern-6mu\n"
249         "  \\ifx#2O\\hskip0.5\\wd0\\else\\ifx#2U\\hskip0.5\\wd0\\else\\hskip\\wd0\\fi\\fi\n"
250         "  \\ifx#2o\\mkern-2mu\\else\\ifx#2e\\mkern-1mu\\fi\\fi\n"
251         "  \\mathchar\"0\\hexnumber@\\symtipasymb0C}{#2}}\n"
252         "\\newcommand{\\ogonek}[1]{\\mathpalette\\doogonek{#1}}\n");
253
254 static docstring const lyxaccent_def = from_ascii(
255         "%% custom text accent \\LyxTextAccent[<rise value (length)>]{<accent>}{<base>}\n"
256         "\\newcommand*{\\LyxTextAccent}[3][0ex]{%\n"
257         "  \\hmode@bgroup\\ooalign{\\null#3\\crcr\\hidewidth\n"
258         "  \\raise#1\\hbox{#2}\\hidewidth}\\egroup}\n"
259         "%% select a font size smaller than the current font size:\n"
260         "\\newcommand{\\LyxAccentSize}[1][\\sf@size]{%\n"
261         "  \\check@mathfonts\\fontsize#1\\z@\\math@fontsfalse\\selectfont\n"
262         "}\n");
263
264 static docstring const textcommabelow_def = from_ascii(
265         "\\ProvideTextCommandDefault{\\textcommabelow}[1]{%%\n"
266         "  \\LyxTextAccent[-.31ex]{\\LyxAccentSize,}{#1}}\n");
267
268 static docstring const textcommaabove_def = from_ascii(
269         "\\ProvideTextCommandDefault{\\textcommaabove}[1]{%%\n"
270         "  \\LyxTextAccent[.5ex]{\\LyxAccentSize`}{#1}}\n");
271
272 static docstring const textcommaaboveright_def = from_ascii(
273         "\\ProvideTextCommandDefault{\\textcommaaboveright}[1]{%%\n"
274         "  \\LyxTextAccent[.5ex]{\\LyxAccentSize\\ `}{#1}}\n");
275
276 // Baltic languages use a comma-accent instead of a cedilla
277 static docstring const textbaltic_def = from_ascii(
278         "%% use comma accent instead of cedilla for these characters:\n"
279         "\\DeclareTextCompositeCommand{\\c}{T1}{g}{\\textcommaabove{g}}\n"
280         "\\DeclareTextCompositeCommand{\\c}{T1}{G}{\\textcommabelow{G}}\n"
281         "\\DeclareTextCompositeCommand{\\c}{T1}{k}{\\textcommabelow{k}}\n"
282         "\\DeclareTextCompositeCommand{\\c}{T1}{K}{\\textcommabelow{K}}\n"
283         "\\DeclareTextCompositeCommand{\\c}{T1}{l}{\\textcommabelow{l}}\n"
284         "\\DeclareTextCompositeCommand{\\c}{T1}{L}{\\textcommabelow{L}}\n"
285         "\\DeclareTextCompositeCommand{\\c}{T1}{n}{\\textcommabelow{n}}\n"
286         "\\DeclareTextCompositeCommand{\\c}{T1}{N}{\\textcommabelow{N}}\n"
287         "\\DeclareTextCompositeCommand{\\c}{T1}{r}{\\textcommabelow{r}}\n"
288         "\\DeclareTextCompositeCommand{\\c}{T1}{R}{\\textcommabelow{R}}\n");
289
290 static docstring const lyxref_def = from_ascii(
291                 "\\RS@ifundefined{subsecref}\n"
292                 "  {\\newref{subsec}{name = \\RSsectxt}}\n"
293                 "  {}\n"
294                 "\\RS@ifundefined{thmref}\n"
295                 "  {\\def\\RSthmtxt{theorem~}\\newref{thm}{name = \\RSthmtxt}}\n"
296                 "  {}\n"
297                 "\\RS@ifundefined{lemref}\n"
298                 "  {\\def\\RSlemtxt{lemma~}\\newref{lem}{name = \\RSlemtxt}}\n"
299                 "  {}\n");
300
301 // Make sure the columns are also outputed as rtl
302 static docstring const rtloutputdblcol_def = from_ascii(
303         "\\def\\@outputdblcol{%\n"
304         "  \\if@firstcolumn\n"
305         "    \\global \\@firstcolumnfalse\n"
306         "    \\global \\setbox\\@leftcolumn \\box\\@outputbox\n"
307         "  \\else\n"
308         "    \\global \\@firstcolumntrue\n"
309         "    \\setbox\\@outputbox \\vbox {%\n"
310         "      \\hb@xt@\\textwidth {%\n"
311         "      \\kern\\textwidth \\kern-\\columnwidth %**\n"
312         "      \\hb@xt@\\columnwidth {%\n"
313         "         \\box\\@leftcolumn \\hss}%\n"
314         "      \\kern-\\textwidth %**\n"
315         "      \\hfil\n"
316         "      {\\normalcolor\\vrule \\@width\\columnseprule}%\n"
317         "      \\hfil\n"
318         "      \\kern-\\textwidth  %**\n"
319         "      \\hb@xt@\\columnwidth {%\n"
320         "         \\box\\@outputbox \\hss}%\n"
321         "      \\kern-\\columnwidth \\kern\\textwidth %**\n"
322         "    }%\n"
323         "  }%\n"
324         "  \\@combinedblfloats\n"
325         "  \\@outputpage\n"
326         "  \\begingroup\n"
327         "  \\@dblfloatplacement\n"
328         "  \\@startdblcolumn\n"
329         "  \\@whilesw\\if@fcolmade \\fi\n"
330         "  {\\@outputpage\n"
331         "    \\@startdblcolumn}%\n"
332         "  \\endgroup\n"
333         "  \\fi\n"
334         "}\n"
335         "\\@mparswitchtrue\n");
336
337
338 /////////////////////////////////////////////////////////////////////
339 //
340 // LyXHTML strings
341 //
342 /////////////////////////////////////////////////////////////////////
343
344 static docstring const lyxnoun_style = from_ascii(
345         "dfn.lyxnoun {\n"
346         "  font-variant: small-caps;\n"
347         "}\n");
348
349
350 // this is how it normally renders, but it might not always do so.
351 static docstring const lyxstrikeout_style = from_ascii(
352         "del.strikeout {\n"
353         "  text-decoration: line-through;\n"
354         "}\n");
355
356
357 /////////////////////////////////////////////////////////////////////
358 //
359 // LaTeXFeatures
360 //
361 /////////////////////////////////////////////////////////////////////
362
363
364 LaTeXFeatures::LaTeXFeatures(Buffer const & b, BufferParams const & p,
365                              OutputParams const & r)
366         : buffer_(&b), params_(p), runparams_(r), in_float_(false)
367 {}
368
369
370 LaTeXFeatures::LangPackage LaTeXFeatures::langPackage() const
371 {
372         string const local_lp = bufferParams().lang_package;
373
374         // Locally, custom is just stored as a string
375         // in bufferParams().lang_package.
376         if (local_lp != "auto"
377             && local_lp != "babel"
378             && local_lp != "default"
379             && local_lp != "none")
380                  return LANG_PACK_CUSTOM;
381
382         if (local_lp == "none")
383                 return LANG_PACK_NONE;
384
385         /* If "auto" is selected, we load polyglossia if required,
386          * else we select babel.
387          * If babel is selected (either directly or via the "auto"
388          * mechanism), we really do only require it if we have
389          * a language that needs it.
390          */
391         bool const polyglossia_required =
392                 isRequired("polyglossia")
393                 && isAvailable("polyglossia")
394                 && !isProvided("babel")
395                 && this->hasOnlyPolyglossiaLanguages();
396         bool const babel_required =
397                 !bufferParams().language->babel().empty()
398                 || !this->getBabelLanguages().empty();
399
400         if (local_lp == "auto") {
401                 // polyglossia requirement has priority over babel
402                 if (polyglossia_required)
403                         return LANG_PACK_POLYGLOSSIA;
404                 else if (babel_required)
405                         return LANG_PACK_BABEL;
406         }
407
408         if (local_lp == "babel") {
409                 if (babel_required)
410                         return LANG_PACK_BABEL;
411         }
412
413         if (local_lp == "default") {
414                 switch (lyxrc.language_package_selection) {
415                 case LyXRC::LP_AUTO:
416                         // polyglossia requirement has priority over babel
417                         if (polyglossia_required)
418                                 return LANG_PACK_POLYGLOSSIA;
419                         else if (babel_required)
420                                 return LANG_PACK_BABEL;
421                         break;
422                 case LyXRC::LP_BABEL:
423                         if (babel_required)
424                                 return LANG_PACK_BABEL;
425                         break;
426                 case LyXRC::LP_CUSTOM:
427                         return LANG_PACK_CUSTOM;
428                 case LyXRC::LP_NONE:
429                         return LANG_PACK_NONE;
430                 }
431         }
432
433         return LANG_PACK_NONE;
434 }
435
436
437 void LaTeXFeatures::require(string const & name)
438 {
439         features_.insert(name);
440 }
441
442
443 void LaTeXFeatures::require(set<string> const & names)
444 {
445         features_.insert(names.begin(), names.end());
446 }
447
448
449 void LaTeXFeatures::useLayout(docstring const & layoutname)
450 {
451         useLayout(layoutname, 0);
452 }
453
454
455 void LaTeXFeatures::useLayout(docstring const & layoutname, int level)
456 {
457         // Some code to avoid loops in dependency definition
458         const int maxlevel = 30;
459         if (level > maxlevel) {
460                 lyxerr << "LaTeXFeatures::useLayout: maximum level of "
461                        << "recursion attained by layout "
462                        << to_utf8(layoutname) << endl;
463                 return;
464         }
465
466         DocumentClass const & tclass = params_.documentClass();
467         if (tclass.hasLayout(layoutname)) {
468                 // Is this layout already in usedLayouts?
469                 if (find(usedLayouts_.begin(), usedLayouts_.end(), layoutname)
470                     != usedLayouts_.end())
471                         return;
472
473                 Layout const & layout = tclass[layoutname];
474                 require(layout.requires());
475
476                 if (!layout.depends_on().empty()) {
477                         useLayout(layout.depends_on(), level + 1);
478                 }
479                 usedLayouts_.push_back(layoutname);
480         } else {
481                 lyxerr << "LaTeXFeatures::useLayout: layout `"
482                        << to_utf8(layoutname) << "' does not exist in this class"
483                        << endl;
484         }
485 }
486
487
488 void LaTeXFeatures::useInsetLayout(InsetLayout const & lay)
489 {
490         docstring const & lname = lay.name();
491         DocumentClass const & tclass = params_.documentClass();
492
493         // this is a default inset layout, nothing useful here
494         if (!tclass.hasInsetLayout(lname))
495                 return;
496         // Is this layout already in usedInsetLayouts?
497         if (find(usedInsetLayouts_.begin(), usedInsetLayouts_.end(), lname)
498                         != usedInsetLayouts_.end())
499                 return;
500
501         require(lay.requires());
502         usedInsetLayouts_.push_back(lname);
503 }
504
505
506 bool LaTeXFeatures::isRequired(string const & name) const
507 {
508         return features_.find(name) != features_.end();
509 }
510
511
512 bool LaTeXFeatures::isProvided(string const & name) const
513 {
514         if (params_.useNonTeXFonts)
515                 return params_.documentClass().provides(name);
516
517         bool const ot1 = (params_.font_encoding() == "default"
518                 || params_.font_encoding() == "OT1");
519         bool const complete = (params_.fonts_sans == "default")
520                 && (params_.fonts_typewriter == "default");
521         bool const nomath = (params_.fonts_math == "default");
522         return params_.documentClass().provides(name)
523                 || theLaTeXFonts().getLaTeXFont(
524                         from_ascii(params_.fonts_roman)).provides(name, ot1,
525                                                                   complete,
526                                                                   nomath)
527                 || theLaTeXFonts().getLaTeXFont(
528                         from_ascii(params_.fonts_sans)).provides(name, ot1,
529                                                                  complete,
530                                                                  nomath)
531                 || theLaTeXFonts().getLaTeXFont(
532                         from_ascii(params_.fonts_typewriter)).provides(name, ot1,
533                                                                        complete,
534                                                                        nomath)
535                 || theLaTeXFonts().getLaTeXFont(
536                         from_ascii(params_.fonts_math)).provides(name, ot1,
537                                                                        complete,
538                                                                        nomath);
539         // TODO: "textbaltic" provided, if the font-encoding is "L7x"
540         //       "textgreek" provided, if a language with font-encoding LGR is used in the document
541         //       "textcyr" provided, if a language with font-encoding T2A is used in the document
542 }
543
544
545 bool LaTeXFeatures::mustProvide(string const & name) const
546 {
547         return isRequired(name) && !isProvided(name);
548 }
549
550
551 bool LaTeXFeatures::isAvailable(string const & name)
552 {
553         string::size_type const i = name.find("->");
554         if (i != string::npos) {
555                 string const from = name.substr(0,i);
556                 string const to = name.substr(i+2);
557                 //LYXERR0("from=[" << from << "] to=[" << to << "]");
558                 return theConverters().isReachable(from, to);
559         }
560         return LaTeXPackages::isAvailable(name);
561 }
562
563
564 void LaTeXFeatures::addPreambleSnippet(string const & preamble)
565 {
566         SnippetList::const_iterator begin = preamble_snippets_.begin();
567         SnippetList::const_iterator end   = preamble_snippets_.end();
568         if (find(begin, end, preamble) == end)
569                 preamble_snippets_.push_back(preamble);
570 }
571
572
573 void LaTeXFeatures::addCSSSnippet(std::string const & snippet)
574 {
575         SnippetList::const_iterator begin = css_snippets_.begin();
576         SnippetList::const_iterator end   = css_snippets_.end();
577         if (find(begin, end, snippet) == end)
578                 css_snippets_.push_back(snippet);
579 }
580
581
582 void LaTeXFeatures::useFloat(string const & name, bool subfloat)
583 {
584         if (!usedFloats_[name])
585                 usedFloats_[name] = subfloat;
586         if (subfloat)
587                 require("subfig");
588         // We only need float.sty if we use non builtin floats, or if we
589         // use the "H" modifier. This includes modified table and
590         // figure floats. (Lgb)
591         Floating const & fl = params_.documentClass().floats().getType(name);
592         if (!fl.floattype().empty() && fl.usesFloatPkg()) {
593                 require("float");
594         }
595 }
596
597
598 void LaTeXFeatures::useLanguage(Language const * lang)
599 {
600         if (!lang->babel().empty() || !lang->polyglossia().empty())
601                 UsedLanguages_.insert(lang);
602         if (!lang->requires().empty())
603                 require(lang->requires());
604         // CJK languages do not have a babel name.
605         // They use the CJK package
606         if (lang->encoding()->package() == Encoding::CJK)
607                 require("CJK");
608         // japanese package is special
609         if (lang->encoding()->package() == Encoding::japanese)
610                 require("japanese");
611 }
612
613
614 void LaTeXFeatures::includeFile(docstring const & key, string const & name)
615 {
616         IncludedFiles_[key] = name;
617 }
618
619
620 bool LaTeXFeatures::hasLanguages() const
621 {
622         return !UsedLanguages_.empty();
623 }
624
625
626 bool LaTeXFeatures::hasOnlyPolyglossiaLanguages() const
627 {
628         // first the main language
629         if (params_.language->polyglossia().empty())
630                 return false;
631         // now the secondary languages
632         LanguageList::const_iterator const begin = UsedLanguages_.begin();
633         for (LanguageList::const_iterator cit = begin;
634              cit != UsedLanguages_.end();
635              ++cit) {
636                 if ((*cit)->polyglossia().empty())
637                         return false;
638         }
639         return true;
640 }
641
642
643 bool LaTeXFeatures::hasPolyglossiaExclusiveLanguages() const
644 {
645         // first the main language
646         if (params_.language->isPolyglossiaExclusive())
647                 return true;
648         // now the secondary languages
649         LanguageList::const_iterator const begin = UsedLanguages_.begin();
650         for (LanguageList::const_iterator cit = begin;
651              cit != UsedLanguages_.end();
652              ++cit) {
653                 if ((*cit)->isPolyglossiaExclusive())
654                         return true;
655         }
656         return false;
657 }
658
659
660 string LaTeXFeatures::getBabelLanguages() const
661 {
662         ostringstream languages;
663
664         bool first = true;
665         LanguageList::const_iterator const begin = UsedLanguages_.begin();
666         for (LanguageList::const_iterator cit = begin;
667              cit != UsedLanguages_.end();
668              ++cit) {
669                 if ((*cit)->babel().empty())
670                         continue;
671                 if (!first)
672                         languages << ',';
673                 else
674                         first = false;
675                 languages << (*cit)->babel();
676         }
677         return languages.str();
678 }
679
680
681 std::map<std::string, std::string> LaTeXFeatures::getPolyglossiaLanguages() const
682 {
683         std::map<std::string, std::string> languages;
684
685         LanguageList::const_iterator const begin = UsedLanguages_.begin();
686         for (LanguageList::const_iterator cit = begin;
687              cit != UsedLanguages_.end();
688              ++cit) {
689                 languages[(*cit)->polyglossia()] = (*cit)->polyglossiaOpts();
690         }
691         return languages;
692 }
693
694
695 set<string> LaTeXFeatures::getEncodingSet(string const & doc_encoding) const
696 {
697         // This does only find encodings of languages supported by babel, but
698         // that does not matter since we don't have a language with an
699         // encoding supported by inputenc but without babel support.
700         set<string> encodings;
701         LanguageList::const_iterator it  = UsedLanguages_.begin();
702         LanguageList::const_iterator end = UsedLanguages_.end();
703         for (; it != end; ++it)
704                 if ((*it)->encoding()->latexName() != doc_encoding &&
705                     ((*it)->encoding()->package() == Encoding::inputenc
706                      || (*it)->encoding()->package() == Encoding::japanese))
707                         encodings.insert((*it)->encoding()->latexName());
708         return encodings;
709 }
710
711
712 void LaTeXFeatures::getFontEncodings(vector<string> & encodings) const
713 {
714         // these must be loaded if glyphs of this script
715         // are used (notwithstanding the language)
716         if (mustProvide("textgreek"))
717                 encodings.insert(encodings.begin(), "LGR");
718         if (mustProvide("textcyr"))
719                 encodings.insert(encodings.begin(), "T2A");
720
721         LanguageList::const_iterator it  = UsedLanguages_.begin();
722         LanguageList::const_iterator end = UsedLanguages_.end();
723         for (; it != end; ++it)
724                 if (!(*it)->fontenc().empty()
725                     && ascii_lowercase((*it)->fontenc()) != "none") {
726                         vector<string> extraencs = getVectorFromString((*it)->fontenc());
727                         vector<string>::const_iterator fit = extraencs.begin();
728                         for (; fit != extraencs.end(); ++fit) {
729                                 if (find(encodings.begin(), encodings.end(), *fit) == encodings.end())
730                                         encodings.insert(encodings.begin(), *fit);
731                         }
732                 }
733 }
734
735 namespace {
736
737 char const * simplefeatures[] = {
738 // note that the package order here will be the same in the LaTeX-output
739         "array",
740         "verbatim",
741         "longtable",
742         "rotating",
743         "latexsym",
744         "pifont",
745         // subfig is handled in BufferParams.cpp
746         "varioref",
747         "prettyref",
748         "refstyle",
749         /*For a successful cooperation of the `wrapfig' package with the
750           `float' package you should load the `wrapfig' package *after*
751           the `float' package. See the caption package documentation
752           for explanation.*/
753         "float",
754         "rotfloat",
755         "wrapfig",
756         "booktabs",
757         "dvipost",
758         "fancybox",
759         "calc",
760         "units",
761         "framed",
762         "soul",
763         "textcomp",
764         "pmboxdraw",
765         "bbding",
766         "ifsym",
767         "txfonts",
768         "pxfonts",
769         "mathdesign",
770         "mathrsfs",
771         "mathabx",
772         "mathtools",
773         // "cancel",
774         "ascii",
775         "url",
776         "covington",
777         "csquotes",
778         "enumitem",
779         "endnotes",
780         "hhline",
781         "ifthen",
782         // listings is handled in BufferParams.cpp
783         "bm",
784         "pdfpages",
785         "amscd",
786         "slashed",
787         "multicol",
788         "multirow",
789         "tfrupee",
790         "shapepar",
791         "rsphrase",
792         "hpstatement",
793         "algorithm2e",
794         "sectionbox",
795         "tcolorbox",
796         "pdfcomment",
797         "fixme",
798         "todonotes",
799         "forest"
800 };
801
802 char const * bibliofeatures[] = {
803         // Known bibliography packages (will be loaded before natbib)
804         "achicago",
805         "apacite",
806         "apalike",
807         "astron",
808         "authordate1-4",
809         "babelbib",
810         "bibgerm",
811         "chicago",
812         "chscite",
813         "harvard",
814         "mslapa",
815         "named"
816 };
817
818 int const nb_bibliofeatures = sizeof(bibliofeatures) / sizeof(char const *);
819
820 int const nb_simplefeatures = sizeof(simplefeatures) / sizeof(char const *);
821
822 }
823
824
825 string const LaTeXFeatures::getColorOptions() const
826 {
827         ostringstream colors;
828
829         // Handling the color packages separately is needed to be able to load them
830         // before babel when hyperref is loaded with the colorlinks option
831         // for more info see Bufferparams.cpp
832
833         // [x]color.sty
834         if (mustProvide("color") || mustProvide("xcolor")) {
835                 string const package =
836                         (mustProvide("xcolor") ? "xcolor" : "color");
837                 if (params_.graphics_driver == "default"
838                         || params_.graphics_driver == "none")
839                         colors << "\\usepackage{" << package << "}\n";
840                 else
841                         colors << "\\usepackage["
842                                  << params_.graphics_driver
843                                  << "]{" << package << "}\n";
844         }
845
846         // pdfcolmk must be loaded after color
847         if (mustProvide("pdfcolmk"))
848                 colors << "\\usepackage{pdfcolmk}\n";
849
850         // the following 3 color commands must be set after color
851         // is loaded and before pdfpages, therefore add the command
852         // here define the set color
853         if (mustProvide("pagecolor")) {
854                 colors << "\\definecolor{page_backgroundcolor}{rgb}{";
855                 colors << outputLaTeXColor(params_.backgroundcolor) << "}\n";
856                 // set the page color
857                 colors << "\\pagecolor{page_backgroundcolor}\n";
858         }
859
860         if (mustProvide("fontcolor")) {
861                 colors << "\\definecolor{document_fontcolor}{rgb}{";
862                 colors << outputLaTeXColor(params_.fontcolor) << "}\n";
863                 // set the color
864                 colors << "\\color{document_fontcolor}\n";
865         }
866
867         if (mustProvide("lyxgreyedout")) {
868                 colors << "\\definecolor{note_fontcolor}{rgb}{";
869                 colors << outputLaTeXColor(params_.notefontcolor) << "}\n";
870                 // the color will be set together with the definition of
871                 // the lyxgreyedout environment (see lyxgreyedout_def)
872         }
873
874         // color for shaded boxes
875         if (isRequired("framed") && mustProvide("color")) {
876                 colors << "\\definecolor{shadecolor}{rgb}{";
877                 colors << outputLaTeXColor(params_.boxbgcolor) << "}\n";
878                 // this color is automatically used by the LaTeX-package "framed"
879         }
880
881         return colors.str();
882 }
883
884
885 string const LaTeXFeatures::getPackageOptions() const
886 {
887         ostringstream packageopts;
888         // Output all the package option stuff we have been asked to do.
889         map<string, string>::const_iterator it =
890                 params_.documentClass().packageOptions().begin();
891         map<string, string>::const_iterator en =
892                 params_.documentClass().packageOptions().end();
893         for (; it != en; ++it)
894                 if (mustProvide(it->first))
895                         packageopts << "\\PassOptionsToPackage{" << it->second << "}"
896                                  << "{" << it->first << "}\n";
897         return packageopts.str();
898 }
899
900
901 string const LaTeXFeatures::getPackages() const
902 {
903         ostringstream packages;
904
905         // FIXME: currently, we can only load packages and macros known
906         // to LyX.
907         // However, with the Require tag of layouts/custom insets,
908         // also unknown packages can be requested. They are silently
909         // swallowed now. We should change this eventually.
910
911         //  These are all the 'simple' includes.  i.e
912         //  packages which we just \usepackage{package}
913         for (int i = 0; i < nb_simplefeatures; ++i) {
914                 if (mustProvide(simplefeatures[i]))
915                         packages << "\\usepackage{" << simplefeatures[i] << "}\n";
916         }
917
918         // The rest of these packages are somewhat more complicated
919         // than those above.
920
921         // The tipa package and its extensions (tipx, tone) must not
922         // be loaded with non-TeX fonts, since fontspec includes the
923         // respective macros
924         if (mustProvide("tipa") && !params_.useNonTeXFonts)
925                 packages << "\\usepackage{tipa}\n";
926         if (mustProvide("tipx") && !params_.useNonTeXFonts)
927                 packages << "\\usepackage{tipx}\n";
928         if (mustProvide("tone") && !params_.useNonTeXFonts)
929                 packages << "\\usepackage{tone}\n";
930
931         // if fontspec or newtxmath is used, AMS packages have to be loaded
932         // before fontspec (in BufferParams)
933         string const amsPackages = loadAMSPackages();
934         bool const ot1 = (params_.font_encoding() == "default" || params_.font_encoding() == "OT1");
935         bool const use_newtxmath =
936                 theLaTeXFonts().getLaTeXFont(from_ascii(params_.fonts_math)).getUsedPackage(
937                         ot1, false, false) == "newtxmath";
938
939         if (!params_.useNonTeXFonts && !use_newtxmath && !amsPackages.empty())
940                 packages << amsPackages;
941
942         if (mustProvide("cancel") &&
943             params_.use_package("cancel") != BufferParams::package_off)
944                 packages << "\\usepackage{cancel}\n";
945
946         // marvosym and bbding both define the \Cross macro
947         if (mustProvide("marvosym")) {
948             if (mustProvide("bbding"))
949                 packages << "\\let\\Cross\\relax\n";
950             packages << "\\usepackage{marvosym}\n";
951         }
952
953         // accents must be loaded after amsmath
954         if (mustProvide("accents") &&
955             params_.use_package("accents") != BufferParams::package_off)
956                 packages << "\\usepackage{accents}\n";
957
958         // mathdots must be loaded after amsmath
959         if (mustProvide("mathdots") &&
960                 params_.use_package("mathdots") != BufferParams::package_off)
961                 packages << "\\usepackage{mathdots}\n";
962
963         // yhmath must be loaded after amsmath
964         if (mustProvide("yhmath") &&
965             params_.use_package("yhmath") != BufferParams::package_off)
966                 packages << "\\usepackage{yhmath}\n";
967
968         // stmaryrd must be loaded after amsmath
969         if (mustProvide("stmaryrd") &&
970             params_.use_package("stmaryrd") != BufferParams::package_off)
971                 packages << "\\usepackage{stmaryrd}\n";
972
973         if (mustProvide("stackrel") &&
974             params_.use_package("stackrel") != BufferParams::package_off)
975                 packages << "\\usepackage{stackrel}\n";
976
977         if (mustProvide("undertilde") &&
978                 params_.use_package("undertilde") != BufferParams::package_off)
979                 packages << "\\usepackage{undertilde}\n";
980
981         // [x]color and pdfcolmk are handled in getColorOptions() above
982
983         // makeidx.sty
984         if (isRequired("makeidx") || isRequired("splitidx")) {
985                 if (!isProvided("makeidx") && !isRequired("splitidx"))
986                         packages << "\\usepackage{makeidx}\n";
987                 if (mustProvide("splitidx"))
988                         packages << "\\usepackage{splitidx}\n";
989                 packages << "\\makeindex\n";
990         }
991
992         // graphicx.sty
993         if (mustProvide("graphicx") && params_.graphics_driver != "none") {
994                 if (params_.graphics_driver == "default")
995                         packages << "\\usepackage{graphicx}\n";
996                 else
997                         packages << "\\usepackage["
998                                  << params_.graphics_driver
999                                  << "]{graphicx}\n";
1000         }
1001
1002         // lyxskak.sty --- newer chess support based on skak.sty
1003         if (mustProvide("chess"))
1004                 packages << "\\usepackage[ps,mover]{lyxskak}\n";
1005
1006         // setspace.sty
1007         if (mustProvide("setspace") && !isProvided("SetSpace"))
1008                 packages << "\\usepackage{setspace}\n";
1009
1010         // we need to assure that mhchem is loaded before esint and every other
1011         // package that redefines command of amsmath because mhchem loads amlatex
1012         // (this info is from the author of mhchem from June 2013)
1013         if (mustProvide("mhchem") &&
1014             params_.use_package("mhchem") != BufferParams::package_off)
1015                 packages << "\\PassOptionsToPackage{version=3}{mhchem}\n"
1016                             "\\usepackage{mhchem}\n";
1017
1018         // wasysym is a simple feature, but it must be after amsmath if both
1019         // are used
1020         // wasysym redefines some integrals (e.g. iint) from amsmath. That
1021         // leads to inconsistent integrals. We only load this package if
1022         // the document does not contain integrals (then isRequired("esint")
1023         // is false) or if esint is used, since esint redefines all relevant
1024         // integral symbols from wasysym and amsmath.
1025         // See http://www.lyx.org/trac/ticket/1942
1026         if (mustProvide("wasysym") &&
1027             params_.use_package("wasysym") != BufferParams::package_off &&
1028             (params_.use_package("esint") != BufferParams::package_off || !isRequired("esint")))
1029                 packages << "\\usepackage{wasysym}\n";
1030
1031         // esint must be after amsmath (and packages requiring amsmath, like mhchem)
1032         // and wasysym, since it will redeclare inconsistent integral symbols
1033         if (mustProvide("esint") &&
1034             params_.use_package("esint") != BufferParams::package_off)
1035                 packages << "\\usepackage{esint}\n";
1036
1037         // Known bibliography packages (simple \usepackage{package})
1038         for (int i = 0; i < nb_bibliofeatures; ++i) {
1039                 if (mustProvide(bibliofeatures[i]))
1040                         packages << "\\usepackage{"
1041                                  << bibliofeatures[i] << "}\n";
1042         }
1043
1044         // Compatibility between achicago and natbib
1045         if (mustProvide("achicago") && mustProvide("natbib"))
1046                 packages << "\\let\\achicagobib\\thebibliography\n";
1047
1048         // natbib.sty
1049         // Some classes load natbib themselves, but still allow (or even require)
1050         // plain numeric citations (ReVTeX is such a case, see bug 5182).
1051         // This special case is indicated by the "natbib-internal" key.
1052         if (mustProvide("natbib") && !isProvided("natbib-internal")) {
1053                 packages << "\\usepackage[";
1054                 if (params_.citeEngineType() == ENGINE_TYPE_NUMERICAL)
1055                         packages << "numbers";
1056                 else
1057                         packages << "authoryear";
1058                 packages << "]{natbib}\n";
1059         }
1060
1061         // Compatibility between achicago and natbib
1062         if (mustProvide("achicago") && mustProvide("natbib")) {
1063                 packages << "\\let\\thebibliography\\achicagobib\n";
1064                 packages << "\\let\\SCcite\\astroncite\n";
1065                 packages << "\\let\\UnexpandableProtect\\protect\n";
1066         }
1067
1068         // jurabib -- we need version 0.6 at least.
1069         if (mustProvide("jurabib"))
1070                 packages << "\\usepackage{jurabib}[2004/01/25]\n";
1071
1072         // opcit -- we pass custombst as we output \bibliographystyle ourselves
1073         if (mustProvide("opcit")) {
1074                 if (isRequired("hyperref"))
1075                         packages << "\\usepackage[custombst,hyperref]{opcit}\n";
1076                 else
1077                         packages << "\\usepackage[custombst]{opcit}\n";
1078         }
1079
1080         // xargs -- we need version 1.09 at least
1081         if (mustProvide("xargs"))
1082                 packages << "\\usepackage{xargs}[2008/03/08]\n";
1083
1084         if (mustProvide("xy"))
1085                 packages << "\\usepackage[all]{xy}\n";
1086
1087         if (mustProvide("feyn"))
1088                 packages << "\\usepackage{feyn}\n"; //Diagram
1089
1090         if (mustProvide("ulem"))
1091                 packages << "\\PassOptionsToPackage{normalem}{ulem}\n"
1092                             "\\usepackage{ulem}\n";
1093
1094         if (mustProvide("nomencl")) {
1095                 // Make it work with the new and old version of the package,
1096                 // but don't use the compatibility option since it is
1097                 // incompatible to other packages.
1098                 packages << "\\usepackage{nomencl}\n"
1099                             "% the following is useful when we have the old nomencl.sty package\n"
1100                             "\\providecommand{\\printnomenclature}{\\printglossary}\n"
1101                             "\\providecommand{\\makenomenclature}{\\makeglossary}\n"
1102                             "\\makenomenclature\n";
1103         }
1104
1105         // fixltx2e provides subscript
1106         if (mustProvide("subscript") && !isRequired("fixltx2e"))
1107                 packages << "\\usepackage{subscript}\n";
1108
1109         // footmisc must be loaded after setspace
1110         // Set options here, load the package after the user preamble to
1111         // avoid problems with manual loaded footmisc.
1112         if (mustProvide("footmisc"))
1113                 packages << "\\PassOptionsToPackage{stable}{footmisc}\n";
1114
1115         return packages.str();
1116 }
1117
1118
1119 string LaTeXFeatures::getPreambleSnippets() const
1120 {
1121         ostringstream snip;
1122         SnippetList::const_iterator pit  = preamble_snippets_.begin();
1123         SnippetList::const_iterator pend = preamble_snippets_.end();
1124         for (; pit != pend; ++pit)
1125                 snip << *pit << '\n';
1126         return snip.str();
1127 }
1128
1129
1130 std::string LaTeXFeatures::getCSSSnippets() const
1131 {
1132         ostringstream snip;
1133         SnippetList::const_iterator pit  = css_snippets_.begin();
1134         SnippetList::const_iterator pend = css_snippets_.end();
1135         for (; pit != pend; ++pit)
1136                 snip << *pit << '\n';
1137         return snip.str();
1138 }
1139
1140
1141 docstring const LaTeXFeatures::getMacros() const
1142 {
1143         odocstringstream macros;
1144
1145         if (!preamble_snippets_.empty()) {
1146                 macros << '\n';
1147                 macros << from_utf8(getPreambleSnippets());
1148         }
1149
1150         if (mustProvide("papersize")) {
1151                 if (runparams_.flavor == OutputParams::LATEX)
1152                         macros << papersizedvi_def << '\n';
1153                 else
1154                         macros << papersizepdf_def << '\n';
1155         }
1156
1157         if (mustProvide("LyX")) {
1158                 if (isRequired("hyperref"))
1159                         macros << lyx_hyperref_def << '\n';
1160                 else
1161                         macros << lyx_def << '\n';
1162         }
1163
1164         if (mustProvide("noun"))
1165                 macros << noun_def << '\n';
1166
1167         if (mustProvide("lyxarrow"))
1168                 macros << lyxarrow_def << '\n';
1169
1170         if (!usePolyglossia() && mustProvide("textgreek")) {
1171                 // ensure LGR font encoding is defined also if fontenc is not loaded by LyX
1172                 if (params_.font_encoding() == "default")
1173                         macros << textgreek_LGR_def;
1174                 macros << textgreek_def << '\n';
1175         }
1176
1177         if (!usePolyglossia() && mustProvide("textcyr"))
1178                 // ensure T2A font encoding is set up also if fontenc is not loaded by LyX
1179                 if (params_.font_encoding() == "default")
1180                         macros << textcyr_T2A_def;
1181                 macros << textcyr_def << '\n';
1182
1183         // non-standard text accents:
1184         if (mustProvide("textcommaabove") || mustProvide("textcommaaboveright") ||
1185             mustProvide("textcommabelow") || mustProvide("textbaltic"))
1186                 macros << lyxaccent_def;
1187
1188         if (mustProvide("textcommabelow") || mustProvide("textbaltic"))
1189                 macros << textcommabelow_def << '\n';
1190
1191         if (mustProvide("textcommaabove") || mustProvide("textbaltic"))
1192                 macros << textcommaabove_def << '\n';
1193
1194         if (mustProvide("textcommaaboveright"))
1195                 macros << textcommaaboveright_def << '\n';
1196
1197         if (mustProvide("textbaltic"))
1198                 macros << textbaltic_def << '\n';
1199
1200         if (mustProvide("lyxmathsym"))
1201                 macros << lyxmathsym_def << '\n';
1202
1203         if (mustProvide("cedilla"))
1204                 macros << cedilla_def << '\n';
1205
1206         if (mustProvide("subring"))
1207                 macros << subring_def << '\n';
1208
1209         if (mustProvide("subdot"))
1210                 macros << subdot_def << '\n';
1211
1212         if (mustProvide("subhat"))
1213                 macros << subhat_def << '\n';
1214
1215         if (mustProvide("subtilde"))
1216                 macros << subtilde_def << '\n';
1217
1218         if (mustProvide("dacute"))
1219                 macros << dacute_def << '\n';
1220
1221         if (mustProvide("tipasymb"))
1222                 macros << tipasymb_def << '\n';
1223
1224         if (mustProvide("dgrave"))
1225                 macros << dgrave_def << '\n';
1226
1227         if (mustProvide("rcap"))
1228                 macros << rcap_def << '\n';
1229
1230         if (mustProvide("ogonek"))
1231                 macros << ogonek_def << '\n';
1232
1233         // quotes.
1234         if (mustProvide("quotesinglbase"))
1235                 macros << quotesinglbase_def << '\n';
1236         if (mustProvide("quotedblbase"))
1237                 macros << quotedblbase_def << '\n';
1238         if (mustProvide("guilsinglleft"))
1239                 macros << guilsinglleft_def << '\n';
1240         if (mustProvide("guilsinglright"))
1241                 macros << guilsinglright_def << '\n';
1242         if (mustProvide("guillemotleft"))
1243                 macros << guillemotleft_def << '\n';
1244         if (mustProvide("guillemotright"))
1245                 macros << guillemotright_def << '\n';
1246
1247         // Math mode
1248         if (mustProvide("binom") && !isRequired("amsmath"))
1249                 macros << binom_def << '\n';
1250         if (mustProvide("mathcircumflex"))
1251                 macros << mathcircumflex_def << '\n';
1252
1253         // other
1254         if (mustProvide("ParagraphLeftIndent"))
1255                 macros << paragraphleftindent_def;
1256
1257         // some problems with tex->html converters
1258         if (mustProvide("NeedTabularnewline"))
1259                 macros << tabularnewline_def;
1260
1261         // greyed-out environment (note inset)
1262         // the color is specified in the routine
1263         // getColorOptions() to avoid LaTeX-package clashes
1264         if (mustProvide("lyxgreyedout"))
1265                 macros << lyxgreyedout_def;
1266
1267         if (mustProvide("lyxdot"))
1268                 macros << lyxdot_def << '\n';
1269
1270         // floats
1271         getFloatDefinitions(macros);
1272
1273         if (mustProvide("refstyle"))
1274                 macros << lyxref_def << '\n';
1275
1276         // change tracking
1277         if (mustProvide("ct-dvipost"))
1278                 macros << changetracking_dvipost_def;
1279
1280         if (mustProvide("ct-xcolor-ulem")) {
1281                 streamsize const prec = macros.precision(2);
1282
1283                 RGBColor cadd = rgbFromHexName(lcolor.getX11Name(Color_addedtext));
1284                 macros << "\\providecolor{lyxadded}{rgb}{"
1285                        << cadd.r / 255.0 << ',' << cadd.g / 255.0 << ',' << cadd.b / 255.0 << "}\n";
1286
1287                 RGBColor cdel = rgbFromHexName(lcolor.getX11Name(Color_deletedtext));
1288                 macros << "\\providecolor{lyxdeleted}{rgb}{"
1289                        << cdel.r / 255.0 << ',' << cdel.g / 255.0 << ',' << cdel.b / 255.0 << "}\n";
1290
1291                 macros.precision(prec);
1292
1293                 if (isRequired("hyperref"))
1294                         macros << changetracking_xcolor_ulem_hyperref_def;
1295                 else
1296                         macros << changetracking_xcolor_ulem_def;
1297         }
1298
1299         if (mustProvide("ct-none"))
1300                 macros << changetracking_none_def;
1301
1302         if (mustProvide("rtloutputdblcol"))
1303                 macros << rtloutputdblcol_def;
1304
1305         return macros.str();
1306 }
1307
1308
1309 string const LaTeXFeatures::getBabelPresettings() const
1310 {
1311         ostringstream tmp;
1312
1313         LanguageList::const_iterator it  = UsedLanguages_.begin();
1314         LanguageList::const_iterator end = UsedLanguages_.end();
1315         for (; it != end; ++it)
1316                 if (!(*it)->babel_presettings().empty())
1317                         tmp << (*it)->babel_presettings() << '\n';
1318         if (!params_.language->babel_presettings().empty())
1319                 tmp << params_.language->babel_presettings() << '\n';
1320
1321         if (!contains(tmp.str(), '@'))
1322                 return tmp.str();
1323
1324         return "\\makeatletter\n" + tmp.str() + "\\makeatother\n";
1325 }
1326
1327
1328 string const LaTeXFeatures::getBabelPostsettings() const
1329 {
1330         ostringstream tmp;
1331
1332         LanguageList::const_iterator it  = UsedLanguages_.begin();
1333         LanguageList::const_iterator end = UsedLanguages_.end();
1334         for (; it != end; ++it)
1335                 if (!(*it)->babel_postsettings().empty())
1336                         tmp << (*it)->babel_postsettings() << '\n';
1337         if (!params_.language->babel_postsettings().empty())
1338                 tmp << params_.language->babel_postsettings() << '\n';
1339
1340         if (!contains(tmp.str(), '@'))
1341                 return tmp.str();
1342
1343         return "\\makeatletter\n" + tmp.str() + "\\makeatother\n";
1344 }
1345
1346
1347 bool LaTeXFeatures::needBabelLangOptions() const
1348 {
1349         if (!lyxrc.language_global_options || params_.language->asBabelOptions())
1350                 return true;
1351
1352         LanguageList::const_iterator it  = UsedLanguages_.begin();
1353         LanguageList::const_iterator end = UsedLanguages_.end();
1354         for (; it != end; ++it)
1355                 if ((*it)->asBabelOptions())
1356                         return true;
1357
1358         return false;
1359 }
1360
1361
1362 string const LaTeXFeatures::loadAMSPackages() const
1363 {
1364         ostringstream tmp;
1365
1366         if (mustProvide("amsmath")
1367             && params_.use_package("amsmath") != BufferParams::package_off) {
1368                 tmp << "\\usepackage{amsmath}\n";
1369         } else {
1370                 // amsbsy and amstext are already provided by amsmath
1371                 if (mustProvide("amsbsy"))
1372                         tmp << "\\usepackage{amsbsy}\n";
1373                 if (mustProvide("amstext"))
1374                         tmp << "\\usepackage{amstext}\n";
1375         }
1376
1377         if (mustProvide("amsthm"))
1378                 tmp << "\\usepackage{amsthm}\n";
1379
1380         if (mustProvide("amssymb")
1381             && params_.use_package("amssymb") != BufferParams::package_off)
1382                 tmp << "\\usepackage{amssymb}\n";
1383
1384         return tmp.str();
1385 }
1386
1387
1388 docstring const LaTeXFeatures::getTClassPreamble() const
1389 {
1390         // the text class specific preamble
1391         DocumentClass const & tclass = params_.documentClass();
1392         odocstringstream tcpreamble;
1393
1394         tcpreamble << tclass.preamble();
1395
1396         list<docstring>::const_iterator cit = usedLayouts_.begin();
1397         list<docstring>::const_iterator end = usedLayouts_.end();
1398         for (; cit != end; ++cit)
1399                 tcpreamble << tclass[*cit].preamble();
1400
1401         cit = usedInsetLayouts_.begin();
1402         end = usedInsetLayouts_.end();
1403         TextClass::InsetLayouts const & ils = tclass.insetLayouts();
1404         for (; cit != end; ++cit) {
1405                 TextClass::InsetLayouts::const_iterator it = ils.find(*cit);
1406                 if (it == ils.end())
1407                         continue;
1408                 tcpreamble << it->second.preamble();
1409         }
1410
1411         return tcpreamble.str();
1412 }
1413
1414
1415 docstring const LaTeXFeatures::getTClassHTMLPreamble() const
1416 {
1417         DocumentClass const & tclass = params_.documentClass();
1418         odocstringstream tcpreamble;
1419
1420         tcpreamble << tclass.htmlpreamble();
1421
1422         list<docstring>::const_iterator cit = usedLayouts_.begin();
1423         list<docstring>::const_iterator end = usedLayouts_.end();
1424         for (; cit != end; ++cit)
1425                 tcpreamble << tclass[*cit].htmlpreamble();
1426
1427         cit = usedInsetLayouts_.begin();
1428         end = usedInsetLayouts_.end();
1429         TextClass::InsetLayouts const & ils = tclass.insetLayouts();
1430         for (; cit != end; ++cit) {
1431                 TextClass::InsetLayouts::const_iterator it = ils.find(*cit);
1432                 if (it == ils.end())
1433                         continue;
1434                 tcpreamble << it->second.htmlpreamble();
1435         }
1436
1437         return tcpreamble.str();
1438 }
1439
1440
1441 docstring const LaTeXFeatures::getTClassHTMLStyles() const
1442 {
1443         DocumentClass const & tclass = params_.documentClass();
1444         odocstringstream tcpreamble;
1445
1446         if (mustProvide("noun"))
1447                 tcpreamble << lyxnoun_style;
1448         // this isn't exact, but it won't hurt that much if it
1449         // wasn't for this.
1450         if (mustProvide("ulem"))
1451                 tcpreamble << lyxstrikeout_style;
1452
1453         tcpreamble << tclass.htmlstyles();
1454
1455         list<docstring>::const_iterator cit = usedLayouts_.begin();
1456         list<docstring>::const_iterator end = usedLayouts_.end();
1457         for (; cit != end; ++cit)
1458                 tcpreamble << tclass[*cit].htmlstyle();
1459
1460         cit = usedInsetLayouts_.begin();
1461         end = usedInsetLayouts_.end();
1462         TextClass::InsetLayouts const & ils = tclass.insetLayouts();
1463         for (; cit != end; ++cit) {
1464                 TextClass::InsetLayouts::const_iterator it = ils.find(*cit);
1465                 if (it == ils.end())
1466                         continue;
1467                 tcpreamble << it->second.htmlstyle();
1468         }
1469
1470         return tcpreamble.str();
1471 }
1472
1473
1474 namespace {
1475
1476 docstring const getFloatI18nPreamble(docstring const & type,
1477                         docstring const & name, Language const * lang,
1478                         Encoding const & enc, bool const polyglossia)
1479 {
1480         // Check whether name can be encoded in the buffer encoding
1481         bool encodable = true;
1482         for (size_t i = 0; i < name.size(); ++i) {
1483                 if (!enc.encodable(name[i])) {
1484                         encodable = false;
1485                         break;
1486                 }
1487         }
1488
1489         docstring const language = polyglossia ? from_ascii(lang->polyglossia())
1490                                                : from_ascii(lang->babel());
1491         docstring const langenc = from_ascii(lang->encoding()->iconvName());
1492         docstring const texenc = from_ascii(lang->encoding()->latexName());
1493         docstring const bufenc = from_ascii(enc.iconvName());
1494         docstring const s1 = docstring(1, 0xF0000);
1495         docstring const s2 = docstring(1, 0xF0001);
1496         docstring const translated = encodable ? name
1497                 : from_ascii("\\inputencoding{") + texenc + from_ascii("}")
1498                         + s1 + langenc + s2 + name + s1 + bufenc + s2;
1499
1500         odocstringstream os;
1501         os << "\\addto\\captions" << language
1502            << "{\\renewcommand{\\" << type << "name}{" << translated << "}}\n";
1503         return os.str();
1504 }
1505
1506
1507 docstring const i18npreamble(docstring const & templ, Language const * lang,
1508                              Encoding const & enc, bool const polyglossia,
1509                              bool const need_fixedwidth)
1510 {
1511         if (templ.empty())
1512                 return templ;
1513
1514         string preamble = polyglossia ?
1515                 subst(to_utf8(templ), "$$lang", lang->polyglossia()) :
1516                 subst(to_utf8(templ), "$$lang", lang->babel());
1517
1518         string const langenc = lang->encoding()->iconvName();
1519         string const texenc = lang->encoding()->latexName();
1520         string const bufenc = enc.iconvName();
1521         Encoding const * testenc(&enc);
1522         bool lang_fallback = false;
1523         bool ascii_fallback = false;
1524         if (need_fixedwidth && !enc.hasFixedWidth()) {
1525                 if (lang->encoding()->hasFixedWidth()) {
1526                         testenc = lang->encoding();
1527                         lang_fallback = true;
1528                 } else {
1529                         // We need a fixed width encoding, but both the buffer
1530                         // encoding and the language encoding are variable
1531                         // width. As a last fallback, try to convert to pure
1532                         // ASCII using the LaTeX commands defined in unicodesymbols.
1533                         testenc = encodings.fromLyXName("ascii");
1534                         if (!testenc)
1535                                 return docstring();
1536                         ascii_fallback = true;
1537                 }
1538         }
1539         // First and second character of plane 15 (Private Use Area)
1540         string const s1 = "\xf3\xb0\x80\x80"; // U+F0000
1541         string const s2 = "\xf3\xb0\x80\x81"; // U+F0001
1542         // FIXME UNICODE
1543         // lyx::regex is not unicode-safe.
1544         // Should use QRegExp or (boost::u32regex, but that requires ICU)
1545         static regex const reg("_\\(([^\\)]+)\\)");
1546         smatch sub;
1547         while (regex_search(preamble, sub, reg)) {
1548                 string const key = sub.str(1);
1549                 docstring const name = lang->translateLayout(key);
1550                 // Check whether name can be encoded in the buffer encoding
1551                 bool encodable = true;
1552                 for (size_t i = 0; i < name.size() && encodable; ++i)
1553                         if (!testenc->encodable(name[i]))
1554                                 encodable = false;
1555                 string translated;
1556                 if (encodable && !lang_fallback)
1557                         translated = to_utf8(name);
1558                 else if (ascii_fallback)
1559                         translated = to_ascii(testenc->latexString(name).first);
1560                 else
1561                         translated = "\\inputencoding{" + texenc + "}"
1562                                 + s1 + langenc + s2 + to_utf8(name)
1563                                 + s1 + bufenc + s2;
1564                 preamble = subst(preamble, sub.str(), translated);
1565         }
1566         return from_utf8(preamble);
1567 }
1568
1569 }
1570
1571
1572 docstring const LaTeXFeatures::getTClassI18nPreamble(bool use_babel, bool use_polyglossia) const
1573 {
1574         DocumentClass const & tclass = params_.documentClass();
1575         // collect preamble snippets in a set to prevent multiple identical
1576         // commands (would happen if e.g. both theorem and theorem* are used)
1577         set<docstring> snippets;
1578         typedef LanguageList::const_iterator lang_it;
1579         lang_it const lbeg = UsedLanguages_.begin();
1580         lang_it const lend =  UsedLanguages_.end();
1581         list<docstring>::const_iterator cit = usedLayouts_.begin();
1582         list<docstring>::const_iterator end = usedLayouts_.end();
1583         for (; cit != end; ++cit) {
1584                 // language dependent commands (once per document)
1585                 snippets.insert(i18npreamble(tclass[*cit].langpreamble(),
1586                                                 buffer().language(),
1587                                                 buffer().params().encoding(),
1588                                                 use_polyglossia, false));
1589                 // commands for language changing (for multilanguage documents)
1590                 if ((use_babel || use_polyglossia) && !UsedLanguages_.empty()) {
1591                         snippets.insert(i18npreamble(
1592                                                 tclass[*cit].babelpreamble(),
1593                                                 buffer().language(),
1594                                                 buffer().params().encoding(),
1595                                                 use_polyglossia, false));
1596                         for (lang_it lit = lbeg; lit != lend; ++lit)
1597                                 snippets.insert(i18npreamble(
1598                                                 tclass[*cit].babelpreamble(),
1599                                                 *lit,
1600                                                 buffer().params().encoding(),
1601                                                 use_polyglossia, false));
1602                 }
1603         }
1604         if ((use_babel || use_polyglossia) && !UsedLanguages_.empty()) {
1605                 FloatList const & floats = params_.documentClass().floats();
1606                 UsedFloats::const_iterator fit = usedFloats_.begin();
1607                 UsedFloats::const_iterator fend = usedFloats_.end();
1608                 for (; fit != fend; ++fit) {
1609                         Floating const & fl = floats.getType(fit->first);
1610                         // we assume builtin floats are translated
1611                         if (fl.isPredefined())
1612                                 continue;
1613                         docstring const type = from_ascii(fl.floattype());
1614                         docstring const flname = from_utf8(fl.name());
1615                         docstring name = buffer().language()->translateLayout(fl.name());
1616                         // only request translation if we have a real translation
1617                         // (that differs from the source)
1618                         if (flname != name)
1619                                 snippets.insert(getFloatI18nPreamble(
1620                                                 type, name, buffer().language(),
1621                                                 buffer().params().encoding(),
1622                                                 use_polyglossia));
1623                         for (lang_it lit = lbeg; lit != lend; ++lit) {
1624                                 string const code = (*lit)->code();
1625                                 name = (*lit)->translateLayout(fl.name());
1626                                 // we assume we have a suitable translation if
1627                                 // either the language is English (we need to
1628                                 // translate into English if English is a secondary
1629                                 // language) or if translateIfPossible returns
1630                                 // something different to the English source.
1631                                 bool const have_translation =
1632                                         (flname != name || contains(code, "en"));
1633                                 if (have_translation)
1634                                         snippets.insert(getFloatI18nPreamble(
1635                                                 type, name, *lit,
1636                                                 buffer().params().encoding(),
1637                                                 use_polyglossia));
1638                         }
1639                 }
1640         }
1641
1642         cit = usedInsetLayouts_.begin();
1643         end = usedInsetLayouts_.end();
1644         TextClass::InsetLayouts const & ils = tclass.insetLayouts();
1645         for (; cit != end; ++cit) {
1646                 TextClass::InsetLayouts::const_iterator it = ils.find(*cit);
1647                 if (it == ils.end())
1648                         continue;
1649                 // The listings package does not work with variable width
1650                 // encodings, only with fixed width encodings. Therefore we
1651                 // need to force a fixed width encoding for
1652                 // \lstlistlistingname and \lstlistingname (bug 9382).
1653                 // This needs to be consistent with InsetListings::latex().
1654                 bool const need_fixedwidth = !runparams_.isFullUnicode() &&
1655                                 it->second.fixedwidthpreambleencoding();
1656                 // language dependent commands (once per document)
1657                 snippets.insert(i18npreamble(it->second.langpreamble(),
1658                                                 buffer().language(),
1659                                                 buffer().params().encoding(),
1660                                                 use_polyglossia, need_fixedwidth));
1661                 // commands for language changing (for multilanguage documents)
1662                 if ((use_babel || use_polyglossia) && !UsedLanguages_.empty()) {
1663                         snippets.insert(i18npreamble(
1664                                                 it->second.babelpreamble(),
1665                                                 buffer().language(),
1666                                                 buffer().params().encoding(),
1667                                                 use_polyglossia, need_fixedwidth));
1668                         for (lang_it lit = lbeg; lit != lend; ++lit)
1669                                 snippets.insert(i18npreamble(
1670                                                 it->second.babelpreamble(),
1671                                                 *lit,
1672                                                 buffer().params().encoding(),
1673                                                 use_polyglossia, need_fixedwidth));
1674                 }
1675         }
1676
1677         odocstringstream tcpreamble;
1678         set<docstring>::const_iterator const send = snippets.end();
1679         set<docstring>::const_iterator it = snippets.begin();
1680         for (; it != send; ++it)
1681                 tcpreamble << *it;
1682         return tcpreamble.str();
1683 }
1684
1685
1686 docstring const LaTeXFeatures::getLyXSGMLEntities() const
1687 {
1688         // Definition of entities used in the document that are LyX related.
1689         odocstringstream entities;
1690
1691         if (mustProvide("lyxarrow")) {
1692                 entities << "<!ENTITY lyxarrow \"-&gt;\">" << '\n';
1693         }
1694
1695         return entities.str();
1696 }
1697
1698
1699 docstring const LaTeXFeatures::getIncludedFiles(string const & fname) const
1700 {
1701         odocstringstream sgmlpreamble;
1702         // FIXME UNICODE
1703         docstring const basename(from_utf8(onlyPath(fname)));
1704
1705         FileMap::const_iterator end = IncludedFiles_.end();
1706         for (FileMap::const_iterator fi = IncludedFiles_.begin();
1707              fi != end; ++fi)
1708                 // FIXME UNICODE
1709                 sgmlpreamble << "\n<!ENTITY " << fi->first
1710                              << (isSGMLFileName(fi->second) ? " SYSTEM \"" : " \"")
1711                              << makeRelPath(from_utf8(fi->second), basename) << "\">";
1712
1713         return sgmlpreamble.str();
1714 }
1715
1716
1717 void LaTeXFeatures::showStruct() const
1718 {
1719         lyxerr << "LyX needs the following commands when LaTeXing:"
1720                << "\n***** Packages:" << getPackages()
1721                << "\n***** Macros:" << to_utf8(getMacros())
1722                << "\n***** Textclass stuff:" << to_utf8(getTClassPreamble())
1723                << "\n***** done." << endl;
1724 }
1725
1726
1727 Buffer const & LaTeXFeatures::buffer() const
1728 {
1729         return *buffer_;
1730 }
1731
1732
1733 void LaTeXFeatures::setBuffer(Buffer const & buffer)
1734 {
1735         buffer_ = &buffer;
1736 }
1737
1738
1739 BufferParams const & LaTeXFeatures::bufferParams() const
1740 {
1741         return params_;
1742 }
1743
1744
1745 void LaTeXFeatures::getFloatDefinitions(odocstream & os) const
1746 {
1747         FloatList const & floats = params_.documentClass().floats();
1748
1749         // Here we will output the code to create the needed float styles.
1750         // We will try to do this as minimal as possible.
1751         // \floatstyle{ruled}
1752         // \newfloat{algorithm}{htbp}{loa}
1753         // \providecommand{\algorithmname}{Algorithm}
1754         // \floatname{algorithm}{\protect\algorithmname}
1755         UsedFloats::const_iterator cit = usedFloats_.begin();
1756         UsedFloats::const_iterator end = usedFloats_.end();
1757         for (; cit != end; ++cit) {
1758                 Floating const & fl = floats.getType(cit->first);
1759
1760                 // For builtin floats we do nothing.
1761                 if (fl.isPredefined())
1762                         continue;
1763
1764                 // We have to special case "table" and "figure"
1765                 if (fl.floattype() == "tabular" || fl.floattype() == "figure") {
1766                         // Output code to modify "table" or "figure"
1767                         // but only if builtin == false
1768                         // and that have to be true at this point in the
1769                         // function.
1770                         docstring const type = from_ascii(fl.floattype());
1771                         docstring const placement = from_ascii(fl.placement());
1772                         docstring const style = from_ascii(fl.style());
1773                         if (!style.empty()) {
1774                                 os << "\\floatstyle{" << style << "}\n"
1775                                    << "\\restylefloat{" << type << "}\n";
1776                         }
1777                         if (!placement.empty()) {
1778                                 os << "\\floatplacement{" << type << "}{"
1779                                    << placement << "}\n";
1780                         }
1781                 } else {
1782                         // The other non builtin floats.
1783
1784                         docstring const type = from_ascii(fl.floattype());
1785                         docstring const placement = from_ascii(fl.placement());
1786                         docstring const ext = from_ascii(fl.ext());
1787                         docstring const within = from_ascii(fl.within());
1788                         docstring const style = from_ascii(fl.style());
1789                         docstring const name =
1790                                 buffer().language()->translateLayout(fl.name());
1791                         os << "\\floatstyle{" << style << "}\n"
1792                            << "\\newfloat{" << type << "}{" << placement
1793                            << "}{" << ext << '}';
1794                         if (!within.empty())
1795                                 os << '[' << within << ']';
1796                         os << '\n'
1797                            << "\\providecommand{\\" << type << "name}{"
1798                            << name << "}\n"
1799                            << "\\floatname{" << type << "}{\\protect\\"
1800                            << type << "name}\n";
1801
1802                         // What missing here is to code to minimalize the code
1803                         // output so that the same floatstyle will not be
1804                         // used several times, when the same style is still in
1805                         // effect. (Lgb)
1806                 }
1807                 if (cit->second)
1808                         // The subfig package is loaded later
1809                         os << "\n\\AtBeginDocument{\\newsubfloat{" << from_ascii(fl.floattype()) << "}}\n";
1810         }
1811 }
1812
1813
1814 void LaTeXFeatures::resolveAlternatives()
1815 {
1816         for (Features::iterator it = features_.begin(); it != features_.end();) {
1817                 if (contains(*it, '|')) {
1818                         vector<string> const alternatives = getVectorFromString(*it, "|");
1819                         vector<string>::const_iterator const end = alternatives.end();
1820                         vector<string>::const_iterator ita = alternatives.begin();
1821                         // Is any alternative already required? => use that
1822                         for (; ita != end; ++ita) {
1823                                 if (isRequired(*ita))
1824                                         break;
1825                         }
1826                         // Is any alternative available? => use the first one
1827                         // (bug 9498)
1828                         if (ita == end) {
1829                                 for (ita = alternatives.begin(); ita != end; ++ita) {
1830                                         if (isAvailable(*ita)) {
1831                                                 require(*ita);
1832                                                 break;
1833                                         }
1834                                 }
1835                         }
1836                         // This will not work, but not requiring something
1837                         // would be more confusing
1838                         if (ita == end)
1839                                 require(alternatives.front());
1840                         features_.erase(it);
1841                         it = features_.begin();
1842                 } else
1843                         ++it;
1844         }
1845 }
1846
1847
1848 } // namespace lyx