]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/text.cpp
875df9fa96539fde2e9a3a3ac0768ce7fa03f97a
[lyx.git] / src / tex2lyx / text.cpp
1 /**
2  * \file tex2lyx/text.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  * \author Jean-Marc Lasgouttes
8  * \author Uwe Stöhr
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 // {[(
14
15 #include <config.h>
16
17 #include "tex2lyx.h"
18
19 #include "Context.h"
20 #include "Encoding.h"
21 #include "FloatList.h"
22 #include "LaTeXPackages.h"
23 #include "Layout.h"
24 #include "Length.h"
25 #include "Preamble.h"
26
27 #include "insets/ExternalTemplate.h"
28
29 #include "support/lassert.h"
30 #include "support/convert.h"
31 #include "support/FileName.h"
32 #include "support/filetools.h"
33 #include "support/lstrings.h"
34 #include "support/lyxtime.h"
35
36 #include <algorithm>
37 #include <iostream>
38 #include <map>
39 #include <sstream>
40 #include <vector>
41
42 using namespace std;
43 using namespace lyx::support;
44
45 namespace lyx {
46
47
48 namespace {
49
50 void output_arguments(ostream &, Parser &, bool, bool, bool, Context &,
51                       Layout::LaTeXArgMap const &);
52
53 }
54
55
56 void parse_text_in_inset(Parser & p, ostream & os, unsigned flags, bool outer,
57                 Context const & context, InsetLayout const * layout)
58 {
59         bool const forcePlainLayout =
60                 layout ? layout->forcePlainLayout() : false;
61         Context newcontext(true, context.textclass);
62         if (forcePlainLayout)
63                 newcontext.layout = &context.textclass.plainLayout();
64         else
65                 newcontext.font = context.font;
66         if (layout)
67                 output_arguments(os, p, outer, false, false, newcontext,
68                                  layout->latexargs());
69         parse_text(p, os, flags, outer, newcontext);
70         if (layout)
71                 output_arguments(os, p, outer, false, true, newcontext,
72                                  layout->postcommandargs());
73         newcontext.check_end_layout(os);
74 }
75
76
77 namespace {
78
79 void parse_text_in_inset(Parser & p, ostream & os, unsigned flags, bool outer,
80                 Context const & context, string const & name)
81 {
82         InsetLayout const * layout = 0;
83         DocumentClass::InsetLayouts::const_iterator it =
84                 context.textclass.insetLayouts().find(from_ascii(name));
85         if (it != context.textclass.insetLayouts().end())
86                 layout = &(it->second);
87         parse_text_in_inset(p, os, flags, outer, context, layout);
88 }
89
90 /// parses a paragraph snippet, useful for example for \\emph{...}
91 void parse_text_snippet(Parser & p, ostream & os, unsigned flags, bool outer,
92                 Context & context)
93 {
94         Context newcontext(context);
95         // Don't inherit the paragraph-level extra stuff
96         newcontext.par_extra_stuff.clear();
97         parse_text(p, os, flags, outer, newcontext);
98         // Make sure that we don't create invalid .lyx files
99         context.need_layout = newcontext.need_layout;
100         context.need_end_layout = newcontext.need_end_layout;
101 }
102
103
104 /*!
105  * Thin wrapper around parse_text_snippet() using a string.
106  *
107  * We completely ignore \c context.need_layout and \c context.need_end_layout,
108  * because our return value is not used directly (otherwise the stream version
109  * of parse_text_snippet() could be used). That means that the caller needs
110  * to do layout management manually.
111  * This is intended to parse text that does not create any layout changes.
112  */
113 string parse_text_snippet(Parser & p, unsigned flags, const bool outer,
114                   Context & context)
115 {
116         Context newcontext(context);
117         newcontext.need_layout = false;
118         newcontext.need_end_layout = false;
119         newcontext.new_layout_allowed = false;
120         // Avoid warning by Context::~Context()
121         newcontext.par_extra_stuff.clear();
122         ostringstream os;
123         parse_text_snippet(p, os, flags, outer, newcontext);
124         return os.str();
125 }
126
127
128 char const * const known_ref_commands[] = { "ref", "pageref", "vref",
129  "vpageref", "prettyref", "nameref", "eqref", 0 };
130
131 char const * const known_coded_ref_commands[] = { "ref", "pageref", "vref",
132  "vpageref", "formatted", "nameref", "eqref", 0 };
133
134 char const * const known_refstyle_commands[] = { "algref", "chapref", "corref",
135  "eqref", "enuref", "figref", "fnref", "lemref", "parref", "partref", "propref",
136  "secref", "subref", "tabref", "thmref", 0 };
137
138 char const * const known_refstyle_prefixes[] = { "alg", "chap", "cor",
139  "eq", "enu", "fig", "fn", "lem", "par", "part", "prop",
140  "sec", "sub", "tab", "thm", 0 };
141
142
143 /**
144  * supported CJK encodings
145  * JIS does not work with LyX's encoding conversion
146  */
147 const char * const supported_CJK_encodings[] = {
148 "EUC-JP", "KS", "GB", "UTF8",
149 "Bg5", /*"JIS",*/ "SJIS", 0};
150
151 /**
152  * the same as supported_CJK_encodings with their corresponding LyX language name
153  * FIXME: The mapping "UTF8" => "chinese-traditional" is only correct for files
154  *        created by LyX.
155  * NOTE: "Bg5", "JIS" and "SJIS" are not supported by LyX, on re-export the
156  *       encodings "UTF8", "EUC-JP" and "EUC-JP" will be used.
157  * please keep this in sync with supported_CJK_encodings line by line!
158  */
159 const char * const supported_CJK_languages[] = {
160 "japanese-cjk", "korean", "chinese-simplified", "chinese-traditional",
161 "chinese-traditional", /*"japanese-cjk",*/ "japanese-cjk", 0};
162
163 /*!
164  * natbib commands.
165  * The starred forms are also known except for "citefullauthor",
166  * "citeyear" and "citeyearpar".
167  */
168 char const * const known_natbib_commands[] = { "cite", "citet", "citep",
169 "citealt", "citealp", "citeauthor", "citeyear", "citeyearpar",
170 "citefullauthor", "Citet", "Citep", "Citealt", "Citealp", "Citeauthor", 0 };
171
172 /*!
173  * jurabib commands.
174  * No starred form other than "cite*" known.
175  */
176 char const * const known_jurabib_commands[] = { "cite", "citet", "citep",
177 "citealt", "citealp", "citeauthor", "citeyear", "citeyearpar",
178 // jurabib commands not (yet) supported by LyX:
179 // "fullcite",
180 // "footcite", "footcitet", "footcitep", "footcitealt", "footcitealp",
181 // "footciteauthor", "footciteyear", "footciteyearpar",
182 "citefield", "citetitle", 0 };
183
184 /// LaTeX names for quotes
185 char const * const known_quotes[] = { "dq", "guillemotleft", "flqq", "og",
186 "guillemotright", "frqq", "fg", "glq", "glqq", "textquoteleft", "grq", "grqq",
187 "quotedblbase", "textquotedblleft", "quotesinglbase", "textquoteright", "flq",
188 "guilsinglleft", "frq", "guilsinglright", 0};
189
190 /// the same as known_quotes with .lyx names
191 char const * const known_coded_quotes[] = { "prd", "ard", "ard", "ard",
192 "ald", "ald", "ald", "gls", "gld", "els", "els", "grd",
193 "gld", "grd", "gls", "ers", "fls",
194 "fls", "frs", "frs", 0};
195
196 /// LaTeX names for font sizes
197 char const * const known_sizes[] = { "tiny", "scriptsize", "footnotesize",
198 "small", "normalsize", "large", "Large", "LARGE", "huge", "Huge", 0};
199
200 /// the same as known_sizes with .lyx names
201 char const * const known_coded_sizes[] = { "tiny", "scriptsize", "footnotesize",
202 "small", "normal", "large", "larger", "largest", "huge", "giant", 0};
203
204 /// LaTeX 2.09 names for font families
205 char const * const known_old_font_families[] = { "rm", "sf", "tt", 0};
206
207 /// LaTeX names for font families
208 char const * const known_font_families[] = { "rmfamily", "sffamily",
209 "ttfamily", 0};
210
211 /// LaTeX names for font family changing commands
212 char const * const known_text_font_families[] = { "textrm", "textsf",
213 "texttt", 0};
214
215 /// The same as known_old_font_families, known_font_families and
216 /// known_text_font_families with .lyx names
217 char const * const known_coded_font_families[] = { "roman", "sans",
218 "typewriter", 0};
219
220 /// LaTeX 2.09 names for font series
221 char const * const known_old_font_series[] = { "bf", 0};
222
223 /// LaTeX names for font series
224 char const * const known_font_series[] = { "bfseries", "mdseries", 0};
225
226 /// LaTeX names for font series changing commands
227 char const * const known_text_font_series[] = { "textbf", "textmd", 0};
228
229 /// The same as known_old_font_series, known_font_series and
230 /// known_text_font_series with .lyx names
231 char const * const known_coded_font_series[] = { "bold", "medium", 0};
232
233 /// LaTeX 2.09 names for font shapes
234 char const * const known_old_font_shapes[] = { "it", "sl", "sc", 0};
235
236 /// LaTeX names for font shapes
237 char const * const known_font_shapes[] = { "itshape", "slshape", "scshape",
238 "upshape", 0};
239
240 /// LaTeX names for font shape changing commands
241 char const * const known_text_font_shapes[] = { "textit", "textsl", "textsc",
242 "textup", 0};
243
244 /// The same as known_old_font_shapes, known_font_shapes and
245 /// known_text_font_shapes with .lyx names
246 char const * const known_coded_font_shapes[] = { "italic", "slanted",
247 "smallcaps", "up", 0};
248
249 /// Known special characters which need skip_spaces_braces() afterwards
250 char const * const known_special_chars[] = {"ldots",
251 "lyxarrow", "textcompwordmark",
252 "slash", "textasciitilde", "textasciicircum", "textbackslash", 0};
253
254 /// the same as known_special_chars with .lyx names
255 char const * const known_coded_special_chars[] = {"\\SpecialChar \\ldots{}\n",
256 "\\SpecialChar \\menuseparator\n", "\\SpecialChar \\textcompwordmark{}\n",
257 "\\SpecialChar \\slash{}\n", "~", "^", "\n\\backslash\n", 0};
258
259 /*!
260  * Graphics file extensions known by the dvips driver of the graphics package.
261  * These extensions are used to complete the filename of an included
262  * graphics file if it does not contain an extension.
263  * The order must be the same that latex uses to find a file, because we
264  * will use the first extension that matches.
265  * This is only an approximation for the common cases. If we would want to
266  * do it right in all cases, we would need to know which graphics driver is
267  * used and know the extensions of every driver of the graphics package.
268  */
269 char const * const known_dvips_graphics_formats[] = {"eps", "ps", "eps.gz",
270 "ps.gz", "eps.Z", "ps.Z", 0};
271
272 /*!
273  * Graphics file extensions known by the pdftex driver of the graphics package.
274  * \sa known_dvips_graphics_formats
275  */
276 char const * const known_pdftex_graphics_formats[] = {"png", "pdf", "jpg",
277 "mps", "tif", 0};
278
279 /*!
280  * Known file extensions for TeX files as used by \\include.
281  */
282 char const * const known_tex_extensions[] = {"tex", 0};
283
284 /// spaces known by InsetSpace
285 char const * const known_spaces[] = { " ", "space", ",",
286 "thinspace", "quad", "qquad", "enspace", "enskip",
287 "negthinspace", "negmedspace", "negthickspace", "textvisiblespace",
288 "hfill", "dotfill", "hrulefill", "leftarrowfill", "rightarrowfill",
289 "upbracefill", "downbracefill", 0};
290
291 /// the same as known_spaces with .lyx names
292 char const * const known_coded_spaces[] = { "space{}", "space{}",
293 "thinspace{}", "thinspace{}", "quad{}", "qquad{}", "enspace{}", "enskip{}",
294 "negthinspace{}", "negmedspace{}", "negthickspace{}", "textvisiblespace{}",
295 "hfill{}", "dotfill{}", "hrulefill{}", "leftarrowfill{}", "rightarrowfill{}",
296 "upbracefill{}", "downbracefill{}", 0};
297
298 /// These are translated by LyX to commands like "\\LyX{}", so we have to put
299 /// them in ERT. "LaTeXe" must come before "LaTeX"!
300 char const * const known_phrases[] = {"LyX", "TeX", "LaTeXe", "LaTeX", 0};
301 char const * const known_coded_phrases[] = {"LyX", "TeX", "LaTeX2e", "LaTeX", 0};
302 int const known_phrase_lengths[] = {3, 5, 7, 0};
303
304 /// known TIPA combining diacritical marks
305 char const * const known_tipa_marks[] = {"textsubwedge", "textsubumlaut",
306 "textsubtilde", "textseagull", "textsubbridge", "textinvsubbridge",
307 "textsubsquare", "textsubrhalfring", "textsublhalfring", "textsubplus",
308 "textovercross", "textsubarch", "textsuperimposetilde", "textraising",
309 "textlowering", "textadvancing", "textretracting", "textdoublegrave",
310 "texthighrise", "textlowrise", "textrisefall", "textsyllabic",
311 "textsubring", 0};
312
313 /// TIPA tones that need special handling
314 char const * const known_tones[] = {"15", "51", "45", "12", "454", 0};
315
316 // string to store the float type to be able to determine the type of subfloats
317 string float_type = "";
318
319
320 /// splits "x=z, y=b" into a map and an ordered keyword vector
321 void split_map(string const & s, map<string, string> & res, vector<string> & keys)
322 {
323         vector<string> v;
324         split(s, v);
325         res.clear();
326         keys.resize(v.size());
327         for (size_t i = 0; i < v.size(); ++i) {
328                 size_t const pos   = v[i].find('=');
329                 string const index = trimSpaceAndEol(v[i].substr(0, pos));
330                 string const value = trimSpaceAndEol(v[i].substr(pos + 1, string::npos));
331                 res[index] = value;
332                 keys[i] = index;
333         }
334 }
335
336
337 /*!
338  * Split a LaTeX length into value and unit.
339  * The latter can be a real unit like "pt", or a latex length variable
340  * like "\textwidth". The unit may contain additional stuff like glue
341  * lengths, but we don't care, because such lengths are ERT anyway.
342  * \returns true if \p value and \p unit are valid.
343  */
344 bool splitLatexLength(string const & len, string & value, string & unit)
345 {
346         if (len.empty())
347                 return false;
348         const string::size_type i = len.find_first_not_of(" -+0123456789.,");
349         //'4,5' is a valid LaTeX length number. Change it to '4.5'
350         string const length = subst(len, ',', '.');
351         if (i == string::npos)
352                 return false;
353         if (i == 0) {
354                 if (len[0] == '\\') {
355                         // We had something like \textwidth without a factor
356                         value = "1.0";
357                 } else {
358                         return false;
359                 }
360         } else {
361                 value = trimSpaceAndEol(string(length, 0, i));
362         }
363         if (value == "-")
364                 value = "-1.0";
365         // 'cM' is a valid LaTeX length unit. Change it to 'cm'
366         if (contains(len, '\\'))
367                 unit = trimSpaceAndEol(string(len, i));
368         else
369                 unit = ascii_lowercase(trimSpaceAndEol(string(len, i)));
370         return true;
371 }
372
373
374 /// A simple function to translate a latex length to something LyX can
375 /// understand. Not perfect, but rather best-effort.
376 bool translate_len(string const & length, string & valstring, string & unit)
377 {
378         if (!splitLatexLength(length, valstring, unit))
379                 return false;
380         // LyX uses percent values
381         double value;
382         istringstream iss(valstring);
383         iss >> value;
384         value *= 100;
385         ostringstream oss;
386         oss << value;
387         string const percentval = oss.str();
388         // a normal length
389         if (unit.empty() || unit[0] != '\\')
390                 return true;
391         string::size_type const i = unit.find(' ');
392         string const endlen = (i == string::npos) ? string() : string(unit, i);
393         if (unit == "\\textwidth") {
394                 valstring = percentval;
395                 unit = "text%" + endlen;
396         } else if (unit == "\\columnwidth") {
397                 valstring = percentval;
398                 unit = "col%" + endlen;
399         } else if (unit == "\\paperwidth") {
400                 valstring = percentval;
401                 unit = "page%" + endlen;
402         } else if (unit == "\\linewidth") {
403                 valstring = percentval;
404                 unit = "line%" + endlen;
405         } else if (unit == "\\paperheight") {
406                 valstring = percentval;
407                 unit = "pheight%" + endlen;
408         } else if (unit == "\\textheight") {
409                 valstring = percentval;
410                 unit = "theight%" + endlen;
411         }
412         return true;
413 }
414
415 }
416
417
418 string translate_len(string const & length)
419 {
420         string unit;
421         string value;
422         if (translate_len(length, value, unit))
423                 return value + unit;
424         // If the input is invalid, return what we have.
425         return length;
426 }
427
428
429 namespace {
430
431 /*!
432  * Translates a LaTeX length into \p value, \p unit and
433  * \p special parts suitable for a box inset.
434  * The difference from translate_len() is that a box inset knows about
435  * some special "units" that are stored in \p special.
436  */
437 void translate_box_len(string const & length, string & value, string & unit, string & special)
438 {
439         if (translate_len(length, value, unit)) {
440                 if (unit == "\\height" || unit == "\\depth" ||
441                     unit == "\\totalheight" || unit == "\\width") {
442                         special = unit.substr(1);
443                         // The unit is not used, but LyX requires a dummy setting
444                         unit = "in";
445                 } else
446                         special = "none";
447         } else {
448                 value.clear();
449                 unit = length;
450                 special = "none";
451         }
452 }
453
454
455 /*!
456  * Find a file with basename \p name in path \p path and an extension
457  * in \p extensions.
458  */
459 string find_file(string const & name, string const & path,
460                  char const * const * extensions)
461 {
462         for (char const * const * what = extensions; *what; ++what) {
463                 string const trial = addExtension(name, *what);
464                 if (makeAbsPath(trial, path).exists())
465                         return trial;
466         }
467         return string();
468 }
469
470
471 void begin_inset(ostream & os, string const & name)
472 {
473         os << "\n\\begin_inset " << name;
474 }
475
476
477 void begin_command_inset(ostream & os, string const & name,
478                          string const & latexname)
479 {
480         begin_inset(os, "CommandInset ");
481         os << name << "\nLatexCommand " << latexname << '\n';
482 }
483
484
485 void end_inset(ostream & os)
486 {
487         os << "\n\\end_inset\n\n";
488 }
489
490
491 bool skip_braces(Parser & p)
492 {
493         if (p.next_token().cat() != catBegin)
494                 return false;
495         p.get_token();
496         if (p.next_token().cat() == catEnd) {
497                 p.get_token();
498                 return true;
499         }
500         p.putback();
501         return false;
502 }
503
504
505 /// replace LaTeX commands in \p s from the unicodesymbols file with their
506 /// unicode points
507 docstring convert_unicodesymbols(docstring s)
508 {
509         odocstringstream os;
510         for (size_t i = 0; i < s.size();) {
511                 if (s[i] != '\\') {
512                         os.put(s[i++]);
513                         continue;
514                 }
515                 s = s.substr(i);
516                 bool termination;
517                 docstring rem;
518                 set<string> req;
519                 docstring parsed = encodings.fromLaTeXCommand(s,
520                                 Encodings::TEXT_CMD, termination, rem, &req);
521                 set<string>::const_iterator it = req.begin();
522                 set<string>::const_iterator en = req.end();
523                 for (; it != en; ++it)
524                         preamble.registerAutomaticallyLoadedPackage(*it);
525                 os << parsed;
526                 s = rem;
527                 if (s.empty() || s[0] != '\\')
528                         i = 0;
529                 else
530                         i = 1;
531         }
532         return os.str();
533 }
534
535
536 /// try to convert \p s to a valid InsetCommand argument
537 string convert_command_inset_arg(string s)
538 {
539         if (isAscii(s))
540                 // since we don't know the input encoding we can't use from_utf8
541                 s = to_utf8(convert_unicodesymbols(from_ascii(s)));
542         // LyX cannot handle newlines in a latex command
543         return subst(s, "\n", " ");
544 }
545
546
547 void output_ert(ostream & os, string const & s, Context & context)
548 {
549         context.check_layout(os);
550         for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
551                 if (*it == '\\')
552                         os << "\n\\backslash\n";
553                 else if (*it == '\n') {
554                         context.new_paragraph(os);
555                         context.check_layout(os);
556                 } else
557                         os << *it;
558         }
559         context.check_end_layout(os);
560 }
561
562
563 void output_ert_inset(ostream & os, string const & s, Context & context)
564 {
565         // We must have a valid layout before outputting the ERT inset.
566         context.check_layout(os);
567         Context newcontext(true, context.textclass);
568         InsetLayout const & layout = context.textclass.insetLayout(from_ascii("ERT"));
569         if (layout.forcePlainLayout())
570                 newcontext.layout = &context.textclass.plainLayout();
571         begin_inset(os, "ERT");
572         os << "\nstatus collapsed\n";
573         output_ert(os, s, newcontext);
574         end_inset(os);
575 }
576
577
578 Layout const * findLayout(TextClass const & textclass, string const & name, bool command)
579 {
580         Layout const * layout = findLayoutWithoutModule(textclass, name, command);
581         if (layout)
582                 return layout;
583         if (checkModule(name, command))
584                 return findLayoutWithoutModule(textclass, name, command);
585         return layout;
586 }
587
588
589 InsetLayout const * findInsetLayout(TextClass const & textclass, string const & name, bool command)
590 {
591         InsetLayout const * insetlayout = findInsetLayoutWithoutModule(textclass, name, command);
592         if (insetlayout)
593                 return insetlayout;
594         if (checkModule(name, command))
595                 return findInsetLayoutWithoutModule(textclass, name, command);
596         return insetlayout;
597 }
598
599
600 void eat_whitespace(Parser &, ostream &, Context &, bool);
601
602
603 /*!
604  * Skips whitespace and braces.
605  * This should be called after a command has been parsed that is not put into
606  * ERT, and where LyX adds "{}" if needed.
607  */
608 void skip_spaces_braces(Parser & p, bool keepws = false)
609 {
610         /* The following four examples produce the same typeset output and
611            should be handled by this function:
612            - abc \j{} xyz
613            - abc \j {} xyz
614            - abc \j
615              {} xyz
616            - abc \j %comment
617              {} xyz
618          */
619         // Unfortunately we need to skip comments, too.
620         // We can't use eat_whitespace since writing them after the {}
621         // results in different output in some cases.
622         bool const skipped_spaces = p.skip_spaces(true);
623         bool const skipped_braces = skip_braces(p);
624         if (keepws && skipped_spaces && !skipped_braces)
625                 // put back the space (it is better handled by check_space)
626                 p.unskip_spaces(true);
627 }
628
629
630 void output_arguments(ostream & os, Parser & p, bool outer, bool need_layout, bool post,
631                       Context & context, Layout::LaTeXArgMap const & latexargs)
632 {
633         if (need_layout) {
634                 context.check_layout(os);
635                 need_layout = false;
636         } else
637                 need_layout = true;
638         int i = 0;
639         Layout::LaTeXArgMap::const_iterator lait = latexargs.begin();
640         Layout::LaTeXArgMap::const_iterator const laend = latexargs.end();
641         for (; lait != laend; ++lait) {
642                 ++i;
643                 eat_whitespace(p, os, context, false);
644                 if (lait->second.mandatory) {
645                         if (p.next_token().cat() != catBegin)
646                                 break;
647                         p.get_token(); // eat '{'
648                         if (need_layout) {
649                                 context.check_layout(os);
650                                 need_layout = false;
651                         }
652                         begin_inset(os, "Argument ");
653                         if (post)
654                                 os << "post:";
655                         os << i << "\nstatus collapsed\n\n";
656                         parse_text_in_inset(p, os, FLAG_BRACE_LAST, outer, context);
657                         end_inset(os);
658                 } else {
659                         if (p.next_token().cat() == catEscape ||
660                             p.next_token().character() != '[')
661                                 continue;
662                         p.get_token(); // eat '['
663                         if (need_layout) {
664                                 context.check_layout(os);
665                                 need_layout = false;
666                         }
667                         begin_inset(os, "Argument ");
668                         if (post)
669                                 os << "post:";
670                         os << i << "\nstatus collapsed\n\n";
671                         parse_text_in_inset(p, os, FLAG_BRACK_LAST, outer, context);
672                         end_inset(os);
673                 }
674                 eat_whitespace(p, os, context, false);
675         }
676 }
677
678
679 void output_command_layout(ostream & os, Parser & p, bool outer,
680                            Context & parent_context,
681                            Layout const * newlayout)
682 {
683         TeXFont const oldFont = parent_context.font;
684         // save the current font size
685         string const size = oldFont.size;
686         // reset the font size to default, because the font size switches
687         // don't affect section headings and the like
688         parent_context.font.size = Context::normalfont.size;
689         // we only need to write the font change if we have an open layout
690         if (!parent_context.atParagraphStart())
691                 output_font_change(os, oldFont, parent_context.font);
692         parent_context.check_end_layout(os);
693         Context context(true, parent_context.textclass, newlayout,
694                         parent_context.layout, parent_context.font);
695         if (parent_context.deeper_paragraph) {
696                 // We are beginning a nested environment after a
697                 // deeper paragraph inside the outer list environment.
698                 // Therefore we don't need to output a "begin deeper".
699                 context.need_end_deeper = true;
700         }
701         context.check_deeper(os);
702         output_arguments(os, p, outer, true, false, context,
703                          context.layout->latexargs());
704         parse_text(p, os, FLAG_ITEM, outer, context);
705         output_arguments(os, p, outer, false, true, context,
706                          context.layout->postcommandargs());
707         context.check_end_layout(os);
708         if (parent_context.deeper_paragraph) {
709                 // We must suppress the "end deeper" because we
710                 // suppressed the "begin deeper" above.
711                 context.need_end_deeper = false;
712         }
713         context.check_end_deeper(os);
714         // We don't need really a new paragraph, but
715         // we must make sure that the next item gets a \begin_layout.
716         parent_context.new_paragraph(os);
717         // Set the font size to the original value. No need to output it here
718         // (Context::begin_layout() will do that if needed)
719         parent_context.font.size = size;
720 }
721
722
723 /*!
724  * Output a space if necessary.
725  * This function gets called for every whitespace token.
726  *
727  * We have three cases here:
728  * 1. A space must be suppressed. Example: The lyxcode case below
729  * 2. A space may be suppressed. Example: Spaces before "\par"
730  * 3. A space must not be suppressed. Example: A space between two words
731  *
732  * We currently handle only 1. and 3 and from 2. only the case of
733  * spaces before newlines as a side effect.
734  *
735  * 2. could be used to suppress as many spaces as possible. This has two effects:
736  * - Reimporting LyX generated LaTeX files changes almost no whitespace
737  * - Superflous whitespace from non LyX generated LaTeX files is removed.
738  * The drawback is that the logic inside the function becomes
739  * complicated, and that is the reason why it is not implemented.
740  */
741 void check_space(Parser & p, ostream & os, Context & context)
742 {
743         Token const next = p.next_token();
744         Token const curr = p.curr_token();
745         // A space before a single newline and vice versa must be ignored
746         // LyX emits a newline before \end{lyxcode}.
747         // This newline must be ignored,
748         // otherwise LyX will add an additional protected space.
749         if (next.cat() == catSpace ||
750             next.cat() == catNewline ||
751             (next.cs() == "end" && context.layout->free_spacing && curr.cat() == catNewline)) {
752                 return;
753         }
754         context.check_layout(os);
755         os << ' ';
756 }
757
758
759 /*!
760  * Parse all arguments of \p command
761  */
762 void parse_arguments(string const & command,
763                      vector<ArgumentType> const & template_arguments,
764                      Parser & p, ostream & os, bool outer, Context & context)
765 {
766         string ert = command;
767         size_t no_arguments = template_arguments.size();
768         for (size_t i = 0; i < no_arguments; ++i) {
769                 switch (template_arguments[i]) {
770                 case required:
771                 case req_group:
772                         // This argument contains regular LaTeX
773                         output_ert_inset(os, ert + '{', context);
774                         eat_whitespace(p, os, context, false);
775                         if (template_arguments[i] == required)
776                                 parse_text(p, os, FLAG_ITEM, outer, context);
777                         else
778                                 parse_text_snippet(p, os, FLAG_ITEM, outer, context);
779                         ert = "}";
780                         break;
781                 case item:
782                         // This argument consists only of a single item.
783                         // The presence of '{' or not must be preserved.
784                         p.skip_spaces();
785                         if (p.next_token().cat() == catBegin)
786                                 ert += '{' + p.verbatim_item() + '}';
787                         else
788                                 ert += p.verbatim_item();
789                         break;
790                 case displaymath:
791                 case verbatim:
792                         // This argument may contain special characters
793                         ert += '{' + p.verbatim_item() + '}';
794                         break;
795                 case optional:
796                 case opt_group:
797                         // true because we must not eat whitespace
798                         // if an optional arg follows we must not strip the
799                         // brackets from this one
800                         if (i < no_arguments - 1 &&
801                             template_arguments[i+1] == optional)
802                                 ert += p.getFullOpt(true);
803                         else
804                                 ert += p.getOpt(true);
805                         break;
806                 }
807         }
808         output_ert_inset(os, ert, context);
809 }
810
811
812 /*!
813  * Check whether \p command is a known command. If yes,
814  * handle the command with all arguments.
815  * \return true if the command was parsed, false otherwise.
816  */
817 bool parse_command(string const & command, Parser & p, ostream & os,
818                    bool outer, Context & context)
819 {
820         if (known_commands.find(command) != known_commands.end()) {
821                 parse_arguments(command, known_commands[command], p, os,
822                                 outer, context);
823                 return true;
824         }
825         return false;
826 }
827
828
829 /// Parses a minipage or parbox
830 void parse_box(Parser & p, ostream & os, unsigned outer_flags,
831                unsigned inner_flags, bool outer, Context & parent_context,
832                string const & outer_type, string const & special,
833                string const & inner_type)
834 {
835         string position;
836         string inner_pos;
837         string hor_pos = "c";
838         // We need to set the height to the LaTeX default of 1\\totalheight
839         // for the case when no height argument is given
840         string height_value = "1";
841         string height_unit = "in";
842         string height_special = "totalheight";
843         string latex_height;
844         string width_value;
845         string width_unit;
846         string latex_width;
847         string width_special = "none";
848         if (!inner_type.empty() && p.hasOpt()) {
849                 if (inner_type != "makebox")
850                         position = p.getArg('[', ']');
851                 else {
852                         latex_width = p.getArg('[', ']');
853                         translate_box_len(latex_width, width_value, width_unit, width_special);
854                         position = "t";
855                 }
856                 if (position != "t" && position != "c" && position != "b") {
857                         cerr << "invalid position " << position << " for "
858                              << inner_type << endl;
859                         position = "c";
860                 }
861                 if (p.hasOpt()) {
862                         if (inner_type != "makebox") {
863                                 latex_height = p.getArg('[', ']');
864                                 translate_box_len(latex_height, height_value, height_unit, height_special);
865                         } else {
866                                 string const opt = p.getArg('[', ']');
867                                 if (!opt.empty()) {
868                                         hor_pos = opt;
869                                         if (hor_pos != "l" && hor_pos != "c" &&
870                                             hor_pos != "r" && hor_pos != "s") {
871                                                 cerr << "invalid hor_pos " << hor_pos
872                                                      << " for " << inner_type << endl;
873                                                 hor_pos = "c";
874                                         }
875                                 }
876                         }
877
878                         if (p.hasOpt()) {
879                                 inner_pos = p.getArg('[', ']');
880                                 if (inner_pos != "c" && inner_pos != "t" &&
881                                     inner_pos != "b" && inner_pos != "s") {
882                                         cerr << "invalid inner_pos "
883                                              << inner_pos << " for "
884                                              << inner_type << endl;
885                                         inner_pos = position;
886                                 }
887                         }
888                 }
889         }
890         if (inner_type.empty()) {
891                 if (special.empty() && outer_type != "framebox")
892                         latex_width = "1\\columnwidth";
893                 else {
894                         Parser p2(special);
895                         latex_width = p2.getArg('[', ']');
896                         string const opt = p2.getArg('[', ']');
897                         if (!opt.empty()) {
898                                 hor_pos = opt;
899                                 if (hor_pos != "l" && hor_pos != "c" &&
900                                     hor_pos != "r" && hor_pos != "s") {
901                                         cerr << "invalid hor_pos " << hor_pos
902                                              << " for " << outer_type << endl;
903                                         hor_pos = "c";
904                                 }
905                         }
906                 }
907         } else if (inner_type != "makebox")
908                 latex_width = p.verbatim_item();
909         // if e.g. only \ovalbox{content} was used, set the width to 1\columnwidth
910         // as this is LyX's standard for such cases (except for makebox)
911         // \framebox is more special and handled below
912         if (latex_width.empty() && inner_type != "makebox"
913                 && outer_type != "framebox")
914                 latex_width = "1\\columnwidth";
915
916         translate_len(latex_width, width_value, width_unit);
917
918         bool shadedparbox = false;
919         if (inner_type == "shaded") {
920                 eat_whitespace(p, os, parent_context, false);
921                 if (outer_type == "parbox") {
922                         // Eat '{'
923                         if (p.next_token().cat() == catBegin)
924                                 p.get_token();
925                         eat_whitespace(p, os, parent_context, false);
926                         shadedparbox = true;
927                 }
928                 p.get_token();
929                 p.getArg('{', '}');
930         }
931         // If we already read the inner box we have to push the inner env
932         if (!outer_type.empty() && !inner_type.empty() &&
933             (inner_flags & FLAG_END))
934                 active_environments.push_back(inner_type);
935         // LyX can't handle length variables
936         bool use_ert = contains(width_unit, '\\') || contains(height_unit, '\\');
937         if (!use_ert && !outer_type.empty() && !inner_type.empty()) {
938                 // Look whether there is some content after the end of the
939                 // inner box, but before the end of the outer box.
940                 // If yes, we need to output ERT.
941                 p.pushPosition();
942                 if (inner_flags & FLAG_END)
943                         p.ertEnvironment(inner_type);
944                 else
945                         p.verbatim_item();
946                 p.skip_spaces(true);
947                 bool const outer_env(outer_type == "framed" || outer_type == "minipage");
948                 if ((outer_env && p.next_token().asInput() != "\\end") ||
949                     (!outer_env && p.next_token().cat() != catEnd)) {
950                         // something is between the end of the inner box and
951                         // the end of the outer box, so we need to use ERT.
952                         use_ert = true;
953                 }
954                 p.popPosition();
955         }
956         // if only \makebox{content} was used we can set its width to 1\width
957         // because this identic and also identic to \mbox
958         // this doesn't work for \framebox{content}, thus we have to use ERT for this
959         if (latex_width.empty() && inner_type == "makebox") {
960                 width_value = "1";
961                 width_unit = "in";
962                 width_special = "width";
963         } else if (latex_width.empty() && outer_type == "framebox") {
964                 width_value.clear();
965                 width_unit.clear();
966                 width_special = "none";
967         }
968         if (use_ert) {
969                 ostringstream ss;
970                 if (!outer_type.empty()) {
971                         if (outer_flags & FLAG_END)
972                                 ss << "\\begin{" << outer_type << '}';
973                         else {
974                                 ss << '\\' << outer_type << '{';
975                                 if (!special.empty())
976                                         ss << special;
977                         }
978                 }
979                 if (!inner_type.empty()) {
980                         if (inner_type != "shaded") {
981                                 if (inner_flags & FLAG_END)
982                                         ss << "\\begin{" << inner_type << '}';
983                                 else
984                                         ss << '\\' << inner_type;
985                         }
986                         if (!position.empty())
987                                 ss << '[' << position << ']';
988                         if (!latex_height.empty())
989                                 ss << '[' << latex_height << ']';
990                         if (!inner_pos.empty())
991                                 ss << '[' << inner_pos << ']';
992                         ss << '{' << latex_width << '}';
993                         if (!(inner_flags & FLAG_END))
994                                 ss << '{';
995                 }
996                 if (inner_type == "shaded")
997                         ss << "\\begin{shaded}";
998                 output_ert_inset(os, ss.str(), parent_context);
999                 if (!inner_type.empty()) {
1000                         parse_text(p, os, inner_flags, outer, parent_context);
1001                         if (inner_flags & FLAG_END)
1002                                 output_ert_inset(os, "\\end{" + inner_type + '}',
1003                                            parent_context);
1004                         else
1005                                 output_ert_inset(os, "}", parent_context);
1006                 }
1007                 if (!outer_type.empty()) {
1008                         // If we already read the inner box we have to pop
1009                         // the inner env
1010                         if (!inner_type.empty() && (inner_flags & FLAG_END))
1011                                 active_environments.pop_back();
1012
1013                         // Ensure that the end of the outer box is parsed correctly:
1014                         // The opening brace has been eaten by parse_outer_box()
1015                         if (!outer_type.empty() && (outer_flags & FLAG_ITEM)) {
1016                                 outer_flags &= ~FLAG_ITEM;
1017                                 outer_flags |= FLAG_BRACE_LAST;
1018                         }
1019                         parse_text(p, os, outer_flags, outer, parent_context);
1020                         if (outer_flags & FLAG_END)
1021                                 output_ert_inset(os, "\\end{" + outer_type + '}',
1022                                            parent_context);
1023                         else
1024                                 output_ert_inset(os, "}", parent_context);
1025                 }
1026         } else {
1027                 // LyX does not like empty positions, so we have
1028                 // to set them to the LaTeX default values here.
1029                 if (position.empty())
1030                         position = "c";
1031                 if (inner_pos.empty())
1032                         inner_pos = position;
1033                 parent_context.check_layout(os);
1034                 begin_inset(os, "Box ");
1035                 if (outer_type == "framed")
1036                         os << "Framed\n";
1037                 else if (outer_type == "framebox" || outer_type == "fbox")
1038                         os << "Boxed\n";
1039                 else if (outer_type == "shadowbox")
1040                         os << "Shadowbox\n";
1041                 else if ((outer_type == "shaded" && inner_type.empty()) ||
1042                              (outer_type == "minipage" && inner_type == "shaded") ||
1043                              (outer_type == "parbox" && inner_type == "shaded")) {
1044                         os << "Shaded\n";
1045                         preamble.registerAutomaticallyLoadedPackage("color");
1046                 } else if (outer_type == "doublebox")
1047                         os << "Doublebox\n";
1048                 else if (outer_type.empty() || outer_type == "mbox")
1049                         os << "Frameless\n";
1050                 else
1051                         os << outer_type << '\n';
1052                 os << "position \"" << position << "\"\n";
1053                 os << "hor_pos \"" << hor_pos << "\"\n";
1054                 if (outer_type == "mbox")
1055                         os << "has_inner_box 1\n";
1056                 else
1057                         os << "has_inner_box " << !inner_type.empty() << "\n";
1058                 os << "inner_pos \"" << inner_pos << "\"\n";
1059                 os << "use_parbox " << (inner_type == "parbox" || shadedparbox)
1060                    << '\n';
1061                 if (outer_type == "mbox")
1062                         os << "use_makebox 1\n";
1063                 else
1064                         os << "use_makebox " << (inner_type == "makebox") << '\n';
1065                 if (outer_type == "fbox" || outer_type == "mbox")
1066                         os << "width \"\"\n";
1067                 else
1068                         os << "width \"" << width_value << width_unit << "\"\n";
1069                 os << "special \"" << width_special << "\"\n";
1070                 os << "height \"" << height_value << height_unit << "\"\n";
1071                 os << "height_special \"" << height_special << "\"\n";
1072                 os << "status open\n\n";
1073
1074                 // Unfortunately we can't use parse_text_in_inset:
1075                 // InsetBox::forcePlainLayout() is hard coded and does not
1076                 // use the inset layout. Apart from that do we call parse_text
1077                 // up to two times, but need only one check_end_layout.
1078                 bool const forcePlainLayout =
1079                         (!inner_type.empty() || inner_type == "makebox") &&
1080                         outer_type != "shaded" && outer_type != "framed";
1081                 Context context(true, parent_context.textclass);
1082                 if (forcePlainLayout)
1083                         context.layout = &context.textclass.plainLayout();
1084                 else
1085                         context.font = parent_context.font;
1086
1087                 // If we have no inner box the contents will be read with the outer box
1088                 if (!inner_type.empty())
1089                         parse_text(p, os, inner_flags, outer, context);
1090
1091                 // Ensure that the end of the outer box is parsed correctly:
1092                 // The opening brace has been eaten by parse_outer_box()
1093                 if (!outer_type.empty() && (outer_flags & FLAG_ITEM)) {
1094                         outer_flags &= ~FLAG_ITEM;
1095                         outer_flags |= FLAG_BRACE_LAST;
1096                 }
1097
1098                 // Find end of outer box, output contents if inner_type is
1099                 // empty and output possible comments
1100                 if (!outer_type.empty()) {
1101                         // If we already read the inner box we have to pop
1102                         // the inner env
1103                         if (!inner_type.empty() && (inner_flags & FLAG_END))
1104                                 active_environments.pop_back();
1105                         // This does not output anything but comments if
1106                         // inner_type is not empty (see use_ert)
1107                         parse_text(p, os, outer_flags, outer, context);
1108                 }
1109
1110                 context.check_end_layout(os);
1111                 end_inset(os);
1112 #ifdef PRESERVE_LAYOUT
1113                 // LyX puts a % after the end of the minipage
1114                 if (p.next_token().cat() == catNewline && p.next_token().cs().size() > 1) {
1115                         // new paragraph
1116                         //output_ert_inset(os, "%dummy", parent_context);
1117                         p.get_token();
1118                         p.skip_spaces();
1119                         parent_context.new_paragraph(os);
1120                 }
1121                 else if (p.next_token().cat() == catSpace || p.next_token().cat() == catNewline) {
1122                         //output_ert_inset(os, "%dummy", parent_context);
1123                         p.get_token();
1124                         p.skip_spaces();
1125                         // We add a protected space if something real follows
1126                         if (p.good() && p.next_token().cat() != catComment) {
1127                                 begin_inset(os, "space ~\n");
1128                                 end_inset(os);
1129                         }
1130                 }
1131 #endif
1132         }
1133 }
1134
1135
1136 void parse_outer_box(Parser & p, ostream & os, unsigned flags, bool outer,
1137                      Context & parent_context, string const & outer_type,
1138                      string const & special)
1139 {
1140         eat_whitespace(p, os, parent_context, false);
1141         if (flags & FLAG_ITEM) {
1142                 // Eat '{'
1143                 if (p.next_token().cat() == catBegin)
1144                         p.get_token();
1145                 else
1146                         cerr << "Warning: Ignoring missing '{' after \\"
1147                              << outer_type << '.' << endl;
1148                 eat_whitespace(p, os, parent_context, false);
1149         }
1150         string inner;
1151         unsigned int inner_flags = 0;
1152         p.pushPosition();
1153         if (outer_type == "minipage" || outer_type == "parbox") {
1154                 p.skip_spaces(true);
1155                 while (p.hasOpt()) {
1156                         p.getArg('[', ']');
1157                         p.skip_spaces(true);
1158                 }
1159                 p.getArg('{', '}');
1160                 p.skip_spaces(true);
1161                 if (outer_type == "parbox") {
1162                         // Eat '{'
1163                         if (p.next_token().cat() == catBegin)
1164                                 p.get_token();
1165                         p.skip_spaces(true);
1166                 }
1167         }
1168         if (outer_type == "shaded" || outer_type == "fbox"
1169                 || outer_type == "mbox") {
1170                 // These boxes never have an inner box
1171                 ;
1172         } else if (p.next_token().asInput() == "\\parbox") {
1173                 inner = p.get_token().cs();
1174                 inner_flags = FLAG_ITEM;
1175         } else if (p.next_token().asInput() == "\\begin") {
1176                 // Is this a minipage or shaded box?
1177                 p.pushPosition();
1178                 p.get_token();
1179                 inner = p.getArg('{', '}');
1180                 p.popPosition();
1181                 if (inner == "minipage" || inner == "shaded")
1182                         inner_flags = FLAG_END;
1183                 else
1184                         inner = "";
1185         }
1186         p.popPosition();
1187         if (inner_flags == FLAG_END) {
1188                 if (inner != "shaded")
1189                 {
1190                         p.get_token();
1191                         p.getArg('{', '}');
1192                         eat_whitespace(p, os, parent_context, false);
1193                 }
1194                 parse_box(p, os, flags, FLAG_END, outer, parent_context,
1195                           outer_type, special, inner);
1196         } else {
1197                 if (inner_flags == FLAG_ITEM) {
1198                         p.get_token();
1199                         eat_whitespace(p, os, parent_context, false);
1200                 }
1201                 parse_box(p, os, flags, inner_flags, outer, parent_context,
1202                           outer_type, special, inner);
1203         }
1204 }
1205
1206
1207 void parse_listings(Parser & p, ostream & os, Context & parent_context, bool in_line)
1208 {
1209         parent_context.check_layout(os);
1210         begin_inset(os, "listings\n");
1211         if (p.hasOpt()) {
1212                 string arg = p.verbatimOption();
1213                 os << "lstparams " << '"' << arg << '"' << '\n';
1214                 if (arg.find("\\color") != string::npos)
1215                         preamble.registerAutomaticallyLoadedPackage("color");
1216         }
1217         if (in_line)
1218                 os << "inline true\n";
1219         else
1220                 os << "inline false\n";
1221         os << "status collapsed\n";
1222         Context context(true, parent_context.textclass);
1223         context.layout = &parent_context.textclass.plainLayout();
1224         string s;
1225         if (in_line) {
1226                 // set catcodes to verbatim early, just in case.
1227                 p.setCatcodes(VERBATIM_CATCODES);
1228                 string delim = p.get_token().asInput();
1229                 //FIXME: handler error condition
1230                 s = p.verbatimStuff(delim).second;
1231 //              context.new_paragraph(os);
1232         } else
1233                 s = p.verbatimEnvironment("lstlisting");
1234         output_ert(os, s, context);
1235         end_inset(os);
1236 }
1237
1238
1239 /// parse an unknown environment
1240 void parse_unknown_environment(Parser & p, string const & name, ostream & os,
1241                                unsigned flags, bool outer,
1242                                Context & parent_context)
1243 {
1244         if (name == "tabbing")
1245                 // We need to remember that we have to handle '\=' specially
1246                 flags |= FLAG_TABBING;
1247
1248         // We need to translate font changes and paragraphs inside the
1249         // environment to ERT if we have a non standard font.
1250         // Otherwise things like
1251         // \large\begin{foo}\huge bar\end{foo}
1252         // will not work.
1253         bool const specialfont =
1254                 (parent_context.font != parent_context.normalfont);
1255         bool const new_layout_allowed = parent_context.new_layout_allowed;
1256         if (specialfont)
1257                 parent_context.new_layout_allowed = false;
1258         output_ert_inset(os, "\\begin{" + name + "}", parent_context);
1259         parse_text_snippet(p, os, flags, outer, parent_context);
1260         output_ert_inset(os, "\\end{" + name + "}", parent_context);
1261         if (specialfont)
1262                 parent_context.new_layout_allowed = new_layout_allowed;
1263 }
1264
1265
1266 void parse_environment(Parser & p, ostream & os, bool outer,
1267                        string & last_env, Context & parent_context)
1268 {
1269         Layout const * newlayout;
1270         InsetLayout const * newinsetlayout = 0;
1271         string const name = p.getArg('{', '}');
1272         const bool is_starred = suffixIs(name, '*');
1273         string const unstarred_name = rtrim(name, "*");
1274         active_environments.push_back(name);
1275
1276         if (is_math_env(name)) {
1277                 parent_context.check_layout(os);
1278                 begin_inset(os, "Formula ");
1279                 os << "\\begin{" << name << "}";
1280                 parse_math(p, os, FLAG_END, MATH_MODE);
1281                 os << "\\end{" << name << "}";
1282                 end_inset(os);
1283                 if (is_display_math_env(name)) {
1284                         // Prevent the conversion of a line break to a space
1285                         // (bug 7668). This does not change the output, but
1286                         // looks ugly in LyX.
1287                         eat_whitespace(p, os, parent_context, false);
1288                 }
1289         }
1290
1291         else if (is_known(name, preamble.polyglossia_languages)) {
1292                 // We must begin a new paragraph if not already done
1293                 if (! parent_context.atParagraphStart()) {
1294                         parent_context.check_end_layout(os);
1295                         parent_context.new_paragraph(os);
1296                 }
1297                 // save the language in the context so that it is
1298                 // handled by parse_text
1299                 parent_context.font.language = preamble.polyglossia2lyx(name);
1300                 parse_text(p, os, FLAG_END, outer, parent_context);
1301                 // Just in case the environment is empty
1302                 parent_context.extra_stuff.erase();
1303                 // We must begin a new paragraph to reset the language
1304                 parent_context.new_paragraph(os);
1305                 p.skip_spaces();
1306         }
1307
1308         else if (unstarred_name == "tabular" || name == "longtable") {
1309                 eat_whitespace(p, os, parent_context, false);
1310                 string width = "0pt";
1311                 if (name == "tabular*") {
1312                         width = lyx::translate_len(p.getArg('{', '}'));
1313                         eat_whitespace(p, os, parent_context, false);
1314                 }
1315                 parent_context.check_layout(os);
1316                 begin_inset(os, "Tabular ");
1317                 handle_tabular(p, os, name, width, parent_context);
1318                 end_inset(os);
1319                 p.skip_spaces();
1320         }
1321
1322         else if (parent_context.textclass.floats().typeExist(unstarred_name)) {
1323                 eat_whitespace(p, os, parent_context, false);
1324                 string const opt = p.hasOpt() ? p.getArg('[', ']') : string();
1325                 eat_whitespace(p, os, parent_context, false);
1326                 parent_context.check_layout(os);
1327                 begin_inset(os, "Float " + unstarred_name + "\n");
1328                 // store the float type for subfloats
1329                 // subfloats only work with figures and tables
1330                 if (unstarred_name == "figure")
1331                         float_type = unstarred_name;
1332                 else if (unstarred_name == "table")
1333                         float_type = unstarred_name;
1334                 else
1335                         float_type = "";
1336                 if (!opt.empty())
1337                         os << "placement " << opt << '\n';
1338                 if (contains(opt, "H"))
1339                         preamble.registerAutomaticallyLoadedPackage("float");
1340                 else {
1341                         Floating const & fl = parent_context.textclass.floats()
1342                                 .getType(unstarred_name);
1343                         if (!fl.floattype().empty() && fl.usesFloatPkg())
1344                                 preamble.registerAutomaticallyLoadedPackage("float");
1345                 }
1346
1347                 os << "wide " << convert<string>(is_starred)
1348                    << "\nsideways false"
1349                    << "\nstatus open\n\n";
1350                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1351                 end_inset(os);
1352                 // We don't need really a new paragraph, but
1353                 // we must make sure that the next item gets a \begin_layout.
1354                 parent_context.new_paragraph(os);
1355                 p.skip_spaces();
1356                 // the float is parsed thus delete the type
1357                 float_type = "";
1358         }
1359
1360         else if (unstarred_name == "sidewaysfigure"
1361                 || unstarred_name == "sidewaystable") {
1362                 eat_whitespace(p, os, parent_context, false);
1363                 parent_context.check_layout(os);
1364                 if (unstarred_name == "sidewaysfigure")
1365                         begin_inset(os, "Float figure\n");
1366                 else
1367                         begin_inset(os, "Float table\n");
1368                 os << "wide " << convert<string>(is_starred)
1369                    << "\nsideways true"
1370                    << "\nstatus open\n\n";
1371                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1372                 end_inset(os);
1373                 // We don't need really a new paragraph, but
1374                 // we must make sure that the next item gets a \begin_layout.
1375                 parent_context.new_paragraph(os);
1376                 p.skip_spaces();
1377                 preamble.registerAutomaticallyLoadedPackage("rotfloat");
1378         }
1379
1380         else if (name == "wrapfigure" || name == "wraptable") {
1381                 // syntax is \begin{wrapfigure}[lines]{placement}[overhang]{width}
1382                 eat_whitespace(p, os, parent_context, false);
1383                 parent_context.check_layout(os);
1384                 // default values
1385                 string lines = "0";
1386                 string overhang = "0col%";
1387                 // parse
1388                 if (p.hasOpt())
1389                         lines = p.getArg('[', ']');
1390                 string const placement = p.getArg('{', '}');
1391                 if (p.hasOpt())
1392                         overhang = p.getArg('[', ']');
1393                 string const width = p.getArg('{', '}');
1394                 // write
1395                 if (name == "wrapfigure")
1396                         begin_inset(os, "Wrap figure\n");
1397                 else
1398                         begin_inset(os, "Wrap table\n");
1399                 os << "lines " << lines
1400                    << "\nplacement " << placement
1401                    << "\noverhang " << lyx::translate_len(overhang)
1402                    << "\nwidth " << lyx::translate_len(width)
1403                    << "\nstatus open\n\n";
1404                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1405                 end_inset(os);
1406                 // We don't need really a new paragraph, but
1407                 // we must make sure that the next item gets a \begin_layout.
1408                 parent_context.new_paragraph(os);
1409                 p.skip_spaces();
1410                 preamble.registerAutomaticallyLoadedPackage("wrapfig");
1411         }
1412
1413         else if (name == "minipage") {
1414                 eat_whitespace(p, os, parent_context, false);
1415                 // Test whether this is an outer box of a shaded box
1416                 p.pushPosition();
1417                 // swallow arguments
1418                 while (p.hasOpt()) {
1419                         p.getArg('[', ']');
1420                         p.skip_spaces(true);
1421                 }
1422                 p.getArg('{', '}');
1423                 p.skip_spaces(true);
1424                 Token t = p.get_token();
1425                 bool shaded = false;
1426                 if (t.asInput() == "\\begin") {
1427                         p.skip_spaces(true);
1428                         if (p.getArg('{', '}') == "shaded")
1429                                 shaded = true;
1430                 }
1431                 p.popPosition();
1432                 if (shaded)
1433                         parse_outer_box(p, os, FLAG_END, outer,
1434                                         parent_context, name, "shaded");
1435                 else
1436                         parse_box(p, os, 0, FLAG_END, outer, parent_context,
1437                                   "", "", name);
1438                 p.skip_spaces();
1439         }
1440
1441         else if (name == "comment") {
1442                 eat_whitespace(p, os, parent_context, false);
1443                 parent_context.check_layout(os);
1444                 begin_inset(os, "Note Comment\n");
1445                 os << "status open\n";
1446                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1447                 end_inset(os);
1448                 p.skip_spaces();
1449                 skip_braces(p); // eat {} that might by set by LyX behind comments
1450                 preamble.registerAutomaticallyLoadedPackage("verbatim");
1451         }
1452
1453         else if (name == "verbatim") {
1454                 // FIXME: this should go in the generic code that
1455                 // handles environments defined in layout file that
1456                 // have "PassThru 1". However, the code over there is
1457                 // already too complicated for my taste.
1458                 parent_context.new_paragraph(os);
1459                 Context context(true, parent_context.textclass,
1460                                 &parent_context.textclass[from_ascii("Verbatim")]);
1461                 string s = p.verbatimEnvironment("verbatim");
1462                 output_ert(os, s, context);
1463                 p.skip_spaces();
1464         }
1465
1466         else if (name == "IPA") {
1467                 eat_whitespace(p, os, parent_context, false);
1468                 parent_context.check_layout(os);
1469                 begin_inset(os, "IPA\n");
1470                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1471                 end_inset(os);
1472                 p.skip_spaces();
1473                 preamble.registerAutomaticallyLoadedPackage("tipa");
1474                 preamble.registerAutomaticallyLoadedPackage("tipx");
1475         }
1476
1477         else if (name == "CJK") {
1478                 // the scheme is \begin{CJK}{encoding}{mapping}text\end{CJK}
1479                 // It is impossible to decide if a CJK environment was in its own paragraph or within
1480                 // a line. We therefore always assume a paragraph since the latter is a rare case.
1481                 eat_whitespace(p, os, parent_context, false);
1482                 parent_context.check_end_layout(os);
1483                 // store the encoding to be able to reset it
1484                 string const encoding_old = p.getEncoding();
1485                 string const encoding = p.getArg('{', '}');
1486                 // FIXME: For some reason JIS does not work. Although the text
1487                 // in tests/CJK.tex is identical with the SJIS version if you
1488                 // convert both snippets using the recode command line utility,
1489                 // the resulting .lyx file contains some extra characters if
1490                 // you set buggy_encoding to false for JIS.
1491                 bool const buggy_encoding = encoding == "JIS";
1492                 if (!buggy_encoding)
1493                         p.setEncoding(encoding, Encoding::CJK);
1494                 else {
1495                         // FIXME: This will read garbage, since the data is not encoded in utf8.
1496                         p.setEncoding("UTF-8");
1497                 }
1498                 // LyX only supports the same mapping for all CJK
1499                 // environments, so we might need to output everything as ERT
1500                 string const mapping = trim(p.getArg('{', '}'));
1501                 char const * const * const where =
1502                         is_known(encoding, supported_CJK_encodings);
1503                 if (!buggy_encoding && !preamble.fontCJKSet())
1504                         preamble.fontCJK(mapping);
1505                 bool knownMapping = mapping == preamble.fontCJK();
1506                 if (buggy_encoding || !knownMapping || !where) {
1507                         parent_context.check_layout(os);
1508                         output_ert_inset(os, "\\begin{" + name + "}{" + encoding + "}{" + mapping + "}",
1509                                        parent_context);
1510                         // we must parse the content as verbatim because e.g. JIS can contain
1511                         // normally invalid characters
1512                         // FIXME: This works only for the most simple cases.
1513                         //        Since TeX control characters are not parsed,
1514                         //        things like comments are completely wrong.
1515                         string const s = p.plainEnvironment("CJK");
1516                         for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
1517                                 if (*it == '\\')
1518                                         output_ert_inset(os, "\\", parent_context);
1519                                 else if (*it == '$')
1520                                         output_ert_inset(os, "$", parent_context);
1521                                 else if (*it == '\n' && it + 1 != et && s.begin() + 1 != it)
1522                                         os << "\n ";
1523                                 else
1524                                         os << *it;
1525                         }
1526                         output_ert_inset(os, "\\end{" + name + "}",
1527                                        parent_context);
1528                 } else {
1529                         string const lang =
1530                                 supported_CJK_languages[where - supported_CJK_encodings];
1531                         // store the language because we must reset it at the end
1532                         string const lang_old = parent_context.font.language;
1533                         parent_context.font.language = lang;
1534                         parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1535                         parent_context.font.language = lang_old;
1536                         parent_context.new_paragraph(os);
1537                 }
1538                 p.setEncoding(encoding_old);
1539                 p.skip_spaces();
1540         }
1541
1542         else if (name == "lyxgreyedout") {
1543                 eat_whitespace(p, os, parent_context, false);
1544                 parent_context.check_layout(os);
1545                 begin_inset(os, "Note Greyedout\n");
1546                 os << "status open\n";
1547                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1548                 end_inset(os);
1549                 p.skip_spaces();
1550                 if (!preamble.notefontcolor().empty())
1551                         preamble.registerAutomaticallyLoadedPackage("color");
1552         }
1553
1554         else if (name == "btSect") {
1555                 eat_whitespace(p, os, parent_context, false);
1556                 parent_context.check_layout(os);
1557                 begin_command_inset(os, "bibtex", "bibtex");
1558                 string bibstyle = "plain";
1559                 if (p.hasOpt()) {
1560                         bibstyle = p.getArg('[', ']');
1561                         p.skip_spaces(true);
1562                 }
1563                 string const bibfile = p.getArg('{', '}');
1564                 eat_whitespace(p, os, parent_context, false);
1565                 Token t = p.get_token();
1566                 if (t.asInput() == "\\btPrintCited") {
1567                         p.skip_spaces(true);
1568                         os << "btprint " << '"' << "btPrintCited" << '"' << "\n";
1569                 }
1570                 if (t.asInput() == "\\btPrintNotCited") {
1571                         p.skip_spaces(true);
1572                         os << "btprint " << '"' << "btPrintNotCited" << '"' << "\n";
1573                 }
1574                 if (t.asInput() == "\\btPrintAll") {
1575                         p.skip_spaces(true);
1576                         os << "btprint " << '"' << "btPrintAll" << '"' << "\n";
1577                 }
1578                 os << "bibfiles " << '"' << bibfile << '"' << "\n";
1579                 os << "options " << '"' << bibstyle << '"' <<  "\n";
1580                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1581                 end_inset(os);
1582                 p.skip_spaces();
1583         }
1584
1585         else if (name == "framed" || name == "shaded") {
1586                 eat_whitespace(p, os, parent_context, false);
1587                 parse_outer_box(p, os, FLAG_END, outer, parent_context, name, "");
1588                 p.skip_spaces();
1589         }
1590
1591         else if (name == "lstlisting") {
1592                 eat_whitespace(p, os, parent_context, false);
1593                 parse_listings(p, os, parent_context, false);
1594                 p.skip_spaces();
1595         }
1596
1597         else if (!parent_context.new_layout_allowed)
1598                 parse_unknown_environment(p, name, os, FLAG_END, outer,
1599                                           parent_context);
1600
1601         // Alignment and spacing settings
1602         // FIXME (bug xxxx): These settings can span multiple paragraphs and
1603         //                                       therefore are totally broken!
1604         // Note that \centering, raggedright, and raggedleft cannot be handled, as
1605         // they are commands not environments. They are furthermore switches that
1606         // can be ended by another switches, but also by commands like \footnote or
1607         // \parbox. So the only safe way is to leave them untouched.
1608         else if (name == "center" || name == "centering" ||
1609                  name == "flushleft" || name == "flushright" ||
1610                  name == "singlespace" || name == "onehalfspace" ||
1611                  name == "doublespace" || name == "spacing") {
1612                 eat_whitespace(p, os, parent_context, false);
1613                 // We must begin a new paragraph if not already done
1614                 if (! parent_context.atParagraphStart()) {
1615                         parent_context.check_end_layout(os);
1616                         parent_context.new_paragraph(os);
1617                 }
1618                 if (name == "flushleft")
1619                         parent_context.add_extra_stuff("\\align left\n");
1620                 else if (name == "flushright")
1621                         parent_context.add_extra_stuff("\\align right\n");
1622                 else if (name == "center" || name == "centering")
1623                         parent_context.add_extra_stuff("\\align center\n");
1624                 else if (name == "singlespace")
1625                         parent_context.add_extra_stuff("\\paragraph_spacing single\n");
1626                 else if (name == "onehalfspace") {
1627                         parent_context.add_extra_stuff("\\paragraph_spacing onehalf\n");
1628                         preamble.registerAutomaticallyLoadedPackage("setspace");
1629                 } else if (name == "doublespace") {
1630                         parent_context.add_extra_stuff("\\paragraph_spacing double\n");
1631                         preamble.registerAutomaticallyLoadedPackage("setspace");
1632                 } else if (name == "spacing") {
1633                         parent_context.add_extra_stuff("\\paragraph_spacing other " + p.verbatim_item() + "\n");
1634                         preamble.registerAutomaticallyLoadedPackage("setspace");
1635                 }
1636                 parse_text(p, os, FLAG_END, outer, parent_context);
1637                 // Just in case the environment is empty
1638                 parent_context.extra_stuff.erase();
1639                 // We must begin a new paragraph to reset the alignment
1640                 parent_context.new_paragraph(os);
1641                 p.skip_spaces();
1642         }
1643
1644         // The single '=' is meant here.
1645         else if ((newlayout = findLayout(parent_context.textclass, name, false))) {
1646                 eat_whitespace(p, os, parent_context, false);
1647                 Context context(true, parent_context.textclass, newlayout,
1648                                 parent_context.layout, parent_context.font);
1649                 if (parent_context.deeper_paragraph) {
1650                         // We are beginning a nested environment after a
1651                         // deeper paragraph inside the outer list environment.
1652                         // Therefore we don't need to output a "begin deeper".
1653                         context.need_end_deeper = true;
1654                 }
1655                 parent_context.check_end_layout(os);
1656                 if (last_env == name) {
1657                         // we need to output a separator since LyX would export
1658                         // the two environments as one otherwise (bug 5716)
1659                         TeX2LyXDocClass const & textclass(parent_context.textclass);
1660                         Context newcontext(true, textclass,
1661                                         &(textclass.defaultLayout()));
1662                         newcontext.check_layout(os);
1663                         begin_inset(os, "Separator plain\n");
1664                         end_inset(os);
1665                         newcontext.check_end_layout(os);
1666                 }
1667                 switch (context.layout->latextype) {
1668                 case  LATEX_LIST_ENVIRONMENT:
1669                         context.add_par_extra_stuff("\\labelwidthstring "
1670                                                     + p.verbatim_item() + '\n');
1671                         p.skip_spaces();
1672                         break;
1673                 case  LATEX_BIB_ENVIRONMENT:
1674                         p.verbatim_item(); // swallow next arg
1675                         p.skip_spaces();
1676                         break;
1677                 default:
1678                         break;
1679                 }
1680                 context.check_deeper(os);
1681                 // handle known optional and required arguments
1682                 // Unfortunately LyX can't handle arguments of list arguments (bug 7468):
1683                 // It is impossible to place anything after the environment name,
1684                 // but before the first \\item.
1685                 if (context.layout->latextype == LATEX_ENVIRONMENT)
1686                         output_arguments(os, p, outer, false, false, context,
1687                                          context.layout->latexargs());
1688                 parse_text(p, os, FLAG_END, outer, context);
1689                 if (context.layout->latextype == LATEX_ENVIRONMENT)
1690                         output_arguments(os, p, outer, false, true, context,
1691                                          context.layout->postcommandargs());
1692                 context.check_end_layout(os);
1693                 if (parent_context.deeper_paragraph) {
1694                         // We must suppress the "end deeper" because we
1695                         // suppressed the "begin deeper" above.
1696                         context.need_end_deeper = false;
1697                 }
1698                 context.check_end_deeper(os);
1699                 parent_context.new_paragraph(os);
1700                 p.skip_spaces();
1701                 if (!preamble.titleLayoutFound())
1702                         preamble.titleLayoutFound(newlayout->intitle);
1703                 set<string> const & req = newlayout->requires();
1704                 set<string>::const_iterator it = req.begin();
1705                 set<string>::const_iterator en = req.end();
1706                 for (; it != en; ++it)
1707                         preamble.registerAutomaticallyLoadedPackage(*it);
1708         }
1709
1710         // The single '=' is meant here.
1711         else if ((newinsetlayout = findInsetLayout(parent_context.textclass, name, false))) {
1712                 eat_whitespace(p, os, parent_context, false);
1713                 parent_context.check_layout(os);
1714                 begin_inset(os, "Flex ");
1715                 os << to_utf8(newinsetlayout->name()) << '\n'
1716                    << "status collapsed\n";
1717                 if (newinsetlayout->isPassThru()) {
1718                         string const arg = p.verbatimEnvironment(name);
1719                         Context context(true, parent_context.textclass,
1720                                         &parent_context.textclass.plainLayout(),
1721                                         parent_context.layout);
1722                         output_ert(os, arg, parent_context);
1723                 } else
1724                         parse_text_in_inset(p, os, FLAG_END, false, parent_context, newinsetlayout);
1725                 end_inset(os);
1726         }
1727
1728         else if (name == "appendix") {
1729                 // This is no good latex style, but it works and is used in some documents...
1730                 eat_whitespace(p, os, parent_context, false);
1731                 parent_context.check_end_layout(os);
1732                 Context context(true, parent_context.textclass, parent_context.layout,
1733                                 parent_context.layout, parent_context.font);
1734                 context.check_layout(os);
1735                 os << "\\start_of_appendix\n";
1736                 parse_text(p, os, FLAG_END, outer, context);
1737                 context.check_end_layout(os);
1738                 p.skip_spaces();
1739         }
1740
1741         else if (known_environments.find(name) != known_environments.end()) {
1742                 vector<ArgumentType> arguments = known_environments[name];
1743                 // The last "argument" denotes wether we may translate the
1744                 // environment contents to LyX
1745                 // The default required if no argument is given makes us
1746                 // compatible with the reLyXre environment.
1747                 ArgumentType contents = arguments.empty() ?
1748                         required :
1749                         arguments.back();
1750                 if (!arguments.empty())
1751                         arguments.pop_back();
1752                 // See comment in parse_unknown_environment()
1753                 bool const specialfont =
1754                         (parent_context.font != parent_context.normalfont);
1755                 bool const new_layout_allowed =
1756                         parent_context.new_layout_allowed;
1757                 if (specialfont)
1758                         parent_context.new_layout_allowed = false;
1759                 parse_arguments("\\begin{" + name + "}", arguments, p, os,
1760                                 outer, parent_context);
1761                 if (contents == verbatim)
1762                         output_ert_inset(os, p.ertEnvironment(name),
1763                                    parent_context);
1764                 else
1765                         parse_text_snippet(p, os, FLAG_END, outer,
1766                                            parent_context);
1767                 output_ert_inset(os, "\\end{" + name + "}", parent_context);
1768                 if (specialfont)
1769                         parent_context.new_layout_allowed = new_layout_allowed;
1770         }
1771
1772         else
1773                 parse_unknown_environment(p, name, os, FLAG_END, outer,
1774                                           parent_context);
1775
1776         last_env = name;
1777         active_environments.pop_back();
1778 }
1779
1780
1781 /// parses a comment and outputs it to \p os.
1782 void parse_comment(Parser & p, ostream & os, Token const & t, Context & context)
1783 {
1784         LASSERT(t.cat() == catComment, return);
1785         if (!t.cs().empty()) {
1786                 context.check_layout(os);
1787                 output_ert_inset(os, '%' + t.cs(), context);
1788                 if (p.next_token().cat() == catNewline) {
1789                         // A newline after a comment line starts a new
1790                         // paragraph
1791                         if (context.new_layout_allowed) {
1792                                 if(!context.atParagraphStart())
1793                                         // Only start a new paragraph if not already
1794                                         // done (we might get called recursively)
1795                                         context.new_paragraph(os);
1796                         } else
1797                                 output_ert_inset(os, "\n", context);
1798                         eat_whitespace(p, os, context, true);
1799                 }
1800         } else {
1801                 // "%\n" combination
1802                 p.skip_spaces();
1803         }
1804 }
1805
1806
1807 /*!
1808  * Reads spaces and comments until the first non-space, non-comment token.
1809  * New paragraphs (double newlines or \\par) are handled like simple spaces
1810  * if \p eatParagraph is true.
1811  * Spaces are skipped, but comments are written to \p os.
1812  */
1813 void eat_whitespace(Parser & p, ostream & os, Context & context,
1814                     bool eatParagraph)
1815 {
1816         while (p.good()) {
1817                 Token const & t = p.get_token();
1818                 if (t.cat() == catComment)
1819                         parse_comment(p, os, t, context);
1820                 else if ((! eatParagraph && p.isParagraph()) ||
1821                          (t.cat() != catSpace && t.cat() != catNewline)) {
1822                         p.putback();
1823                         return;
1824                 }
1825         }
1826 }
1827
1828
1829 /*!
1830  * Set a font attribute, parse text and reset the font attribute.
1831  * \param attribute Attribute name (e.g. \\family, \\shape etc.)
1832  * \param currentvalue Current value of the attribute. Is set to the new
1833  * value during parsing.
1834  * \param newvalue New value of the attribute
1835  */
1836 void parse_text_attributes(Parser & p, ostream & os, unsigned flags, bool outer,
1837                            Context & context, string const & attribute,
1838                            string & currentvalue, string const & newvalue)
1839 {
1840         context.check_layout(os);
1841         string const oldvalue = currentvalue;
1842         currentvalue = newvalue;
1843         os << '\n' << attribute << ' ' << newvalue << "\n";
1844         parse_text_snippet(p, os, flags, outer, context);
1845         context.check_layout(os);
1846         os << '\n' << attribute << ' ' << oldvalue << "\n";
1847         currentvalue = oldvalue;
1848 }
1849
1850
1851 /// get the arguments of a natbib or jurabib citation command
1852 void get_cite_arguments(Parser & p, bool natbibOrder,
1853         string & before, string & after)
1854 {
1855         // We need to distinguish "" and "[]", so we can't use p.getOpt().
1856
1857         // text before the citation
1858         before.clear();
1859         // text after the citation
1860         after = p.getFullOpt();
1861
1862         if (!after.empty()) {
1863                 before = p.getFullOpt();
1864                 if (natbibOrder && !before.empty())
1865                         swap(before, after);
1866         }
1867 }
1868
1869
1870 /// Convert filenames with TeX macros and/or quotes to something LyX
1871 /// can understand
1872 string const normalize_filename(string const & name)
1873 {
1874         Parser p(name);
1875         ostringstream os;
1876         while (p.good()) {
1877                 Token const & t = p.get_token();
1878                 if (t.cat() != catEscape)
1879                         os << t.asInput();
1880                 else if (t.cs() == "lyxdot") {
1881                         // This is used by LyX for simple dots in relative
1882                         // names
1883                         os << '.';
1884                         p.skip_spaces();
1885                 } else if (t.cs() == "space") {
1886                         os << ' ';
1887                         p.skip_spaces();
1888                 } else if (t.cs() == "string") {
1889                         // Convert \string" to " and \string~ to ~
1890                         Token const & n = p.next_token();
1891                         if (n.asInput() != "\"" && n.asInput() != "~")
1892                                 os << t.asInput();
1893                 } else
1894                         os << t.asInput();
1895         }
1896         // Strip quotes. This is a bit complicated (see latex_path()).
1897         string full = os.str();
1898         if (!full.empty() && full[0] == '"') {
1899                 string base = removeExtension(full);
1900                 string ext = getExtension(full);
1901                 if (!base.empty() && base[base.length()-1] == '"')
1902                         // "a b"
1903                         // "a b".tex
1904                         return addExtension(trim(base, "\""), ext);
1905                 if (full[full.length()-1] == '"')
1906                         // "a b.c"
1907                         // "a b.c".tex
1908                         return trim(full, "\"");
1909         }
1910         return full;
1911 }
1912
1913
1914 /// Convert \p name from TeX convention (relative to master file) to LyX
1915 /// convention (relative to .lyx file) if it is relative
1916 void fix_child_filename(string & name)
1917 {
1918         string const absMasterTeX = getMasterFilePath(true);
1919         bool const isabs = FileName::isAbsolute(name);
1920         // convert from "relative to .tex master" to absolute original path
1921         if (!isabs)
1922                 name = makeAbsPath(name, absMasterTeX).absFileName();
1923         bool copyfile = copyFiles();
1924         string const absParentLyX = getParentFilePath(false);
1925         string abs = name;
1926         if (copyfile) {
1927                 // convert from absolute original path to "relative to master file"
1928                 string const rel = to_utf8(makeRelPath(from_utf8(name),
1929                                                        from_utf8(absMasterTeX)));
1930                 // re-interpret "relative to .tex file" as "relative to .lyx file"
1931                 // (is different if the master .lyx file resides in a
1932                 // different path than the master .tex file)
1933                 string const absMasterLyX = getMasterFilePath(false);
1934                 abs = makeAbsPath(rel, absMasterLyX).absFileName();
1935                 // Do not copy if the new path is impossible to create. Example:
1936                 // absMasterTeX = "/foo/bar/"
1937                 // absMasterLyX = "/bar/"
1938                 // name = "/baz.eps" => new absolute name would be "/../baz.eps"
1939                 if (contains(name, "/../"))
1940                         copyfile = false;
1941         }
1942         if (copyfile) {
1943                 if (isabs)
1944                         name = abs;
1945                 else {
1946                         // convert from absolute original path to
1947                         // "relative to .lyx file"
1948                         name = to_utf8(makeRelPath(from_utf8(abs),
1949                                                    from_utf8(absParentLyX)));
1950                 }
1951         }
1952         else if (!isabs) {
1953                 // convert from absolute original path to "relative to .lyx file"
1954                 name = to_utf8(makeRelPath(from_utf8(name),
1955                                            from_utf8(absParentLyX)));
1956         }
1957 }
1958
1959
1960 void copy_file(FileName const & src, string dstname)
1961 {
1962         if (!copyFiles())
1963                 return;
1964         string const absParent = getParentFilePath(false);
1965         FileName dst;
1966         if (FileName::isAbsolute(dstname))
1967                 dst = FileName(dstname);
1968         else
1969                 dst = makeAbsPath(dstname, absParent);
1970         string const absMaster = getMasterFilePath(false);
1971         FileName const srcpath = src.onlyPath();
1972         FileName const dstpath = dst.onlyPath();
1973         if (equivalent(srcpath, dstpath))
1974                 return;
1975         if (!dstpath.isDirectory()) {
1976                 if (!dstpath.createPath()) {
1977                         cerr << "Warning: Could not create directory for file `"
1978                              << dst.absFileName() << "´." << endl;
1979                         return;
1980                 }
1981         }
1982         if (dst.isReadableFile()) {
1983                 if (overwriteFiles())
1984                         cerr << "Warning: Overwriting existing file `"
1985                              << dst.absFileName() << "´." << endl;
1986                 else {
1987                         cerr << "Warning: Not overwriting existing file `"
1988                              << dst.absFileName() << "´." << endl;
1989                         return;
1990                 }
1991         }
1992         if (!src.copyTo(dst))
1993                 cerr << "Warning: Could not copy file `" << src.absFileName()
1994                      << "´ to `" << dst.absFileName() << "´." << endl;
1995 }
1996
1997
1998 /// Parse a literate Chunk section. The initial "<<" is already parsed.
1999 bool parse_chunk(Parser & p, ostream & os, Context & context)
2000 {
2001         // check whether a chunk is possible here.
2002         if (!context.textclass.hasInsetLayout(from_ascii("Flex:Chunk"))) {
2003                 return false;
2004         }
2005
2006         p.pushPosition();
2007
2008         // read the parameters
2009         Parser::Arg const params = p.verbatimStuff(">>=\n", false);
2010         if (!params.first) {
2011                 p.popPosition();
2012                 return false;
2013         }
2014
2015         Parser::Arg const code = p.verbatimStuff("\n@");
2016         if (!code.first) {
2017                 p.popPosition();
2018                 return false;
2019         }
2020         string const post_chunk = p.verbatimStuff("\n").second + '\n';
2021         if (post_chunk[0] != ' ' && post_chunk[0] != '\n') {
2022                 p.popPosition();
2023                 return false;
2024         }
2025         // The last newline read is important for paragraph handling
2026         p.putback();
2027         p.deparse();
2028
2029         //cerr << "params=[" << params.second << "], code=[" << code.second << "]" <<endl;
2030         // We must have a valid layout before outputting the Chunk inset.
2031         context.check_layout(os);
2032         Context chunkcontext(true, context.textclass);
2033         chunkcontext.layout = &context.textclass.plainLayout();
2034         begin_inset(os, "Flex Chunk");
2035         os << "\nstatus open\n";
2036         if (!params.second.empty()) {
2037                 chunkcontext.check_layout(os);
2038                 Context paramscontext(true, context.textclass);
2039                 paramscontext.layout = &context.textclass.plainLayout();
2040                 begin_inset(os, "Argument 1");
2041                 os << "\nstatus open\n";
2042                 output_ert(os, params.second, paramscontext);
2043                 end_inset(os);
2044         }
2045         output_ert(os, code.second, chunkcontext);
2046         end_inset(os);
2047
2048         p.dropPosition();
2049         return true;
2050 }
2051
2052
2053 /// detects \\def, \\long\\def and \\global\\long\\def with ws and comments
2054 bool is_macro(Parser & p)
2055 {
2056         Token first = p.curr_token();
2057         if (first.cat() != catEscape || !p.good())
2058                 return false;
2059         if (first.cs() == "def")
2060                 return true;
2061         if (first.cs() != "global" && first.cs() != "long")
2062                 return false;
2063         Token second = p.get_token();
2064         int pos = 1;
2065         while (p.good() && !p.isParagraph() && (second.cat() == catSpace ||
2066                second.cat() == catNewline || second.cat() == catComment)) {
2067                 second = p.get_token();
2068                 pos++;
2069         }
2070         bool secondvalid = second.cat() == catEscape;
2071         Token third;
2072         bool thirdvalid = false;
2073         if (p.good() && first.cs() == "global" && secondvalid &&
2074             second.cs() == "long") {
2075                 third = p.get_token();
2076                 pos++;
2077                 while (p.good() && !p.isParagraph() &&
2078                        (third.cat() == catSpace ||
2079                         third.cat() == catNewline ||
2080                         third.cat() == catComment)) {
2081                         third = p.get_token();
2082                         pos++;
2083                 }
2084                 thirdvalid = third.cat() == catEscape;
2085         }
2086         for (int i = 0; i < pos; ++i)
2087                 p.putback();
2088         if (!secondvalid)
2089                 return false;
2090         if (!thirdvalid)
2091                 return (first.cs() == "global" || first.cs() == "long") &&
2092                        second.cs() == "def";
2093         return first.cs() == "global" && second.cs() == "long" &&
2094                third.cs() == "def";
2095 }
2096
2097
2098 /// Parse a macro definition (assumes that is_macro() returned true)
2099 void parse_macro(Parser & p, ostream & os, Context & context)
2100 {
2101         context.check_layout(os);
2102         Token first = p.curr_token();
2103         Token second;
2104         Token third;
2105         string command = first.asInput();
2106         if (first.cs() != "def") {
2107                 p.get_token();
2108                 eat_whitespace(p, os, context, false);
2109                 second = p.curr_token();
2110                 command += second.asInput();
2111                 if (second.cs() != "def") {
2112                         p.get_token();
2113                         eat_whitespace(p, os, context, false);
2114                         third = p.curr_token();
2115                         command += third.asInput();
2116                 }
2117         }
2118         eat_whitespace(p, os, context, false);
2119         string const name = p.get_token().cs();
2120         eat_whitespace(p, os, context, false);
2121
2122         // parameter text
2123         bool simple = true;
2124         string paramtext;
2125         int arity = 0;
2126         while (p.next_token().cat() != catBegin) {
2127                 if (p.next_token().cat() == catParameter) {
2128                         // # found
2129                         p.get_token();
2130                         paramtext += "#";
2131
2132                         // followed by number?
2133                         if (p.next_token().cat() == catOther) {
2134                                 string s = p.get_token().asInput();
2135                                 paramtext += s;
2136                                 // number = current arity + 1?
2137                                 if (s.size() == 1 && s[0] == arity + '0' + 1)
2138                                         ++arity;
2139                                 else
2140                                         simple = false;
2141                         } else
2142                                 paramtext += p.get_token().cs();
2143                 } else {
2144                         paramtext += p.get_token().cs();
2145                         simple = false;
2146                 }
2147         }
2148
2149         // only output simple (i.e. compatible) macro as FormulaMacros
2150         string ert = '\\' + name + ' ' + paramtext + '{' + p.verbatim_item() + '}';
2151         if (simple) {
2152                 context.check_layout(os);
2153                 begin_inset(os, "FormulaMacro");
2154                 os << "\n\\def" << ert;
2155                 end_inset(os);
2156         } else
2157                 output_ert_inset(os, command + ert, context);
2158 }
2159
2160
2161 void registerExternalTemplatePackages(string const & name)
2162 {
2163         external::TemplateManager const & etm = external::TemplateManager::get();
2164         external::Template const * const et = etm.getTemplateByName(name);
2165         if (!et)
2166                 return;
2167         external::Template::Formats::const_iterator cit = et->formats.end();
2168         if (pdflatex)
2169                 cit = et->formats.find("PDFLaTeX");
2170         if (cit == et->formats.end())
2171                 // If the template has not specified a PDFLaTeX output,
2172                 // we try the LaTeX format.
2173                 cit = et->formats.find("LaTeX");
2174         if (cit == et->formats.end())
2175                 return;
2176         vector<string>::const_iterator qit = cit->second.requirements.begin();
2177         vector<string>::const_iterator qend = cit->second.requirements.end();
2178         for (; qit != qend; ++qit)
2179                 preamble.registerAutomaticallyLoadedPackage(*qit);
2180 }
2181
2182 } // anonymous namespace
2183
2184
2185 void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
2186                 Context & context)
2187 {
2188         Layout const * newlayout = 0;
2189         InsetLayout const * newinsetlayout = 0;
2190         char const * const * where = 0;
2191         // Store the latest bibliographystyle, addcontentslineContent and
2192         // nocite{*} option (needed for bibtex inset)
2193         string btprint;
2194         string contentslineContent;
2195         string bibliographystyle = "default";
2196         bool const use_natbib = isProvided("natbib");
2197         bool const use_jurabib = isProvided("jurabib");
2198         string last_env;
2199
2200         // it is impossible to determine the correct encoding for non-CJK Japanese.
2201         // Therefore write a note at the beginning of the document
2202         if (is_nonCJKJapanese) {
2203                 context.check_layout(os);
2204                 begin_inset(os, "Note Note\n");
2205                 os << "status open\n\\begin_layout Plain Layout\n"
2206                    << "\\series bold\n"
2207                    << "Important information:\n"
2208                    << "\\end_layout\n\n"
2209                    << "\\begin_layout Plain Layout\n"
2210                    << "The original LaTeX source for this document is in Japanese (pLaTeX).\n"
2211                    << " It was therefore impossible for tex2lyx to determine the correct encoding.\n"
2212                    << " The iconv encoding " << p.getEncoding() << " was used.\n"
2213                    << " If this is incorrect, you must run the tex2lyx program on the command line\n"
2214                    << " and specify the encoding using the -e command-line switch.\n"
2215                    << " In addition, you might want to double check that the desired output encoding\n"
2216                    << " is correctly selected in Document > Settings > Language.\n"
2217                    << "\\end_layout\n";
2218                 end_inset(os);
2219                 is_nonCJKJapanese = false;
2220         }
2221
2222         while (p.good()) {
2223                 Token const & t = p.get_token();
2224 #ifdef FILEDEBUG
2225                 debugToken(cerr, t, flags);
2226 #endif
2227
2228                 if (flags & FLAG_ITEM) {
2229                         if (t.cat() == catSpace)
2230                                 continue;
2231
2232                         flags &= ~FLAG_ITEM;
2233                         if (t.cat() == catBegin) {
2234                                 // skip the brace and collect everything to the next matching
2235                                 // closing brace
2236                                 flags |= FLAG_BRACE_LAST;
2237                                 continue;
2238                         }
2239
2240                         // handle only this single token, leave the loop if done
2241                         flags |= FLAG_LEAVE;
2242                 }
2243
2244                 if (t.cat() != catEscape && t.character() == ']' &&
2245                     (flags & FLAG_BRACK_LAST))
2246                         return;
2247                 if (t.cat() == catEnd && (flags & FLAG_BRACE_LAST))
2248                         return;
2249
2250                 // If there is anything between \end{env} and \begin{env} we
2251                 // don't need to output a separator.
2252                 if (t.cat() != catSpace && t.cat() != catNewline &&
2253                     t.asInput() != "\\begin")
2254                         last_env = "";
2255
2256                 //
2257                 // cat codes
2258                 //
2259                 bool const starred = p.next_token().asInput() == "*";
2260                 string const starredname(starred ? (t.cs() + '*') : t.cs());
2261                 if (t.cat() == catMath) {
2262                         // we are inside some text mode thingy, so opening new math is allowed
2263                         context.check_layout(os);
2264                         begin_inset(os, "Formula ");
2265                         Token const & n = p.get_token();
2266                         bool const display(n.cat() == catMath && outer);
2267                         if (display) {
2268                                 // TeX's $$...$$ syntax for displayed math
2269                                 os << "\\[";
2270                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2271                                 os << "\\]";
2272                                 p.get_token(); // skip the second '$' token
2273                         } else {
2274                                 // simple $...$  stuff
2275                                 p.putback();
2276                                 os << '$';
2277                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2278                                 os << '$';
2279                         }
2280                         end_inset(os);
2281                         if (display) {
2282                                 // Prevent the conversion of a line break to a
2283                                 // space (bug 7668). This does not change the
2284                                 // output, but looks ugly in LyX.
2285                                 eat_whitespace(p, os, context, false);
2286                         }
2287                 }
2288
2289                 else if (t.cat() == catSuper || t.cat() == catSub)
2290                         cerr << "catcode " << t << " illegal in text mode\n";
2291
2292                 // Basic support for english quotes. This should be
2293                 // extended to other quotes, but is not so easy (a
2294                 // left english quote is the same as a right german
2295                 // quote...)
2296                 else if (t.asInput() == "`" && p.next_token().asInput() == "`") {
2297                         context.check_layout(os);
2298                         begin_inset(os, "Quotes ");
2299                         os << "eld";
2300                         end_inset(os);
2301                         p.get_token();
2302                         skip_braces(p);
2303                 }
2304                 else if (t.asInput() == "'" && p.next_token().asInput() == "'") {
2305                         context.check_layout(os);
2306                         begin_inset(os, "Quotes ");
2307                         os << "erd";
2308                         end_inset(os);
2309                         p.get_token();
2310                         skip_braces(p);
2311                 }
2312
2313                 else if (t.asInput() == ">" && p.next_token().asInput() == ">") {
2314                         context.check_layout(os);
2315                         begin_inset(os, "Quotes ");
2316                         os << "ald";
2317                         end_inset(os);
2318                         p.get_token();
2319                         skip_braces(p);
2320                 }
2321
2322                 else if (t.asInput() == "<"
2323                          && p.next_token().asInput() == "<") {
2324                         bool has_chunk = false;
2325                         if (noweb_mode) {
2326                                 p.pushPosition();
2327                                 p.get_token();
2328                                 has_chunk = parse_chunk(p, os, context);
2329                                 if (!has_chunk)
2330                                         p.popPosition();
2331                         }
2332
2333                         if (!has_chunk) {
2334                                 context.check_layout(os);
2335                                 begin_inset(os, "Quotes ");
2336                                 //FIXME: this is a right danish quote;
2337                                 // why not a left french quote?
2338                                 os << "ard";
2339                                 end_inset(os);
2340                                 p.get_token();
2341                                 skip_braces(p);
2342                         }
2343                 }
2344
2345                 else if (t.cat() == catSpace || (t.cat() == catNewline && ! p.isParagraph()))
2346                         check_space(p, os, context);
2347
2348                 else if (t.character() == '[' && noweb_mode &&
2349                          p.next_token().character() == '[') {
2350                         // These can contain underscores
2351                         p.putback();
2352                         string const s = p.getFullOpt() + ']';
2353                         if (p.next_token().character() == ']')
2354                                 p.get_token();
2355                         else
2356                                 cerr << "Warning: Inserting missing ']' in '"
2357                                      << s << "'." << endl;
2358                         output_ert_inset(os, s, context);
2359                 }
2360
2361                 else if (t.cat() == catLetter) {
2362                         context.check_layout(os);
2363                         // Workaround for bug 4752.
2364                         // FIXME: This whole code block needs to be removed
2365                         //        when the bug is fixed and tex2lyx produces
2366                         //        the updated file format.
2367                         // The replacement algorithm in LyX is so stupid that
2368                         // it even translates a phrase if it is part of a word.
2369                         bool handled = false;
2370                         for (int const * l = known_phrase_lengths; *l; ++l) {
2371                                 string phrase = t.cs();
2372                                 for (int i = 1; i < *l && p.next_token().isAlnumASCII(); ++i)
2373                                         phrase += p.get_token().cs();
2374                                 if (is_known(phrase, known_coded_phrases)) {
2375                                         output_ert_inset(os, phrase, context);
2376                                         handled = true;
2377                                         break;
2378                                 } else {
2379                                         for (size_t i = 1; i < phrase.length(); ++i)
2380                                                 p.putback();
2381                                 }
2382                         }
2383                         if (!handled)
2384                                 os << t.cs();
2385                 }
2386
2387                 else if (t.cat() == catOther ||
2388                                t.cat() == catAlign ||
2389                                t.cat() == catParameter) {
2390                         // This translates "&" to "\\&" which may be wrong...
2391                         context.check_layout(os);
2392                         os << t.cs();
2393                 }
2394
2395                 else if (p.isParagraph()) {
2396                         if (context.new_layout_allowed)
2397                                 context.new_paragraph(os);
2398                         else
2399                                 output_ert_inset(os, "\\par ", context);
2400                         eat_whitespace(p, os, context, true);
2401                 }
2402
2403                 else if (t.cat() == catActive) {
2404                         context.check_layout(os);
2405                         if (t.character() == '~') {
2406                                 if (context.layout->free_spacing)
2407                                         os << ' ';
2408                                 else {
2409                                         begin_inset(os, "space ~\n");
2410                                         end_inset(os);
2411                                 }
2412                         } else
2413                                 os << t.cs();
2414                 }
2415
2416                 else if (t.cat() == catBegin) {
2417                         Token const next = p.next_token();
2418                         Token const end = p.next_next_token();
2419                         if (next.cat() == catEnd) {
2420                                 // {}
2421                                 Token const prev = p.prev_token();
2422                                 p.get_token();
2423                                 if (p.next_token().character() == '`' ||
2424                                     (prev.character() == '-' &&
2425                                      p.next_token().character() == '-'))
2426                                         ; // ignore it in {}`` or -{}-
2427                                 else
2428                                         output_ert_inset(os, "{}", context);
2429                         } else if (next.cat() == catEscape &&
2430                                    is_known(next.cs(), known_quotes) &&
2431                                    end.cat() == catEnd) {
2432                                 // Something like {\textquoteright} (e.g.
2433                                 // from writer2latex). LyX writes
2434                                 // \textquoteright{}, so we may skip the
2435                                 // braces here for better readability.
2436                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2437                                                    outer, context);
2438                         } else if (p.next_token().asInput() == "\\ascii") {
2439                                 // handle the \ascii characters
2440                                 // (the case without braces is handled later)
2441                                 // the code is "{\ascii\xxx}"
2442                                 p.get_token(); // eat \ascii
2443                                 string name2 = p.get_token().asInput();
2444                                 p.get_token(); // eat the final '}'
2445                                 string const name = "{\\ascii" + name2 + "}";
2446                                 bool termination;
2447                                 docstring rem;
2448                                 set<string> req;
2449                                 // get the character from unicodesymbols
2450                                 docstring s = encodings.fromLaTeXCommand(from_utf8(name),
2451                                         Encodings::TEXT_CMD, termination, rem, &req);
2452                                 if (!s.empty()) {
2453                                         context.check_layout(os);
2454                                         os << to_utf8(s);
2455                                         if (!rem.empty())
2456                                                 output_ert_inset(os,
2457                                                         to_utf8(rem), context);
2458                                         for (set<string>::const_iterator it = req.begin();
2459                                              it != req.end(); ++it)
2460                                                 preamble.registerAutomaticallyLoadedPackage(*it);
2461                                 } else
2462                                         // we did not find a non-ert version
2463                                         output_ert_inset(os, name, context);
2464                         } else {
2465                         context.check_layout(os);
2466                         // special handling of font attribute changes
2467                         Token const prev = p.prev_token();
2468                         TeXFont const oldFont = context.font;
2469                         if (next.character() == '[' ||
2470                             next.character() == ']' ||
2471                             next.character() == '*') {
2472                                 p.get_token();
2473                                 if (p.next_token().cat() == catEnd) {
2474                                         os << next.cs();
2475                                         p.get_token();
2476                                 } else {
2477                                         p.putback();
2478                                         output_ert_inset(os, "{", context);
2479                                         parse_text_snippet(p, os,
2480                                                         FLAG_BRACE_LAST,
2481                                                         outer, context);
2482                                         output_ert_inset(os, "}", context);
2483                                 }
2484                         } else if (! context.new_layout_allowed) {
2485                                 output_ert_inset(os, "{", context);
2486                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2487                                                    outer, context);
2488                                 output_ert_inset(os, "}", context);
2489                         } else if (is_known(next.cs(), known_sizes)) {
2490                                 // next will change the size, so we must
2491                                 // reset it here
2492                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2493                                                    outer, context);
2494                                 if (!context.atParagraphStart())
2495                                         os << "\n\\size "
2496                                            << context.font.size << "\n";
2497                         } else if (is_known(next.cs(), known_font_families)) {
2498                                 // next will change the font family, so we
2499                                 // must reset it here
2500                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2501                                                    outer, context);
2502                                 if (!context.atParagraphStart())
2503                                         os << "\n\\family "
2504                                            << context.font.family << "\n";
2505                         } else if (is_known(next.cs(), known_font_series)) {
2506                                 // next will change the font series, so we
2507                                 // must reset it here
2508                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2509                                                    outer, context);
2510                                 if (!context.atParagraphStart())
2511                                         os << "\n\\series "
2512                                            << context.font.series << "\n";
2513                         } else if (is_known(next.cs(), known_font_shapes)) {
2514                                 // next will change the font shape, so we
2515                                 // must reset it here
2516                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2517                                                    outer, context);
2518                                 if (!context.atParagraphStart())
2519                                         os << "\n\\shape "
2520                                            << context.font.shape << "\n";
2521                         } else if (is_known(next.cs(), known_old_font_families) ||
2522                                    is_known(next.cs(), known_old_font_series) ||
2523                                    is_known(next.cs(), known_old_font_shapes)) {
2524                                 // next will change the font family, series
2525                                 // and shape, so we must reset it here
2526                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2527                                                    outer, context);
2528                                 if (!context.atParagraphStart())
2529                                         os <<  "\n\\family "
2530                                            << context.font.family
2531                                            << "\n\\series "
2532                                            << context.font.series
2533                                            << "\n\\shape "
2534                                            << context.font.shape << "\n";
2535                         } else {
2536                                 output_ert_inset(os, "{", context);
2537                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2538                                                    outer, context);
2539                                 output_ert_inset(os, "}", context);
2540                                 }
2541                         }
2542                 }
2543
2544                 else if (t.cat() == catEnd) {
2545                         if (flags & FLAG_BRACE_LAST) {
2546                                 return;
2547                         }
2548                         cerr << "stray '}' in text\n";
2549                         output_ert_inset(os, "}", context);
2550                 }
2551
2552                 else if (t.cat() == catComment)
2553                         parse_comment(p, os, t, context);
2554
2555                 //
2556                 // control sequences
2557                 //
2558
2559                 else if (t.cs() == "(" || t.cs() == "[") {
2560                         bool const simple = t.cs() == "(";
2561                         context.check_layout(os);
2562                         begin_inset(os, "Formula");
2563                         os << " \\" << t.cs();
2564                         parse_math(p, os, simple ? FLAG_SIMPLE2 : FLAG_EQUATION, MATH_MODE);
2565                         os << '\\' << (simple ? ')' : ']');
2566                         end_inset(os);
2567                         if (!simple) {
2568                                 // Prevent the conversion of a line break to a
2569                                 // space (bug 7668). This does not change the
2570                                 // output, but looks ugly in LyX.
2571                                 eat_whitespace(p, os, context, false);
2572                         }
2573                 }
2574
2575                 else if (t.cs() == "begin")
2576                         parse_environment(p, os, outer, last_env,
2577                                           context);
2578
2579                 else if (t.cs() == "end") {
2580                         if (flags & FLAG_END) {
2581                                 // eat environment name
2582                                 string const name = p.getArg('{', '}');
2583                                 if (name != active_environment())
2584                                         cerr << "\\end{" + name + "} does not match \\begin{"
2585                                                 + active_environment() + "}\n";
2586                                 return;
2587                         }
2588                         p.error("found 'end' unexpectedly");
2589                 }
2590
2591                 else if (t.cs() == "item") {
2592                         string s;
2593                         bool const optarg = p.hasOpt();
2594                         if (optarg) {
2595                                 // FIXME: This swallows comments, but we cannot use
2596                                 //        eat_whitespace() since we must not output
2597                                 //        anything before the item.
2598                                 p.skip_spaces(true);
2599                                 s = p.verbatimOption();
2600                         } else
2601                                 p.skip_spaces(false);
2602                         context.set_item();
2603                         context.check_layout(os);
2604                         if (context.has_item) {
2605                                 // An item in an unknown list-like environment
2606                                 // FIXME: Do this in check_layout()!
2607                                 context.has_item = false;
2608                                 if (optarg)
2609                                         output_ert_inset(os, "\\item", context);
2610                                 else
2611                                         output_ert_inset(os, "\\item ", context);
2612                         }
2613                         if (optarg) {
2614                                 if (context.layout->labeltype != LABEL_MANUAL) {
2615                                         // handle option of itemize item
2616                                         begin_inset(os, "Argument item:1\n");
2617                                         os << "status open\n";
2618                                         os << "\n\\begin_layout Plain Layout\n";
2619                                         Parser p2(s + ']');
2620                                         os << parse_text_snippet(p2,
2621                                                 FLAG_BRACK_LAST, outer, context);
2622                                         // we must not use context.check_end_layout(os)
2623                                         // because that would close the outer itemize layout
2624                                         os << "\n\\end_layout\n";
2625                                         end_inset(os);
2626                                         eat_whitespace(p, os, context, false);
2627                                 } else if (!s.empty()) {
2628                                         // LyX adds braces around the argument,
2629                                         // so we need to remove them here.
2630                                         if (s.size() > 2 && s[0] == '{' &&
2631                                             s[s.size()-1] == '}')
2632                                                 s = s.substr(1, s.size()-2);
2633                                         // If the argument contains a space we
2634                                         // must put it into ERT: Otherwise LyX
2635                                         // would misinterpret the space as
2636                                         // item delimiter (bug 7663)
2637                                         if (contains(s, ' ')) {
2638                                                 output_ert_inset(os, s, context);
2639                                         } else {
2640                                                 Parser p2(s + ']');
2641                                                 os << parse_text_snippet(p2,
2642                                                         FLAG_BRACK_LAST, outer, context);
2643                                         }
2644                                         // The space is needed to separate the
2645                                         // item from the rest of the sentence.
2646                                         os << ' ';
2647                                         eat_whitespace(p, os, context, false);
2648                                 }
2649                         }
2650                 }
2651
2652                 else if (t.cs() == "bibitem") {
2653                         context.set_item();
2654                         context.check_layout(os);
2655                         eat_whitespace(p, os, context, false);
2656                         string label = convert_command_inset_arg(p.verbatimOption());
2657                         string key = convert_command_inset_arg(p.verbatim_item());
2658                         if (contains(label, '\\') || contains(key, '\\')) {
2659                                 // LyX can't handle LaTeX commands in labels or keys
2660                                 output_ert_inset(os, t.asInput() + '[' + label +
2661                                                "]{" + p.verbatim_item() + '}',
2662                                            context);
2663                         } else {
2664                                 begin_command_inset(os, "bibitem", "bibitem");
2665                                 os << "label \"" << label << "\"\n"
2666                                       "key \"" << key << "\"\n";
2667                                 end_inset(os);
2668                         }
2669                 }
2670
2671                 else if (is_macro(p)) {
2672                         // catch the case of \def\inputGnumericTable
2673                         bool macro = true;
2674                         if (t.cs() == "def") {
2675                                 Token second = p.next_token();
2676                                 if (second.cs() == "inputGnumericTable") {
2677                                         p.pushPosition();
2678                                         p.get_token();
2679                                         skip_braces(p);
2680                                         Token third = p.get_token();
2681                                         p.popPosition();
2682                                         if (third.cs() == "input") {
2683                                                 p.get_token();
2684                                                 skip_braces(p);
2685                                                 p.get_token();
2686                                                 string name = normalize_filename(p.verbatim_item());
2687                                                 string const path = getMasterFilePath(true);
2688                                                 // We want to preserve relative / absolute filenames,
2689                                                 // therefore path is only used for testing
2690                                                 // The file extension is in every case ".tex".
2691                                                 // So we need to remove this extension and check for
2692                                                 // the original one.
2693                                                 name = removeExtension(name);
2694                                                 if (!makeAbsPath(name, path).exists()) {
2695                                                         char const * const Gnumeric_formats[] = {"gnumeric",
2696                                                                 "ods", "xls", 0};
2697                                                         string const Gnumeric_name =
2698                                                                 find_file(name, path, Gnumeric_formats);
2699                                                         if (!Gnumeric_name.empty())
2700                                                                 name = Gnumeric_name;
2701                                                 }
2702                                                 FileName const absname = makeAbsPath(name, path);
2703                                                 if (absname.exists()) {
2704                                                         fix_child_filename(name);
2705                                                         copy_file(absname, name);
2706                                                 } else
2707                                                         cerr << "Warning: Could not find file '"
2708                                                              << name << "'." << endl;
2709                                                 context.check_layout(os);
2710                                                 begin_inset(os, "External\n\ttemplate ");
2711                                                 os << "GnumericSpreadsheet\n\tfilename "
2712                                                    << name << "\n";
2713                                                 end_inset(os);
2714                                                 context.check_layout(os);
2715                                                 macro = false;
2716                                                 // register the packages that are automatically loaded
2717                                                 // by the Gnumeric template
2718                                                 registerExternalTemplatePackages("GnumericSpreadsheet");
2719                                         }
2720                                 }
2721                         }
2722                         if (macro)
2723                                 parse_macro(p, os, context);
2724                 }
2725
2726                 else if (t.cs() == "noindent") {
2727                         p.skip_spaces();
2728                         context.add_par_extra_stuff("\\noindent\n");
2729                 }
2730
2731                 else if (t.cs() == "appendix") {
2732                         context.add_par_extra_stuff("\\start_of_appendix\n");
2733                         // We need to start a new paragraph. Otherwise the
2734                         // appendix in 'bla\appendix\chapter{' would start
2735                         // too late.
2736                         context.new_paragraph(os);
2737                         // We need to make sure that the paragraph is
2738                         // generated even if it is empty. Otherwise the
2739                         // appendix in '\par\appendix\par\chapter{' would
2740                         // start too late.
2741                         context.check_layout(os);
2742                         // FIXME: This is a hack to prevent paragraph
2743                         // deletion if it is empty. Handle this better!
2744                         output_ert_inset(os,
2745                                 "%dummy comment inserted by tex2lyx to "
2746                                 "ensure that this paragraph is not empty",
2747                                 context);
2748                         // Both measures above may generate an additional
2749                         // empty paragraph, but that does not hurt, because
2750                         // whitespace does not matter here.
2751                         eat_whitespace(p, os, context, true);
2752                 }
2753
2754                 // Must catch empty dates before findLayout is called below
2755                 else if (t.cs() == "date") {
2756                         eat_whitespace(p, os, context, false);
2757                         p.pushPosition();
2758                         string const date = p.verbatim_item();
2759                         p.popPosition();
2760                         if (date.empty()) {
2761                                 preamble.suppressDate(true);
2762                                 p.verbatim_item();
2763                         } else {
2764                                 preamble.suppressDate(false);
2765                                 if (context.new_layout_allowed &&
2766                                     (newlayout = findLayout(context.textclass,
2767                                                             t.cs(), true))) {
2768                                         // write the layout
2769                                         output_command_layout(os, p, outer,
2770                                                         context, newlayout);
2771                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
2772                                         if (!preamble.titleLayoutFound())
2773                                                 preamble.titleLayoutFound(newlayout->intitle);
2774                                         set<string> const & req = newlayout->requires();
2775                                         set<string>::const_iterator it = req.begin();
2776                                         set<string>::const_iterator en = req.end();
2777                                         for (; it != en; ++it)
2778                                                 preamble.registerAutomaticallyLoadedPackage(*it);
2779                                 } else
2780                                         output_ert_inset(os,
2781                                                 "\\date{" + p.verbatim_item() + '}',
2782                                                 context);
2783                         }
2784                 }
2785
2786                 // Starred section headings
2787                 // Must attempt to parse "Section*" before "Section".
2788                 else if ((p.next_token().asInput() == "*") &&
2789                          context.new_layout_allowed &&
2790                          (newlayout = findLayout(context.textclass, t.cs() + '*', true))) {
2791                         // write the layout
2792                         p.get_token();
2793                         output_command_layout(os, p, outer, context, newlayout);
2794                         p.skip_spaces();
2795                         if (!preamble.titleLayoutFound())
2796                                 preamble.titleLayoutFound(newlayout->intitle);
2797                         set<string> const & req = newlayout->requires();
2798                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
2799                                 preamble.registerAutomaticallyLoadedPackage(*it);
2800                 }
2801
2802                 // Section headings and the like
2803                 else if (context.new_layout_allowed &&
2804                          (newlayout = findLayout(context.textclass, t.cs(), true))) {
2805                         // write the layout
2806                         output_command_layout(os, p, outer, context, newlayout);
2807                         p.skip_spaces();
2808                         if (!preamble.titleLayoutFound())
2809                                 preamble.titleLayoutFound(newlayout->intitle);
2810                         set<string> const & req = newlayout->requires();
2811                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
2812                                 preamble.registerAutomaticallyLoadedPackage(*it);
2813                 }
2814
2815                 else if (t.cs() == "subfloat") {
2816                         // the syntax is \subfloat[caption]{content}
2817                         // if it is a table of figure depends on the surrounding float
2818                         bool has_caption = false;
2819                         p.skip_spaces();
2820                         // do nothing if there is no outer float
2821                         if (!float_type.empty()) {
2822                                 context.check_layout(os);
2823                                 p.skip_spaces();
2824                                 begin_inset(os, "Float " + float_type + "\n");
2825                                 os << "wide false"
2826                                    << "\nsideways false"
2827                                    << "\nstatus collapsed\n\n";
2828                                 // test for caption
2829                                 string caption;
2830                                 if (p.next_token().cat() != catEscape &&
2831                                                 p.next_token().character() == '[') {
2832                                                         p.get_token(); // eat '['
2833                                                         caption = parse_text_snippet(p, FLAG_BRACK_LAST, outer, context);
2834                                                         has_caption = true;
2835                                 }
2836                                 // the content
2837                                 parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
2838                                 // the caption comes always as the last
2839                                 if (has_caption) {
2840                                         // we must make sure that the caption gets a \begin_layout
2841                                         os << "\n\\begin_layout Plain Layout";
2842                                         p.skip_spaces();
2843                                         begin_inset(os, "Caption Standard\n");
2844                                         Context newcontext(true, context.textclass,
2845                                                            0, 0, context.font);
2846                                         newcontext.check_layout(os);
2847                                         os << caption << "\n";
2848                                         newcontext.check_end_layout(os);
2849                                         // We don't need really a new paragraph, but
2850                                         // we must make sure that the next item gets a \begin_layout.
2851                                         //newcontext.new_paragraph(os);
2852                                         end_inset(os);
2853                                         p.skip_spaces();
2854                                 }
2855                                 // We don't need really a new paragraph, but
2856                                 // we must make sure that the next item gets a \begin_layout.
2857                                 if (has_caption)
2858                                         context.new_paragraph(os);
2859                                 end_inset(os);
2860                                 p.skip_spaces();
2861                                 context.check_end_layout(os);
2862                                 // close the layout we opened
2863                                 if (has_caption)
2864                                         os << "\n\\end_layout\n";
2865                         } else {
2866                                 // if the float type is not supported or there is no surrounding float
2867                                 // output it as ERT
2868                                 if (p.hasOpt()) {
2869                                         string opt_arg = convert_command_inset_arg(p.getArg('[', ']'));
2870                                         output_ert_inset(os, t.asInput() + '[' + opt_arg +
2871                                                "]{" + p.verbatim_item() + '}', context);
2872                                 } else
2873                                         output_ert_inset(os, t.asInput() + "{" + p.verbatim_item() + '}', context);
2874                         }
2875                 }
2876
2877                 else if (t.cs() == "includegraphics") {
2878                         bool const clip = p.next_token().asInput() == "*";
2879                         if (clip)
2880                                 p.get_token();
2881                         string const arg = p.getArg('[', ']');
2882                         map<string, string> opts;
2883                         vector<string> keys;
2884                         split_map(arg, opts, keys);
2885                         if (clip)
2886                                 opts["clip"] = string();
2887                         string name = normalize_filename(p.verbatim_item());
2888
2889                         string const path = getMasterFilePath(true);
2890                         // We want to preserve relative / absolute filenames,
2891                         // therefore path is only used for testing
2892                         if (!makeAbsPath(name, path).exists()) {
2893                                 // The file extension is probably missing.
2894                                 // Now try to find it out.
2895                                 string const dvips_name =
2896                                         find_file(name, path,
2897                                                   known_dvips_graphics_formats);
2898                                 string const pdftex_name =
2899                                         find_file(name, path,
2900                                                   known_pdftex_graphics_formats);
2901                                 if (!dvips_name.empty()) {
2902                                         if (!pdftex_name.empty()) {
2903                                                 cerr << "This file contains the "
2904                                                         "latex snippet\n"
2905                                                         "\"\\includegraphics{"
2906                                                      << name << "}\".\n"
2907                                                         "However, files\n\""
2908                                                      << dvips_name << "\" and\n\""
2909                                                      << pdftex_name << "\"\n"
2910                                                         "both exist, so I had to make a "
2911                                                         "choice and took the first one.\n"
2912                                                         "Please move the unwanted one "
2913                                                         "someplace else and try again\n"
2914                                                         "if my choice was wrong."
2915                                                      << endl;
2916                                         }
2917                                         name = dvips_name;
2918                                 } else if (!pdftex_name.empty()) {
2919                                         name = pdftex_name;
2920                                         pdflatex = true;
2921                                 }
2922                         }
2923
2924                         FileName const absname = makeAbsPath(name, path);
2925                         if (absname.exists()) {
2926                                 fix_child_filename(name);
2927                                 copy_file(absname, name);
2928                         } else
2929                                 cerr << "Warning: Could not find graphics file '"
2930                                      << name << "'." << endl;
2931
2932                         context.check_layout(os);
2933                         begin_inset(os, "Graphics ");
2934                         os << "\n\tfilename " << name << '\n';
2935                         if (opts.find("width") != opts.end())
2936                                 os << "\twidth "
2937                                    << translate_len(opts["width"]) << '\n';
2938                         if (opts.find("height") != opts.end())
2939                                 os << "\theight "
2940                                    << translate_len(opts["height"]) << '\n';
2941                         if (opts.find("scale") != opts.end()) {
2942                                 istringstream iss(opts["scale"]);
2943                                 double val;
2944                                 iss >> val;
2945                                 val = val*100;
2946                                 os << "\tscale " << val << '\n';
2947                         }
2948                         if (opts.find("angle") != opts.end()) {
2949                                 os << "\trotateAngle "
2950                                    << opts["angle"] << '\n';
2951                                 vector<string>::const_iterator a =
2952                                         find(keys.begin(), keys.end(), "angle");
2953                                 vector<string>::const_iterator s =
2954                                         find(keys.begin(), keys.end(), "width");
2955                                 if (s == keys.end())
2956                                         s = find(keys.begin(), keys.end(), "height");
2957                                 if (s == keys.end())
2958                                         s = find(keys.begin(), keys.end(), "scale");
2959                                 if (s != keys.end() && distance(s, a) > 0)
2960                                         os << "\tscaleBeforeRotation\n";
2961                         }
2962                         if (opts.find("origin") != opts.end()) {
2963                                 ostringstream ss;
2964                                 string const opt = opts["origin"];
2965                                 if (opt.find('l') != string::npos) ss << "left";
2966                                 if (opt.find('r') != string::npos) ss << "right";
2967                                 if (opt.find('c') != string::npos) ss << "center";
2968                                 if (opt.find('t') != string::npos) ss << "Top";
2969                                 if (opt.find('b') != string::npos) ss << "Bottom";
2970                                 if (opt.find('B') != string::npos) ss << "Baseline";
2971                                 if (!ss.str().empty())
2972                                         os << "\trotateOrigin " << ss.str() << '\n';
2973                                 else
2974                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
2975                         }
2976                         if (opts.find("keepaspectratio") != opts.end())
2977                                 os << "\tkeepAspectRatio\n";
2978                         if (opts.find("clip") != opts.end())
2979                                 os << "\tclip\n";
2980                         if (opts.find("draft") != opts.end())
2981                                 os << "\tdraft\n";
2982                         if (opts.find("bb") != opts.end())
2983                                 os << "\tBoundingBox "
2984                                    << opts["bb"] << '\n';
2985                         int numberOfbbOptions = 0;
2986                         if (opts.find("bbllx") != opts.end())
2987                                 numberOfbbOptions++;
2988                         if (opts.find("bblly") != opts.end())
2989                                 numberOfbbOptions++;
2990                         if (opts.find("bburx") != opts.end())
2991                                 numberOfbbOptions++;
2992                         if (opts.find("bbury") != opts.end())
2993                                 numberOfbbOptions++;
2994                         if (numberOfbbOptions == 4)
2995                                 os << "\tBoundingBox "
2996                                    << opts["bbllx"] << " " << opts["bblly"] << " "
2997                                    << opts["bburx"] << " " << opts["bbury"] << '\n';
2998                         else if (numberOfbbOptions > 0)
2999                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3000                         numberOfbbOptions = 0;
3001                         if (opts.find("natwidth") != opts.end())
3002                                 numberOfbbOptions++;
3003                         if (opts.find("natheight") != opts.end())
3004                                 numberOfbbOptions++;
3005                         if (numberOfbbOptions == 2)
3006                                 os << "\tBoundingBox 0bp 0bp "
3007                                    << opts["natwidth"] << " " << opts["natheight"] << '\n';
3008                         else if (numberOfbbOptions > 0)
3009                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3010                         ostringstream special;
3011                         if (opts.find("hiresbb") != opts.end())
3012                                 special << "hiresbb,";
3013                         if (opts.find("trim") != opts.end())
3014                                 special << "trim,";
3015                         if (opts.find("viewport") != opts.end())
3016                                 special << "viewport=" << opts["viewport"] << ',';
3017                         if (opts.find("totalheight") != opts.end())
3018                                 special << "totalheight=" << opts["totalheight"] << ',';
3019                         if (opts.find("type") != opts.end())
3020                                 special << "type=" << opts["type"] << ',';
3021                         if (opts.find("ext") != opts.end())
3022                                 special << "ext=" << opts["ext"] << ',';
3023                         if (opts.find("read") != opts.end())
3024                                 special << "read=" << opts["read"] << ',';
3025                         if (opts.find("command") != opts.end())
3026                                 special << "command=" << opts["command"] << ',';
3027                         string s_special = special.str();
3028                         if (!s_special.empty()) {
3029                                 // We had special arguments. Remove the trailing ','.
3030                                 os << "\tspecial " << s_special.substr(0, s_special.size() - 1) << '\n';
3031                         }
3032                         // TODO: Handle the unknown settings better.
3033                         // Warn about invalid options.
3034                         // Check whether some option was given twice.
3035                         end_inset(os);
3036                         preamble.registerAutomaticallyLoadedPackage("graphicx");
3037                 }
3038
3039                 else if (t.cs() == "footnote" ||
3040                          (t.cs() == "thanks" && context.layout->intitle)) {
3041                         p.skip_spaces();
3042                         context.check_layout(os);
3043                         begin_inset(os, "Foot\n");
3044                         os << "status collapsed\n\n";
3045                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3046                         end_inset(os);
3047                 }
3048
3049                 else if (t.cs() == "marginpar") {
3050                         p.skip_spaces();
3051                         context.check_layout(os);
3052                         begin_inset(os, "Marginal\n");
3053                         os << "status collapsed\n\n";
3054                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3055                         end_inset(os);
3056                 }
3057
3058                 else if (t.cs() == "lstinline") {
3059                         p.skip_spaces();
3060                         parse_listings(p, os, context, true);
3061                 }
3062
3063                 else if (t.cs() == "ensuremath") {
3064                         p.skip_spaces();
3065                         context.check_layout(os);
3066                         string const s = p.verbatim_item();
3067                         //FIXME: this never triggers in UTF8
3068                         if (s == "\xb1" || s == "\xb3" || s == "\xb2" || s == "\xb5")
3069                                 os << s;
3070                         else
3071                                 output_ert_inset(os, "\\ensuremath{" + s + "}",
3072                                            context);
3073                 }
3074
3075                 else if (t.cs() == "makeindex" || t.cs() == "maketitle") {
3076                         if (preamble.titleLayoutFound()) {
3077                                 // swallow this
3078                                 skip_spaces_braces(p);
3079                         } else
3080                                 output_ert_inset(os, t.asInput(), context);
3081                 }
3082
3083                 else if (t.cs() == "tableofcontents" || t.cs() == "lstlistoflistings") {
3084                         context.check_layout(os);
3085                         begin_command_inset(os, "toc", t.cs());
3086                         end_inset(os);
3087                         skip_spaces_braces(p);
3088                         if (t.cs() == "lstlistoflistings")
3089                                 preamble.registerAutomaticallyLoadedPackage("listings");
3090                 }
3091
3092                 else if (t.cs() == "listoffigures" || t.cs() == "listoftables") {
3093                         context.check_layout(os);
3094                         if (t.cs() == "listoffigures")
3095                                 begin_inset(os, "FloatList figure\n");
3096                         else
3097                                 begin_inset(os, "FloatList table\n");
3098                         end_inset(os);
3099                         skip_spaces_braces(p);
3100                 }
3101
3102                 else if (t.cs() == "listof") {
3103                         p.skip_spaces(true);
3104                         string const name = p.get_token().cs();
3105                         if (context.textclass.floats().typeExist(name)) {
3106                                 context.check_layout(os);
3107                                 begin_inset(os, "FloatList ");
3108                                 os << name << "\n";
3109                                 end_inset(os);
3110                                 p.get_token(); // swallow second arg
3111                         } else
3112                                 output_ert_inset(os, "\\listof{" + name + "}", context);
3113                 }
3114
3115                 else if ((where = is_known(t.cs(), known_text_font_families)))
3116                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3117                                 context, "\\family", context.font.family,
3118                                 known_coded_font_families[where - known_text_font_families]);
3119
3120                 else if ((where = is_known(t.cs(), known_text_font_series)))
3121                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3122                                 context, "\\series", context.font.series,
3123                                 known_coded_font_series[where - known_text_font_series]);
3124
3125                 else if ((where = is_known(t.cs(), known_text_font_shapes)))
3126                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3127                                 context, "\\shape", context.font.shape,
3128                                 known_coded_font_shapes[where - known_text_font_shapes]);
3129
3130                 else if (t.cs() == "textnormal" || t.cs() == "normalfont") {
3131                         context.check_layout(os);
3132                         TeXFont oldFont = context.font;
3133                         context.font.init();
3134                         context.font.size = oldFont.size;
3135                         os << "\n\\family " << context.font.family << "\n";
3136                         os << "\n\\series " << context.font.series << "\n";
3137                         os << "\n\\shape " << context.font.shape << "\n";
3138                         if (t.cs() == "textnormal") {
3139                                 parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3140                                 output_font_change(os, context.font, oldFont);
3141                                 context.font = oldFont;
3142                         } else
3143                                 eat_whitespace(p, os, context, false);
3144                 }
3145
3146                 else if (t.cs() == "textcolor") {
3147                         // scheme is \textcolor{color name}{text}
3148                         string const color = p.verbatim_item();
3149                         // we only support the predefined colors of the color package
3150                         if (color == "black" || color == "blue" || color == "cyan"
3151                                 || color == "green" || color == "magenta" || color == "red"
3152                                 || color == "white" || color == "yellow") {
3153                                         context.check_layout(os);
3154                                         os << "\n\\color " << color << "\n";
3155                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3156                                         context.check_layout(os);
3157                                         os << "\n\\color inherit\n";
3158                                         preamble.registerAutomaticallyLoadedPackage("color");
3159                         } else
3160                                 // for custom defined colors
3161                                 output_ert_inset(os, t.asInput() + "{" + color + "}", context);
3162                 }
3163
3164                 else if (t.cs() == "underbar" || t.cs() == "uline") {
3165                         // \underbar is not 100% correct (LyX outputs \uline
3166                         // of ulem.sty). The difference is that \ulem allows
3167                         // line breaks, and \underbar does not.
3168                         // Do NOT handle \underline.
3169                         // \underbar cuts through y, g, q, p etc.,
3170                         // \underline does not.
3171                         context.check_layout(os);
3172                         os << "\n\\bar under\n";
3173                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3174                         context.check_layout(os);
3175                         os << "\n\\bar default\n";
3176                         preamble.registerAutomaticallyLoadedPackage("ulem");
3177                 }
3178
3179                 else if (t.cs() == "sout") {
3180                         context.check_layout(os);
3181                         os << "\n\\strikeout on\n";
3182                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3183                         context.check_layout(os);
3184                         os << "\n\\strikeout default\n";
3185                         preamble.registerAutomaticallyLoadedPackage("ulem");
3186                 }
3187
3188                 else if (t.cs() == "uuline" || t.cs() == "uwave" ||
3189                          t.cs() == "emph" || t.cs() == "noun") {
3190                         context.check_layout(os);
3191                         os << "\n\\" << t.cs() << " on\n";
3192                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3193                         context.check_layout(os);
3194                         os << "\n\\" << t.cs() << " default\n";
3195                         if (t.cs() == "uuline" || t.cs() == "uwave")
3196                                 preamble.registerAutomaticallyLoadedPackage("ulem");
3197                 }
3198
3199                 else if (t.cs() == "lyxadded" || t.cs() == "lyxdeleted") {
3200                         context.check_layout(os);
3201                         string name = p.getArg('{', '}');
3202                         string localtime = p.getArg('{', '}');
3203                         preamble.registerAuthor(name);
3204                         Author const & author = preamble.getAuthor(name);
3205                         // from_asctime_utc() will fail if LyX decides to output the
3206                         // time in the text language.
3207                         time_t ptime = from_asctime_utc(localtime);
3208                         if (ptime == static_cast<time_t>(-1)) {
3209                                 cerr << "Warning: Could not parse time `" << localtime
3210                                      << "´ for change tracking, using current time instead.\n";
3211                                 ptime = current_time();
3212                         }
3213                         if (t.cs() == "lyxadded")
3214                                 os << "\n\\change_inserted ";
3215                         else
3216                                 os << "\n\\change_deleted ";
3217                         os << author.bufferId() << ' ' << ptime << '\n';
3218                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3219                         bool dvipost    = LaTeXPackages::isAvailable("dvipost");
3220                         bool xcolorulem = LaTeXPackages::isAvailable("ulem") &&
3221                                           LaTeXPackages::isAvailable("xcolor");
3222                         // No need to test for luatex, since luatex comes in
3223                         // two flavours (dvi and pdf), like latex, and those
3224                         // are detected by pdflatex.
3225                         if (pdflatex || xetex) {
3226                                 if (xcolorulem) {
3227                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3228                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3229                                         preamble.registerAutomaticallyLoadedPackage("pdfcolmk");
3230                                 }
3231                         } else {
3232                                 if (dvipost) {
3233                                         preamble.registerAutomaticallyLoadedPackage("dvipost");
3234                                 } else if (xcolorulem) {
3235                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3236                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3237                                 }
3238                         }
3239                 }
3240
3241                 else if (t.cs() == "textipa") {
3242                         context.check_layout(os);
3243                         begin_inset(os, "IPA\n");
3244                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3245                         end_inset(os);
3246                         preamble.registerAutomaticallyLoadedPackage("tipa");
3247                         preamble.registerAutomaticallyLoadedPackage("tipx");
3248                 }
3249
3250                 else if (t.cs() == "texttoptiebar" || t.cs() == "textbottomtiebar") {
3251                         context.check_layout(os);
3252                         begin_inset(os, "IPADeco " + t.cs().substr(4) + "\n");
3253                         os << "status open\n";
3254                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3255                         end_inset(os);
3256                         p.skip_spaces();
3257                 }
3258
3259                 else if (t.cs() == "textvertline") {
3260                         // FIXME: This is not correct, \textvertline is higher than |
3261                         os << "|";
3262                         skip_braces(p);
3263                         continue;
3264                 }
3265
3266                 else if (t.cs() == "tone" ) {
3267                         context.check_layout(os);
3268                         // register the tone package
3269                         preamble.registerAutomaticallyLoadedPackage("tone");
3270                         string content = trimSpaceAndEol(p.verbatim_item());
3271                         string command = t.asInput() + "{" + content + "}";
3272                         // some tones can be detected by unicodesymbols, some need special code
3273                         if (is_known(content, known_tones)) {
3274                                 os << "\\IPAChar " << command << "\n";
3275                                 continue;
3276                         }
3277                         // try to see whether the string is in unicodesymbols
3278                         bool termination;
3279                         docstring rem;
3280                         set<string> req;
3281                         docstring s = encodings.fromLaTeXCommand(from_utf8(command),
3282                                 Encodings::TEXT_CMD | Encodings::MATH_CMD,
3283                                 termination, rem, &req);
3284                         if (!s.empty()) {
3285                                 os << to_utf8(s);
3286                                 if (!rem.empty())
3287                                         output_ert_inset(os, to_utf8(rem), context);
3288                                 for (set<string>::const_iterator it = req.begin();
3289                                      it != req.end(); ++it)
3290                                         preamble.registerAutomaticallyLoadedPackage(*it);
3291                         } else
3292                                 // we did not find a non-ert version
3293                                 output_ert_inset(os, command, context);
3294                 }
3295
3296                 else if (t.cs() == "phantom" || t.cs() == "hphantom" ||
3297                              t.cs() == "vphantom") {
3298                         context.check_layout(os);
3299                         if (t.cs() == "phantom")
3300                                 begin_inset(os, "Phantom Phantom\n");
3301                         if (t.cs() == "hphantom")
3302                                 begin_inset(os, "Phantom HPhantom\n");
3303                         if (t.cs() == "vphantom")
3304                                 begin_inset(os, "Phantom VPhantom\n");
3305                         os << "status open\n";
3306                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context,
3307                                             "Phantom");
3308                         end_inset(os);
3309                 }
3310
3311                 else if (t.cs() == "href") {
3312                         context.check_layout(os);
3313                         string target = convert_command_inset_arg(p.verbatim_item());
3314                         string name = convert_command_inset_arg(p.verbatim_item());
3315                         string type;
3316                         size_t i = target.find(':');
3317                         if (i != string::npos) {
3318                                 type = target.substr(0, i + 1);
3319                                 if (type == "mailto:" || type == "file:")
3320                                         target = target.substr(i + 1);
3321                                 // handle the case that name is equal to target, except of "http://"
3322                                 else if (target.substr(i + 3) == name && type == "http:")
3323                                         target = name;
3324                         }
3325                         begin_command_inset(os, "href", "href");
3326                         if (name != target)
3327                                 os << "name \"" << name << "\"\n";
3328                         os << "target \"" << target << "\"\n";
3329                         if (type == "mailto:" || type == "file:")
3330                                 os << "type \"" << type << "\"\n";
3331                         end_inset(os);
3332                         skip_spaces_braces(p);
3333                 }
3334
3335                 else if (t.cs() == "lyxline") {
3336                         // swallow size argument (it is not used anyway)
3337                         p.getArg('{', '}');
3338                         if (!context.atParagraphStart()) {
3339                                 // so our line is in the middle of a paragraph
3340                                 // we need to add a new line, lest this line
3341                                 // follow the other content on that line and
3342                                 // run off the side of the page
3343                                 // FIXME: This may create an empty paragraph,
3344                                 //        but without that it would not be
3345                                 //        possible to set noindent below.
3346                                 //        Fortunately LaTeX does not care
3347                                 //        about the empty paragraph.
3348                                 context.new_paragraph(os);
3349                         }
3350                         if (preamble.indentParagraphs()) {
3351                                 // we need to unindent, lest the line be too long
3352                                 context.add_par_extra_stuff("\\noindent\n");
3353                         }
3354                         context.check_layout(os);
3355                         begin_command_inset(os, "line", "rule");
3356                         os << "offset \"0.5ex\"\n"
3357                               "width \"100line%\"\n"
3358                               "height \"1pt\"\n";
3359                         end_inset(os);
3360                 }
3361
3362                 else if (t.cs() == "rule") {
3363                         string const offset = (p.hasOpt() ? p.getArg('[', ']') : string());
3364                         string const width = p.getArg('{', '}');
3365                         string const thickness = p.getArg('{', '}');
3366                         context.check_layout(os);
3367                         begin_command_inset(os, "line", "rule");
3368                         if (!offset.empty())
3369                                 os << "offset \"" << translate_len(offset) << "\"\n";
3370                         os << "width \"" << translate_len(width) << "\"\n"
3371                                   "height \"" << translate_len(thickness) << "\"\n";
3372                         end_inset(os);
3373                 }
3374
3375                 else if (is_known(t.cs(), known_phrases) ||
3376                          (t.cs() == "protect" &&
3377                           p.next_token().cat() == catEscape &&
3378                           is_known(p.next_token().cs(), known_phrases))) {
3379                         // LyX sometimes puts a \protect in front, so we have to ignore it
3380                         // FIXME: This needs to be changed when bug 4752 is fixed.
3381                         where = is_known(
3382                                 t.cs() == "protect" ? p.get_token().cs() : t.cs(),
3383                                 known_phrases);
3384                         context.check_layout(os);
3385                         os << known_coded_phrases[where - known_phrases];
3386                         skip_spaces_braces(p);
3387                 }
3388
3389                 // handle refstyle first to catch \eqref which can also occur
3390                 // without refstyle. Only recognize these commands if
3391                 // refstyle.sty was found in the preamble (otherwise \eqref
3392                 // and user defined ref commands could be misdetected).
3393                 else if ((where = is_known(t.cs(), known_refstyle_commands)) &&
3394                          preamble.refstyle()) {
3395                         context.check_layout(os);
3396                         begin_command_inset(os, "ref", "formatted");
3397                         os << "reference \"";
3398                         os << known_refstyle_prefixes[where - known_refstyle_commands]
3399                            << ":";
3400                         os << convert_command_inset_arg(p.verbatim_item())
3401                            << "\"\n";
3402                         end_inset(os);
3403                         preamble.registerAutomaticallyLoadedPackage("refstyle");
3404                 }
3405
3406                 // if refstyle is used, we must not convert \prettyref to a
3407                 // formatted reference, since that would result in a refstyle command.
3408                 else if ((where = is_known(t.cs(), known_ref_commands)) &&
3409                          (t.cs() != "prettyref" || !preamble.refstyle())) {
3410                         string const opt = p.getOpt();
3411                         if (opt.empty()) {
3412                                 context.check_layout(os);
3413                                 begin_command_inset(os, "ref",
3414                                         known_coded_ref_commands[where - known_ref_commands]);
3415                                 os << "reference \""
3416                                    << convert_command_inset_arg(p.verbatim_item())
3417                                    << "\"\n";
3418                                 end_inset(os);
3419                                 if (t.cs() == "vref" || t.cs() == "vpageref")
3420                                         preamble.registerAutomaticallyLoadedPackage("varioref");
3421                                 else if (t.cs() == "prettyref")
3422                                         preamble.registerAutomaticallyLoadedPackage("prettyref");
3423                         } else {
3424                                 // LyX does not yet support optional arguments of ref commands
3425                                 output_ert_inset(os, t.asInput() + '[' + opt + "]{" +
3426                                        p.verbatim_item() + '}', context);
3427                         }
3428                 }
3429
3430                 else if (use_natbib &&
3431                          is_known(t.cs(), known_natbib_commands) &&
3432                          ((t.cs() != "citefullauthor" &&
3433                            t.cs() != "citeyear" &&
3434                            t.cs() != "citeyearpar") ||
3435                           p.next_token().asInput() != "*")) {
3436                         context.check_layout(os);
3437                         string command = t.cs();
3438                         if (p.next_token().asInput() == "*") {
3439                                 command += '*';
3440                                 p.get_token();
3441                         }
3442                         if (command == "citefullauthor")
3443                                 // alternative name for "\\citeauthor*"
3444                                 command = "citeauthor*";
3445
3446                         // text before the citation
3447                         string before;
3448                         // text after the citation
3449                         string after;
3450                         get_cite_arguments(p, true, before, after);
3451
3452                         if (command == "cite") {
3453                                 // \cite without optional argument means
3454                                 // \citet, \cite with at least one optional
3455                                 // argument means \citep.
3456                                 if (before.empty() && after.empty())
3457                                         command = "citet";
3458                                 else
3459                                         command = "citep";
3460                         }
3461                         if (before.empty() && after == "[]")
3462                                 // avoid \citet[]{a}
3463                                 after.erase();
3464                         else if (before == "[]" && after == "[]") {
3465                                 // avoid \citet[][]{a}
3466                                 before.erase();
3467                                 after.erase();
3468                         }
3469                         // remove the brackets around after and before
3470                         if (!after.empty()) {
3471                                 after.erase(0, 1);
3472                                 after.erase(after.length() - 1, 1);
3473                                 after = convert_command_inset_arg(after);
3474                         }
3475                         if (!before.empty()) {
3476                                 before.erase(0, 1);
3477                                 before.erase(before.length() - 1, 1);
3478                                 before = convert_command_inset_arg(before);
3479                         }
3480                         begin_command_inset(os, "citation", command);
3481                         os << "after " << '"' << after << '"' << "\n";
3482                         os << "before " << '"' << before << '"' << "\n";
3483                         os << "key \""
3484                            << convert_command_inset_arg(p.verbatim_item())
3485                            << "\"\n";
3486                         end_inset(os);
3487                         // Need to set the cite engine if natbib is loaded by
3488                         // the document class directly
3489                         if (preamble.citeEngine() == "basic")
3490                                 preamble.citeEngine("natbib");
3491                 }
3492
3493                 else if (use_jurabib &&
3494                          is_known(t.cs(), known_jurabib_commands) &&
3495                          (t.cs() == "cite" || p.next_token().asInput() != "*")) {
3496                         context.check_layout(os);
3497                         string command = t.cs();
3498                         if (p.next_token().asInput() == "*") {
3499                                 command += '*';
3500                                 p.get_token();
3501                         }
3502                         char argumentOrder = '\0';
3503                         vector<string> const options =
3504                                 preamble.getPackageOptions("jurabib");
3505                         if (find(options.begin(), options.end(),
3506                                       "natbiborder") != options.end())
3507                                 argumentOrder = 'n';
3508                         else if (find(options.begin(), options.end(),
3509                                            "jurabiborder") != options.end())
3510                                 argumentOrder = 'j';
3511
3512                         // text before the citation
3513                         string before;
3514                         // text after the citation
3515                         string after;
3516                         get_cite_arguments(p, argumentOrder != 'j', before, after);
3517
3518                         string const citation = p.verbatim_item();
3519                         if (!before.empty() && argumentOrder == '\0') {
3520                                 cerr << "Warning: Assuming argument order "
3521                                         "of jurabib version 0.6 for\n'"
3522                                      << command << before << after << '{'
3523                                      << citation << "}'.\n"
3524                                         "Add 'jurabiborder' to the jurabib "
3525                                         "package options if you used an\n"
3526                                         "earlier jurabib version." << endl;
3527                         }
3528                         if (!after.empty()) {
3529                                 after.erase(0, 1);
3530                                 after.erase(after.length() - 1, 1);
3531                         }
3532                         if (!before.empty()) {
3533                                 before.erase(0, 1);
3534                                 before.erase(before.length() - 1, 1);
3535                         }
3536                         begin_command_inset(os, "citation", command);
3537                         os << "after " << '"' << after << '"' << "\n";
3538                         os << "before " << '"' << before << '"' << "\n";
3539                         os << "key " << '"' << citation << '"' << "\n";
3540                         end_inset(os);
3541                         // Need to set the cite engine if jurabib is loaded by
3542                         // the document class directly
3543                         if (preamble.citeEngine() == "basic")
3544                                 preamble.citeEngine("jurabib");
3545                 }
3546
3547                 else if (t.cs() == "cite"
3548                         || t.cs() == "nocite") {
3549                         context.check_layout(os);
3550                         string after = convert_command_inset_arg(p.getArg('[', ']'));
3551                         string key = convert_command_inset_arg(p.verbatim_item());
3552                         // store the case that it is "\nocite{*}" to use it later for
3553                         // the BibTeX inset
3554                         if (key != "*") {
3555                                 begin_command_inset(os, "citation", t.cs());
3556                                 os << "after " << '"' << after << '"' << "\n";
3557                                 os << "key " << '"' << key << '"' << "\n";
3558                                 end_inset(os);
3559                         } else if (t.cs() == "nocite")
3560                                 btprint = key;
3561                 }
3562
3563                 else if (t.cs() == "index" ||
3564                          (t.cs() == "sindex" && preamble.use_indices() == "true")) {
3565                         context.check_layout(os);
3566                         string const arg = (t.cs() == "sindex" && p.hasOpt()) ?
3567                                 p.getArg('[', ']') : "";
3568                         string const kind = arg.empty() ? "idx" : arg;
3569                         begin_inset(os, "Index ");
3570                         os << kind << "\nstatus collapsed\n";
3571                         parse_text_in_inset(p, os, FLAG_ITEM, false, context, "Index");
3572                         end_inset(os);
3573                         if (kind != "idx")
3574                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3575                 }
3576
3577                 else if (t.cs() == "nomenclature") {
3578                         context.check_layout(os);
3579                         begin_command_inset(os, "nomenclature", "nomenclature");
3580                         string prefix = convert_command_inset_arg(p.getArg('[', ']'));
3581                         if (!prefix.empty())
3582                                 os << "prefix " << '"' << prefix << '"' << "\n";
3583                         os << "symbol " << '"'
3584                            << convert_command_inset_arg(p.verbatim_item());
3585                         os << "\"\ndescription \""
3586                            << convert_command_inset_arg(p.verbatim_item())
3587                            << "\"\n";
3588                         end_inset(os);
3589                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3590                 }
3591
3592                 else if (t.cs() == "label") {
3593                         context.check_layout(os);
3594                         begin_command_inset(os, "label", "label");
3595                         os << "name \""
3596                            << convert_command_inset_arg(p.verbatim_item())
3597                            << "\"\n";
3598                         end_inset(os);
3599                 }
3600
3601                 else if (t.cs() == "printindex" || t.cs() == "printsubindex") {
3602                         context.check_layout(os);
3603                         string commandname = t.cs();
3604                         bool star = false;
3605                         if (p.next_token().asInput() == "*") {
3606                                 commandname += "*";
3607                                 star = true;
3608                                 p.get_token();
3609                         }
3610                         begin_command_inset(os, "index_print", commandname);
3611                         string const indexname = p.getArg('[', ']');
3612                         if (!star) {
3613                                 if (indexname.empty())
3614                                         os << "type \"idx\"\n";
3615                                 else
3616                                         os << "type \"" << indexname << "\"\n";
3617                         }
3618                         end_inset(os);
3619                         skip_spaces_braces(p);
3620                         preamble.registerAutomaticallyLoadedPackage("makeidx");
3621                         if (preamble.use_indices() == "true")
3622                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3623                 }
3624
3625                 else if (t.cs() == "printnomenclature") {
3626                         string width = "";
3627                         string width_type = "";
3628                         context.check_layout(os);
3629                         begin_command_inset(os, "nomencl_print", "printnomenclature");
3630                         // case of a custom width
3631                         if (p.hasOpt()) {
3632                                 width = p.getArg('[', ']');
3633                                 width = translate_len(width);
3634                                 width_type = "custom";
3635                         }
3636                         // case of no custom width
3637                         // the case of no custom width but the width set
3638                         // via \settowidth{\nomlabelwidth}{***} cannot be supported
3639                         // because the user could have set anything, not only the width
3640                         // of the longest label (which would be width_type = "auto")
3641                         string label = convert_command_inset_arg(p.getArg('{', '}'));
3642                         if (label.empty() && width_type.empty())
3643                                 width_type = "none";
3644                         os << "set_width \"" << width_type << "\"\n";
3645                         if (width_type == "custom")
3646                                 os << "width \"" << width << '\"';
3647                         end_inset(os);
3648                         skip_spaces_braces(p);
3649                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3650                 }
3651
3652                 else if ((t.cs() == "textsuperscript" || t.cs() == "textsubscript")) {
3653                         context.check_layout(os);
3654                         begin_inset(os, "script ");
3655                         os << t.cs().substr(4) << '\n';
3656                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3657                         end_inset(os);
3658                         if (t.cs() == "textsubscript")
3659                                 preamble.registerAutomaticallyLoadedPackage("subscript");
3660                 }
3661
3662                 else if ((where = is_known(t.cs(), known_quotes))) {
3663                         context.check_layout(os);
3664                         begin_inset(os, "Quotes ");
3665                         os << known_coded_quotes[where - known_quotes];
3666                         end_inset(os);
3667                         // LyX adds {} after the quote, so we have to eat
3668                         // spaces here if there are any before a possible
3669                         // {} pair.
3670                         eat_whitespace(p, os, context, false);
3671                         skip_braces(p);
3672                 }
3673
3674                 else if ((where = is_known(t.cs(), known_sizes)) &&
3675                          context.new_layout_allowed) {
3676                         context.check_layout(os);
3677                         TeXFont const oldFont = context.font;
3678                         context.font.size = known_coded_sizes[where - known_sizes];
3679                         output_font_change(os, oldFont, context.font);
3680                         eat_whitespace(p, os, context, false);
3681                 }
3682
3683                 else if ((where = is_known(t.cs(), known_font_families)) &&
3684                          context.new_layout_allowed) {
3685                         context.check_layout(os);
3686                         TeXFont const oldFont = context.font;
3687                         context.font.family =
3688                                 known_coded_font_families[where - known_font_families];
3689                         output_font_change(os, oldFont, context.font);
3690                         eat_whitespace(p, os, context, false);
3691                 }
3692
3693                 else if ((where = is_known(t.cs(), known_font_series)) &&
3694                          context.new_layout_allowed) {
3695                         context.check_layout(os);
3696                         TeXFont const oldFont = context.font;
3697                         context.font.series =
3698                                 known_coded_font_series[where - known_font_series];
3699                         output_font_change(os, oldFont, context.font);
3700                         eat_whitespace(p, os, context, false);
3701                 }
3702
3703                 else if ((where = is_known(t.cs(), known_font_shapes)) &&
3704                          context.new_layout_allowed) {
3705                         context.check_layout(os);
3706                         TeXFont const oldFont = context.font;
3707                         context.font.shape =
3708                                 known_coded_font_shapes[where - known_font_shapes];
3709                         output_font_change(os, oldFont, context.font);
3710                         eat_whitespace(p, os, context, false);
3711                 }
3712                 else if ((where = is_known(t.cs(), known_old_font_families)) &&
3713                          context.new_layout_allowed) {
3714                         context.check_layout(os);
3715                         TeXFont const oldFont = context.font;
3716                         context.font.init();
3717                         context.font.size = oldFont.size;
3718                         context.font.family =
3719                                 known_coded_font_families[where - known_old_font_families];
3720                         output_font_change(os, oldFont, context.font);
3721                         eat_whitespace(p, os, context, false);
3722                 }
3723
3724                 else if ((where = is_known(t.cs(), known_old_font_series)) &&
3725                          context.new_layout_allowed) {
3726                         context.check_layout(os);
3727                         TeXFont const oldFont = context.font;
3728                         context.font.init();
3729                         context.font.size = oldFont.size;
3730                         context.font.series =
3731                                 known_coded_font_series[where - known_old_font_series];
3732                         output_font_change(os, oldFont, context.font);
3733                         eat_whitespace(p, os, context, false);
3734                 }
3735
3736                 else if ((where = is_known(t.cs(), known_old_font_shapes)) &&
3737                          context.new_layout_allowed) {
3738                         context.check_layout(os);
3739                         TeXFont const oldFont = context.font;
3740                         context.font.init();
3741                         context.font.size = oldFont.size;
3742                         context.font.shape =
3743                                 known_coded_font_shapes[where - known_old_font_shapes];
3744                         output_font_change(os, oldFont, context.font);
3745                         eat_whitespace(p, os, context, false);
3746                 }
3747
3748                 else if (t.cs() == "selectlanguage") {
3749                         context.check_layout(os);
3750                         // save the language for the case that a
3751                         // \foreignlanguage is used
3752                         context.font.language = babel2lyx(p.verbatim_item());
3753                         os << "\n\\lang " << context.font.language << "\n";
3754                 }
3755
3756                 else if (t.cs() == "foreignlanguage") {
3757                         string const lang = babel2lyx(p.verbatim_item());
3758                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3759                                               context, "\\lang",
3760                                               context.font.language, lang);
3761                 }
3762
3763                 else if (prefixIs(t.cs(), "text") && preamble.usePolyglossia()
3764                          && is_known(t.cs().substr(4), preamble.polyglossia_languages)) {
3765                         // scheme is \textLANGUAGE{text} where LANGUAGE is in polyglossia_languages[]
3766                         string lang;
3767                         // We have to output the whole command if it has an option
3768                         // because LyX doesn't support this yet, see bug #8214,
3769                         // only if there is a single option specifying a variant, we can handle it.
3770                         if (p.hasOpt()) {
3771                                 string langopts = p.getOpt();
3772                                 // check if the option contains a variant, if yes, extract it
3773                                 string::size_type pos_var = langopts.find("variant");
3774                                 string::size_type i = langopts.find(',');
3775                                 string::size_type k = langopts.find('=', pos_var);
3776                                 if (pos_var != string::npos && i == string::npos) {
3777                                         string variant;
3778                                         variant = langopts.substr(k + 1, langopts.length() - k - 2);
3779                                         lang = preamble.polyglossia2lyx(variant);
3780                                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3781                                                                   context, "\\lang",
3782                                                                   context.font.language, lang);
3783                                 } else
3784                                         output_ert_inset(os, t.asInput() + langopts, context);
3785                         } else {
3786                                 lang = preamble.polyglossia2lyx(t.cs().substr(4, string::npos));
3787                                 parse_text_attributes(p, os, FLAG_ITEM, outer,
3788                                                           context, "\\lang",
3789                                                           context.font.language, lang);
3790                         }
3791                 }
3792
3793                 else if (t.cs() == "inputencoding") {
3794                         // nothing to write here
3795                         string const enc = subst(p.verbatim_item(), "\n", " ");
3796                         p.setEncoding(enc, Encoding::inputenc);
3797                 }
3798
3799                 else if ((where = is_known(t.cs(), known_special_chars))) {
3800                         context.check_layout(os);
3801                         os << known_coded_special_chars[where - known_special_chars];
3802                         skip_spaces_braces(p);
3803                 }
3804
3805                 else if ((t.cs() == "nobreakdash" && p.next_token().asInput() == "-") ||
3806                          (t.cs() == "@" && p.next_token().asInput() == ".")) {
3807                         context.check_layout(os);
3808                         os << "\\SpecialChar \\" << t.cs()
3809                            << p.get_token().asInput() << '\n';
3810                 }
3811
3812                 else if (t.cs() == "textquotedbl") {
3813                         context.check_layout(os);
3814                         os << "\"";
3815                         skip_braces(p);
3816                 }
3817
3818                 else if (t.cs() == "_" || t.cs() == "&" || t.cs() == "#"
3819                             || t.cs() == "$" || t.cs() == "{" || t.cs() == "}"
3820                             || t.cs() == "%" || t.cs() == "-") {
3821                         context.check_layout(os);
3822                         if (t.cs() == "-")
3823                                 os << "\\SpecialChar \\-\n";
3824                         else
3825                                 os << t.cs();
3826                 }
3827
3828                 else if (t.cs() == "char") {
3829                         context.check_layout(os);
3830                         if (p.next_token().character() == '`') {
3831                                 p.get_token();
3832                                 if (p.next_token().cs() == "\"") {
3833                                         p.get_token();
3834                                         os << '"';
3835                                         skip_braces(p);
3836                                 } else {
3837                                         output_ert_inset(os, "\\char`", context);
3838                                 }
3839                         } else {
3840                                 output_ert_inset(os, "\\char", context);
3841                         }
3842                 }
3843
3844                 else if (t.cs() == "verb") {
3845                         context.check_layout(os);
3846                         // set catcodes to verbatim early, just in case.
3847                         p.setCatcodes(VERBATIM_CATCODES);
3848                         string delim = p.get_token().asInput();
3849                         Parser::Arg arg = p.verbatimStuff(delim);
3850                         if (arg.first)
3851                                 output_ert_inset(os, "\\verb" + delim
3852                                                  + arg.second + delim, context);
3853                         else
3854                                 cerr << "invalid \\verb command. Skipping" << endl;
3855                 }
3856
3857                 // Problem: \= creates a tabstop inside the tabbing environment
3858                 // and else an accent. In the latter case we really would want
3859                 // \={o} instead of \= o.
3860                 else if (t.cs() == "=" && (flags & FLAG_TABBING))
3861                         output_ert_inset(os, t.asInput(), context);
3862
3863                 else if (t.cs() == "\\") {
3864                         context.check_layout(os);
3865                         if (p.hasOpt())
3866                                 output_ert_inset(os, "\\\\" + p.getOpt(), context);
3867                         else if (p.next_token().asInput() == "*") {
3868                                 p.get_token();
3869                                 // getOpt() eats the following space if there
3870                                 // is no optional argument, but that is OK
3871                                 // here since it has no effect in the output.
3872                                 output_ert_inset(os, "\\\\*" + p.getOpt(), context);
3873                         }
3874                         else {
3875                                 begin_inset(os, "Newline newline");
3876                                 end_inset(os);
3877                         }
3878                 }
3879
3880                 else if (t.cs() == "newline" ||
3881                          (t.cs() == "linebreak" && !p.hasOpt())) {
3882                         context.check_layout(os);
3883                         begin_inset(os, "Newline ");
3884                         os << t.cs();
3885                         end_inset(os);
3886                         skip_spaces_braces(p);
3887                 }
3888
3889                 else if (t.cs() == "input" || t.cs() == "include"
3890                          || t.cs() == "verbatiminput") {
3891                         string name = t.cs();
3892                         if (t.cs() == "verbatiminput"
3893                             && p.next_token().asInput() == "*")
3894                                 name += p.get_token().asInput();
3895                         context.check_layout(os);
3896                         string filename(normalize_filename(p.getArg('{', '}')));
3897                         string const path = getMasterFilePath(true);
3898                         // We want to preserve relative / absolute filenames,
3899                         // therefore path is only used for testing
3900                         if ((t.cs() == "include" || t.cs() == "input") &&
3901                             !makeAbsPath(filename, path).exists()) {
3902                                 // The file extension is probably missing.
3903                                 // Now try to find it out.
3904                                 string const tex_name =
3905                                         find_file(filename, path,
3906                                                   known_tex_extensions);
3907                                 if (!tex_name.empty())
3908                                         filename = tex_name;
3909                         }
3910                         bool external = false;
3911                         string outname;
3912                         if (makeAbsPath(filename, path).exists()) {
3913                                 string const abstexname =
3914                                         makeAbsPath(filename, path).absFileName();
3915                                 string const absfigname =
3916                                         changeExtension(abstexname, ".fig");
3917                                 fix_child_filename(filename);
3918                                 string const lyxname = changeExtension(filename,
3919                                         roundtripMode() ? ".lyx.lyx" : ".lyx");
3920                                 string const abslyxname = makeAbsPath(
3921                                         lyxname, getParentFilePath(false)).absFileName();
3922                                 bool xfig = false;
3923                                 if (!skipChildren())
3924                                         external = FileName(absfigname).exists();
3925                                 if (t.cs() == "input" && !skipChildren()) {
3926                                         string const ext = getExtension(abstexname);
3927
3928                                         // Combined PS/LaTeX:
3929                                         // x.eps, x.pstex_t (old xfig)
3930                                         // x.pstex, x.pstex_t (new xfig, e.g. 3.2.5)
3931                                         FileName const absepsname(
3932                                                 changeExtension(abstexname, ".eps"));
3933                                         FileName const abspstexname(
3934                                                 changeExtension(abstexname, ".pstex"));
3935                                         bool const xfigeps =
3936                                                 (absepsname.exists() ||
3937                                                  abspstexname.exists()) &&
3938                                                 ext == "pstex_t";
3939
3940                                         // Combined PDF/LaTeX:
3941                                         // x.pdf, x.pdftex_t (old xfig)
3942                                         // x.pdf, x.pdf_t (new xfig, e.g. 3.2.5)
3943                                         FileName const abspdfname(
3944                                                 changeExtension(abstexname, ".pdf"));
3945                                         bool const xfigpdf =
3946                                                 abspdfname.exists() &&
3947                                                 (ext == "pdftex_t" || ext == "pdf_t");
3948                                         if (xfigpdf)
3949                                                 pdflatex = true;
3950
3951                                         // Combined PS/PDF/LaTeX:
3952                                         // x_pspdftex.eps, x_pspdftex.pdf, x.pspdftex
3953                                         string const absbase2(
3954                                                 removeExtension(abstexname) + "_pspdftex");
3955                                         FileName const abseps2name(
3956                                                 addExtension(absbase2, ".eps"));
3957                                         FileName const abspdf2name(
3958                                                 addExtension(absbase2, ".pdf"));
3959                                         bool const xfigboth =
3960                                                 abspdf2name.exists() &&
3961                                                 abseps2name.exists() && ext == "pspdftex";
3962
3963                                         xfig = xfigpdf || xfigeps || xfigboth;
3964                                         external = external && xfig;
3965                                 }
3966                                 if (external) {
3967                                         outname = changeExtension(filename, ".fig");
3968                                         FileName abssrc(changeExtension(abstexname, ".fig"));
3969                                         copy_file(abssrc, outname);
3970                                 } else if (xfig) {
3971                                         // Don't try to convert, the result
3972                                         // would be full of ERT.
3973                                         outname = filename;
3974                                         FileName abssrc(abstexname);
3975                                         copy_file(abssrc, outname);
3976                                 } else if (t.cs() != "verbatiminput" &&
3977                                            !skipChildren() &&
3978                                     tex2lyx(abstexname, FileName(abslyxname),
3979                                             p.getEncoding())) {
3980                                         outname = lyxname;
3981                                         // no need to call copy_file
3982                                         // tex2lyx creates the file
3983                                 } else {
3984                                         outname = filename;
3985                                         FileName abssrc(abstexname);
3986                                         copy_file(abssrc, outname);
3987                                 }
3988                         } else {
3989                                 cerr << "Warning: Could not find included file '"
3990                                      << filename << "'." << endl;
3991                                 outname = filename;
3992                         }
3993                         if (external) {
3994                                 begin_inset(os, "External\n");
3995                                 os << "\ttemplate XFig\n"
3996                                    << "\tfilename " << outname << '\n';
3997                                 registerExternalTemplatePackages("XFig");
3998                         } else {
3999                                 begin_command_inset(os, "include", name);
4000                                 outname = subst(outname, "\"", "\\\"");
4001                                 os << "preview false\n"
4002                                       "filename \"" << outname << "\"\n";
4003                                 if (t.cs() == "verbatiminput")
4004                                         preamble.registerAutomaticallyLoadedPackage("verbatim");
4005                         }
4006                         end_inset(os);
4007                 }
4008
4009                 else if (t.cs() == "bibliographystyle") {
4010                         // store new bibliographystyle
4011                         bibliographystyle = p.verbatim_item();
4012                         // If any other command than \bibliography, \addcontentsline
4013                         // and \nocite{*} follows, we need to output the style
4014                         // (because it might be used by that command).
4015                         // Otherwise, it will automatically be output by LyX.
4016                         p.pushPosition();
4017                         bool output = true;
4018                         for (Token t2 = p.get_token(); p.good(); t2 = p.get_token()) {
4019                                 if (t2.cat() == catBegin)
4020                                         break;
4021                                 if (t2.cat() != catEscape)
4022                                         continue;
4023                                 if (t2.cs() == "nocite") {
4024                                         if (p.getArg('{', '}') == "*")
4025                                                 continue;
4026                                 } else if (t2.cs() == "bibliography")
4027                                         output = false;
4028                                 else if (t2.cs() == "phantomsection") {
4029                                         output = false;
4030                                         continue;
4031                                 }
4032                                 else if (t2.cs() == "addcontentsline") {
4033                                         // get the 3 arguments of \addcontentsline
4034                                         p.getArg('{', '}');
4035                                         p.getArg('{', '}');
4036                                         contentslineContent = p.getArg('{', '}');
4037                                         // if the last argument is not \refname we must output
4038                                         if (contentslineContent == "\\refname")
4039                                                 output = false;
4040                                 }
4041                                 break;
4042                         }
4043                         p.popPosition();
4044                         if (output) {
4045                                 output_ert_inset(os,
4046                                         "\\bibliographystyle{" + bibliographystyle + '}',
4047                                         context);
4048                         }
4049                 }
4050
4051                 else if (t.cs() == "phantomsection") {
4052                         // we only support this if it occurs between
4053                         // \bibliographystyle and \bibliography
4054                         if (bibliographystyle.empty())
4055                                 output_ert_inset(os, "\\phantomsection", context);
4056                 }
4057
4058                 else if (t.cs() == "addcontentsline") {
4059                         context.check_layout(os);
4060                         // get the 3 arguments of \addcontentsline
4061                         string const one = p.getArg('{', '}');
4062                         string const two = p.getArg('{', '}');
4063                         string const three = p.getArg('{', '}');
4064                         // only if it is a \refname, we support if for the bibtex inset
4065                         if (contentslineContent != "\\refname") {
4066                                 output_ert_inset(os,
4067                                         "\\addcontentsline{" + one + "}{" + two + "}{"+ three + '}',
4068                                         context);
4069                         }
4070                 }
4071
4072                 else if (t.cs() == "bibliography") {
4073                         context.check_layout(os);
4074                         string BibOpts;
4075                         begin_command_inset(os, "bibtex", "bibtex");
4076                         if (!btprint.empty()) {
4077                                 os << "btprint " << '"' << "btPrintAll" << '"' << "\n";
4078                                 // clear the string because the next BibTeX inset can be without the
4079                                 // \nocite{*} option
4080                                 btprint.clear();
4081                         }
4082                         os << "bibfiles " << '"' << p.verbatim_item() << '"' << "\n";
4083                         // Do we have addcontentsline?
4084                         if (contentslineContent == "\\refname") {
4085                                 BibOpts = "bibtotoc";
4086                                 // clear string because next BibTeX inset can be without addcontentsline
4087                                 contentslineContent.clear();
4088                         }
4089                         // Do we have a bibliographystyle set?
4090                         if (!bibliographystyle.empty()) {
4091                                 if (BibOpts.empty())
4092                                         BibOpts = bibliographystyle;
4093                                 else
4094                                         BibOpts = BibOpts + ',' + bibliographystyle;
4095                                 // clear it because each bibtex entry has its style
4096                                 // and we need an empty string to handle \phantomsection
4097                                 bibliographystyle.clear();
4098                         }
4099                         os << "options " << '"' << BibOpts << '"' << "\n";
4100                         end_inset(os);
4101                 }
4102
4103                 else if (t.cs() == "parbox") {
4104                         // Test whether this is an outer box of a shaded box
4105                         p.pushPosition();
4106                         // swallow arguments
4107                         while (p.hasOpt()) {
4108                                 p.getArg('[', ']');
4109                                 p.skip_spaces(true);
4110                         }
4111                         p.getArg('{', '}');
4112                         p.skip_spaces(true);
4113                         // eat the '{'
4114                         if (p.next_token().cat() == catBegin)
4115                                 p.get_token();
4116                         p.skip_spaces(true);
4117                         Token to = p.get_token();
4118                         bool shaded = false;
4119                         if (to.asInput() == "\\begin") {
4120                                 p.skip_spaces(true);
4121                                 if (p.getArg('{', '}') == "shaded")
4122                                         shaded = true;
4123                         }
4124                         p.popPosition();
4125                         if (shaded) {
4126                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4127                                                 context, "parbox", "shaded");
4128                         } else
4129                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4130                                           "", "", t.cs());
4131                 }
4132
4133                 else if (t.cs() == "fbox" || t.cs() == "mbox" ||
4134                              t.cs() == "ovalbox" || t.cs() == "Ovalbox" ||
4135                          t.cs() == "shadowbox" || t.cs() == "doublebox")
4136                         parse_outer_box(p, os, FLAG_ITEM, outer, context, t.cs(), "");
4137
4138                 else if (t.cs() == "framebox") {
4139                         if (p.next_token().character() == '(') {
4140                                 //the syntax is: \framebox(x,y)[position]{content}
4141                                 string arg = t.asInput();
4142                                 arg += p.getFullParentheseArg();
4143                                 arg += p.getFullOpt();
4144                                 eat_whitespace(p, os, context, false);
4145                                 output_ert_inset(os, arg + '{', context);
4146                                 parse_text(p, os, FLAG_ITEM, outer, context);
4147                                 output_ert_inset(os, "}", context);
4148                         } else {
4149                                 //the syntax is: \framebox[width][position]{content}
4150                                 string special = p.getFullOpt();
4151                                 special += p.getOpt();
4152                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4153                                                     context, t.cs(), special);
4154                         }
4155                 }
4156
4157                 //\makebox() is part of the picture environment and different from \makebox{}
4158                 //\makebox{} will be parsed by parse_box
4159                 else if (t.cs() == "makebox") {
4160                         if (p.next_token().character() == '(') {
4161                                 //the syntax is: \makebox(x,y)[position]{content}
4162                                 string arg = t.asInput();
4163                                 arg += p.getFullParentheseArg();
4164                                 arg += p.getFullOpt();
4165                                 eat_whitespace(p, os, context, false);
4166                                 output_ert_inset(os, arg + '{', context);
4167                                 parse_text(p, os, FLAG_ITEM, outer, context);
4168                                 output_ert_inset(os, "}", context);
4169                         } else
4170                                 //the syntax is: \makebox[width][position]{content}
4171                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4172                                           "", "", t.cs());
4173                 }
4174
4175                 else if (t.cs() == "smallskip" ||
4176                          t.cs() == "medskip" ||
4177                          t.cs() == "bigskip" ||
4178                          t.cs() == "vfill") {
4179                         context.check_layout(os);
4180                         begin_inset(os, "VSpace ");
4181                         os << t.cs();
4182                         end_inset(os);
4183                         skip_spaces_braces(p);
4184                 }
4185
4186                 else if ((where = is_known(t.cs(), known_spaces))) {
4187                         context.check_layout(os);
4188                         begin_inset(os, "space ");
4189                         os << '\\' << known_coded_spaces[where - known_spaces]
4190                            << '\n';
4191                         end_inset(os);
4192                         // LaTeX swallows whitespace after all spaces except
4193                         // "\\,". We have to do that here, too, because LyX
4194                         // adds "{}" which would make the spaces significant.
4195                         if (t.cs() !=  ",")
4196                                 eat_whitespace(p, os, context, false);
4197                         // LyX adds "{}" after all spaces except "\\ " and
4198                         // "\\,", so we have to remove "{}".
4199                         // "\\,{}" is equivalent to "\\," in LaTeX, so we
4200                         // remove the braces after "\\,", too.
4201                         if (t.cs() != " ")
4202                                 skip_braces(p);
4203                 }
4204
4205                 else if (t.cs() == "newpage" ||
4206                          (t.cs() == "pagebreak" && !p.hasOpt()) ||
4207                          t.cs() == "clearpage" ||
4208                          t.cs() == "cleardoublepage") {
4209                         context.check_layout(os);
4210                         begin_inset(os, "Newpage ");
4211                         os << t.cs();
4212                         end_inset(os);
4213                         skip_spaces_braces(p);
4214                 }
4215
4216                 else if (t.cs() == "DeclareRobustCommand" ||
4217                          t.cs() == "DeclareRobustCommandx" ||
4218                          t.cs() == "newcommand" ||
4219                          t.cs() == "newcommandx" ||
4220                          t.cs() == "providecommand" ||
4221                          t.cs() == "providecommandx" ||
4222                          t.cs() == "renewcommand" ||
4223                          t.cs() == "renewcommandx") {
4224                         // DeclareRobustCommand, DeclareRobustCommandx,
4225                         // providecommand and providecommandx could be handled
4226                         // by parse_command(), but we need to call
4227                         // add_known_command() here.
4228                         string name = t.asInput();
4229                         if (p.next_token().asInput() == "*") {
4230                                 // Starred form. Eat '*'
4231                                 p.get_token();
4232                                 name += '*';
4233                         }
4234                         string const command = p.verbatim_item();
4235                         string const opt1 = p.getFullOpt();
4236                         string const opt2 = p.getFullOpt();
4237                         add_known_command(command, opt1, !opt2.empty());
4238                         string const ert = name + '{' + command + '}' +
4239                                            opt1 + opt2 +
4240                                            '{' + p.verbatim_item() + '}';
4241
4242                         if (t.cs() == "DeclareRobustCommand" ||
4243                             t.cs() == "DeclareRobustCommandx" ||
4244                             t.cs() == "providecommand" ||
4245                             t.cs() == "providecommandx" ||
4246                             name[name.length()-1] == '*')
4247                                 output_ert_inset(os, ert, context);
4248                         else {
4249                                 context.check_layout(os);
4250                                 begin_inset(os, "FormulaMacro");
4251                                 os << "\n" << ert;
4252                                 end_inset(os);
4253                         }
4254                 }
4255
4256                 else if (t.cs() == "let" && p.next_token().asInput() != "*") {
4257                         // let could be handled by parse_command(),
4258                         // but we need to call add_known_command() here.
4259                         string ert = t.asInput();
4260                         string name;
4261                         p.skip_spaces();
4262                         if (p.next_token().cat() == catBegin) {
4263                                 name = p.verbatim_item();
4264                                 ert += '{' + name + '}';
4265                         } else {
4266                                 name = p.verbatim_item();
4267                                 ert += name;
4268                         }
4269                         string command;
4270                         p.skip_spaces();
4271                         if (p.next_token().cat() == catBegin) {
4272                                 command = p.verbatim_item();
4273                                 ert += '{' + command + '}';
4274                         } else {
4275                                 command = p.verbatim_item();
4276                                 ert += command;
4277                         }
4278                         // If command is known, make name known too, to parse
4279                         // its arguments correctly. For this reason we also
4280                         // have commands in syntax.default that are hardcoded.
4281                         CommandMap::iterator it = known_commands.find(command);
4282                         if (it != known_commands.end())
4283                                 known_commands[t.asInput()] = it->second;
4284                         output_ert_inset(os, ert, context);
4285                 }
4286
4287                 else if (t.cs() == "hspace" || t.cs() == "vspace") {
4288                         if (starred)
4289                                 p.get_token();
4290                         string name = t.asInput();
4291                         string const length = p.verbatim_item();
4292                         string unit;
4293                         string valstring;
4294                         bool valid = splitLatexLength(length, valstring, unit);
4295                         bool known_hspace = false;
4296                         bool known_vspace = false;
4297                         bool known_unit = false;
4298                         double value;
4299                         if (valid) {
4300                                 istringstream iss(valstring);
4301                                 iss >> value;
4302                                 if (value == 1.0) {
4303                                         if (t.cs()[0] == 'h') {
4304                                                 if (unit == "\\fill") {
4305                                                         if (!starred) {
4306                                                                 unit = "";
4307                                                                 name = "\\hfill";
4308                                                         }
4309                                                         known_hspace = true;
4310                                                 }
4311                                         } else {
4312                                                 if (unit == "\\smallskipamount") {
4313                                                         unit = "smallskip";
4314                                                         known_vspace = true;
4315                                                 } else if (unit == "\\medskipamount") {
4316                                                         unit = "medskip";
4317                                                         known_vspace = true;
4318                                                 } else if (unit == "\\bigskipamount") {
4319                                                         unit = "bigskip";
4320                                                         known_vspace = true;
4321                                                 } else if (unit == "\\fill") {
4322                                                         unit = "vfill";
4323                                                         known_vspace = true;
4324                                                 }
4325                                         }
4326                                 }
4327                                 if (!known_hspace && !known_vspace) {
4328                                         switch (unitFromString(unit)) {
4329                                         case Length::SP:
4330                                         case Length::PT:
4331                                         case Length::BP:
4332                                         case Length::DD:
4333                                         case Length::MM:
4334                                         case Length::PC:
4335                                         case Length::CC:
4336                                         case Length::CM:
4337                                         case Length::IN:
4338                                         case Length::EX:
4339                                         case Length::EM:
4340                                         case Length::MU:
4341                                                 known_unit = true;
4342                                                 break;
4343                                         default: {
4344                                                 //unitFromString(unit) fails for relative units like Length::PCW
4345                                                 // therefore handle them separately
4346                                                 if (unit == "\\paperwidth" || unit == "\\columnwidth"
4347                                                         || unit == "\\textwidth" || unit == "\\linewidth"
4348                                                         || unit == "\\textheight" || unit == "\\paperheight")
4349                                                         known_unit = true;
4350                                                 break;
4351                                                          }
4352                                         }
4353                                 }
4354                         }
4355
4356                         // check for glue lengths
4357                         bool is_gluelength = false;
4358                         string gluelength = length;
4359                         string::size_type i = length.find(" minus");
4360                         if (i == string::npos) {
4361                                 i = length.find(" plus");
4362                                 if (i != string::npos)
4363                                         is_gluelength = true;
4364                         } else
4365                                 is_gluelength = true;
4366                         // if yes transform "9xx minus 8yy plus 7zz"
4367                         // to "9xx-8yy+7zz"
4368                         if (is_gluelength) {
4369                                 i = gluelength.find(" minus");
4370                                 if (i != string::npos)
4371                                         gluelength.replace(i, 7, "-");
4372                                 i = gluelength.find(" plus");
4373                                 if (i != string::npos)
4374                                         gluelength.replace(i, 6, "+");
4375                         }
4376
4377                         if (t.cs()[0] == 'h' && (known_unit || known_hspace || is_gluelength)) {
4378                                 // Literal horizontal length or known variable
4379                                 context.check_layout(os);
4380                                 begin_inset(os, "space ");
4381                                 os << name;
4382                                 if (starred)
4383                                         os << '*';
4384                                 os << '{';
4385                                 if (known_hspace)
4386                                         os << unit;
4387                                 os << "}";
4388                                 if (known_unit && !known_hspace)
4389                                         os << "\n\\length " << translate_len(length);
4390                                 if (is_gluelength)
4391                                         os << "\n\\length " << gluelength;
4392                                 end_inset(os);
4393                         } else if (known_unit || known_vspace || is_gluelength) {
4394                                 // Literal vertical length or known variable
4395                                 context.check_layout(os);
4396                                 begin_inset(os, "VSpace ");
4397                                 if (known_vspace)
4398                                         os << unit;
4399                                 if (known_unit && !known_vspace)
4400                                         os << translate_len(length);
4401                                 if (is_gluelength)
4402                                         os << gluelength;
4403                                 if (starred)
4404                                         os << '*';
4405                                 end_inset(os);
4406                         } else {
4407                                 // LyX can't handle other length variables in Inset VSpace/space
4408                                 if (starred)
4409                                         name += '*';
4410                                 if (valid) {
4411                                         if (value == 1.0)
4412                                                 output_ert_inset(os, name + '{' + unit + '}', context);
4413                                         else if (value == -1.0)
4414                                                 output_ert_inset(os, name + "{-" + unit + '}', context);
4415                                         else
4416                                                 output_ert_inset(os, name + '{' + valstring + unit + '}', context);
4417                                 } else
4418                                         output_ert_inset(os, name + '{' + length + '}', context);
4419                         }
4420                 }
4421
4422                 // The single '=' is meant here.
4423                 else if ((newinsetlayout = findInsetLayout(context.textclass, starredname, true))) {
4424                         if (starred)
4425                                 p.get_token();
4426                         p.skip_spaces();
4427                         context.check_layout(os);
4428                         docstring const name = newinsetlayout->name();
4429                         bool const caption = name.find(from_ascii("Caption:")) == 0;
4430                         if (caption) {
4431                                 begin_inset(os, "Caption ");
4432                                 os << to_utf8(name.substr(8)) << '\n';
4433                         } else {
4434                                 begin_inset(os, "Flex ");
4435                                 os << to_utf8(name) << '\n'
4436                                    << "status collapsed\n";
4437                         }
4438                         if (newinsetlayout->isPassThru()) {
4439                                 // set catcodes to verbatim early, just in case.
4440                                 p.setCatcodes(VERBATIM_CATCODES);
4441                                 string delim = p.get_token().asInput();
4442                                 if (delim != "{")
4443                                         cerr << "Warning: bad delimiter for command " << t.asInput() << endl;
4444                                 //FIXME: handle error condition
4445                                 string const arg = p.verbatimStuff("}").second;
4446                                 Context newcontext(true, context.textclass);
4447                                 if (newinsetlayout->forcePlainLayout())
4448                                         newcontext.layout = &context.textclass.plainLayout();
4449                                 output_ert(os, arg, newcontext);
4450                         } else
4451                                 parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
4452                         if (caption)
4453                                 p.skip_spaces();
4454                         end_inset(os);
4455                 }
4456
4457                 else if (t.cs() == "includepdf") {
4458                         p.skip_spaces();
4459                         string const arg = p.getArg('[', ']');
4460                         map<string, string> opts;
4461                         vector<string> keys;
4462                         split_map(arg, opts, keys);
4463                         string name = normalize_filename(p.verbatim_item());
4464                         string const path = getMasterFilePath(true);
4465                         // We want to preserve relative / absolute filenames,
4466                         // therefore path is only used for testing
4467                         if (!makeAbsPath(name, path).exists()) {
4468                                 // The file extension is probably missing.
4469                                 // Now try to find it out.
4470                                 char const * const pdfpages_format[] = {"pdf", 0};
4471                                 string const pdftex_name =
4472                                         find_file(name, path, pdfpages_format);
4473                                 if (!pdftex_name.empty()) {
4474                                         name = pdftex_name;
4475                                         pdflatex = true;
4476                                 }
4477                         }
4478                         FileName const absname = makeAbsPath(name, path);
4479                         if (absname.exists())
4480                         {
4481                                 fix_child_filename(name);
4482                                 copy_file(absname, name);
4483                         } else
4484                                 cerr << "Warning: Could not find file '"
4485                                      << name << "'." << endl;
4486                         // write output
4487                         context.check_layout(os);
4488                         begin_inset(os, "External\n\ttemplate ");
4489                         os << "PDFPages\n\tfilename "
4490                            << name << "\n";
4491                         // parse the options
4492                         if (opts.find("pages") != opts.end())
4493                                 os << "\textra LaTeX \"pages="
4494                                    << opts["pages"] << "\"\n";
4495                         if (opts.find("angle") != opts.end())
4496                                 os << "\trotateAngle "
4497                                    << opts["angle"] << '\n';
4498                         if (opts.find("origin") != opts.end()) {
4499                                 ostringstream ss;
4500                                 string const opt = opts["origin"];
4501                                 if (opt == "tl") ss << "topleft";
4502                                 if (opt == "bl") ss << "bottomleft";
4503                                 if (opt == "Bl") ss << "baselineleft";
4504                                 if (opt == "c") ss << "center";
4505                                 if (opt == "tc") ss << "topcenter";
4506                                 if (opt == "bc") ss << "bottomcenter";
4507                                 if (opt == "Bc") ss << "baselinecenter";
4508                                 if (opt == "tr") ss << "topright";
4509                                 if (opt == "br") ss << "bottomright";
4510                                 if (opt == "Br") ss << "baselineright";
4511                                 if (!ss.str().empty())
4512                                         os << "\trotateOrigin " << ss.str() << '\n';
4513                                 else
4514                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
4515                         }
4516                         if (opts.find("width") != opts.end())
4517                                 os << "\twidth "
4518                                    << translate_len(opts["width"]) << '\n';
4519                         if (opts.find("height") != opts.end())
4520                                 os << "\theight "
4521                                    << translate_len(opts["height"]) << '\n';
4522                         if (opts.find("keepaspectratio") != opts.end())
4523                                 os << "\tkeepAspectRatio\n";
4524                         end_inset(os);
4525                         context.check_layout(os);
4526                         registerExternalTemplatePackages("PDFPages");
4527                 }
4528
4529                 else if (t.cs() == "loadgame") {
4530                         p.skip_spaces();
4531                         string name = normalize_filename(p.verbatim_item());
4532                         string const path = getMasterFilePath(true);
4533                         // We want to preserve relative / absolute filenames,
4534                         // therefore path is only used for testing
4535                         if (!makeAbsPath(name, path).exists()) {
4536                                 // The file extension is probably missing.
4537                                 // Now try to find it out.
4538                                 char const * const lyxskak_format[] = {"fen", 0};
4539                                 string const lyxskak_name =
4540                                         find_file(name, path, lyxskak_format);
4541                                 if (!lyxskak_name.empty())
4542                                         name = lyxskak_name;
4543                         }
4544                         FileName const absname = makeAbsPath(name, path);
4545                         if (absname.exists())
4546                         {
4547                                 fix_child_filename(name);
4548                                 copy_file(absname, name);
4549                         } else
4550                                 cerr << "Warning: Could not find file '"
4551                                      << name << "'." << endl;
4552                         context.check_layout(os);
4553                         begin_inset(os, "External\n\ttemplate ");
4554                         os << "ChessDiagram\n\tfilename "
4555                            << name << "\n";
4556                         end_inset(os);
4557                         context.check_layout(os);
4558                         // after a \loadgame follows a \showboard
4559                         if (p.get_token().asInput() == "showboard")
4560                                 p.get_token();
4561                         registerExternalTemplatePackages("ChessDiagram");
4562                 }
4563
4564                 else {
4565                         // try to see whether the string is in unicodesymbols
4566                         // Only use text mode commands, since we are in text mode here,
4567                         // and math commands may be invalid (bug 6797)
4568                         string name = t.asInput();
4569                         // handle the dingbats, cyrillic and greek
4570                         if (name == "\\ding" || name == "\\textcyr" ||
4571                             (name == "\\textgreek" && !preamble.usePolyglossia()))
4572                                 name = name + '{' + p.getArg('{', '}') + '}';
4573                         // handle the ifsym characters
4574                         else if (name == "\\textifsymbol") {
4575                                 string const optif = p.getFullOpt();
4576                                 string const argif = p.getArg('{', '}');
4577                                 name = name + optif + '{' + argif + '}';
4578                         }
4579                         // handle the \ascii characters
4580                         // the case of \ascii within braces, as LyX outputs it, is already
4581                         // handled for t.cat() == catBegin
4582                         else if (name == "\\ascii") {
4583                                 // the code is "\asci\xxx"
4584                                 name = "{" + name + p.get_token().asInput() + "}";
4585                                 skip_braces(p);
4586                         }
4587                         // handle some TIPA special characters
4588                         else if (preamble.isPackageUsed("tipa")) {
4589                                 if (name == "\\textglobfall") {
4590                                         name = "End";
4591                                         skip_braces(p);
4592                                 } else if (name == "\\s") {
4593                                         // fromLaTeXCommand() does not yet
4594                                         // recognize tipa short cuts
4595                                         name = "\\textsyllabic";
4596                                 } else if (name == "\\=" &&
4597                                            p.next_token().asInput() == "*") {
4598                                         // fromLaTeXCommand() does not yet
4599                                         // recognize tipa short cuts
4600                                         p.get_token();
4601                                         name = "\\b";
4602                                 } else if (name == "\\textdoublevertline") {
4603                                         // FIXME: This is not correct,
4604                                         // \textvertline is higher than \textbardbl
4605                                         name = "\\textbardbl";
4606                                         skip_braces(p);
4607                                 } else if (name == "\\!" ) {
4608                                         if (p.next_token().asInput() == "b") {
4609                                                 p.get_token();  // eat 'b'
4610                                                 name = "\\texthtb";
4611                                                 skip_braces(p);
4612                                         } else if (p.next_token().asInput() == "d") {
4613                                                 p.get_token();
4614                                                 name = "\\texthtd";
4615                                                 skip_braces(p);
4616                                         } else if (p.next_token().asInput() == "g") {
4617                                                 p.get_token();
4618                                                 name = "\\texthtg";
4619                                                 skip_braces(p);
4620                                         } else if (p.next_token().asInput() == "G") {
4621                                                 p.get_token();
4622                                                 name = "\\texthtscg";
4623                                                 skip_braces(p);
4624                                         } else if (p.next_token().asInput() == "j") {
4625                                                 p.get_token();
4626                                                 name = "\\texthtbardotlessj";
4627                                                 skip_braces(p);
4628                                         } else if (p.next_token().asInput() == "o") {
4629                                                 p.get_token();
4630                                                 name = "\\textbullseye";
4631                                                 skip_braces(p);
4632                                         }
4633                                 } else if (name == "\\*" ) {
4634                                         if (p.next_token().asInput() == "k") {
4635                                                 p.get_token();
4636                                                 name = "\\textturnk";
4637                                                 skip_braces(p);
4638                                         } else if (p.next_token().asInput() == "r") {
4639                                                 p.get_token();  // eat 'b'
4640                                                 name = "\\textturnr";
4641                                                 skip_braces(p);
4642                                         } else if (p.next_token().asInput() == "t") {
4643                                                 p.get_token();
4644                                                 name = "\\textturnt";
4645                                                 skip_braces(p);
4646                                         } else if (p.next_token().asInput() == "w") {
4647                                                 p.get_token();
4648                                                 name = "\\textturnw";
4649                                                 skip_braces(p);
4650                                         }
4651                                 }
4652                         }
4653                         if ((name.size() == 2 &&
4654                              contains("\"'.=^`bcdHkrtuv~", name[1]) &&
4655                              p.next_token().asInput() != "*") ||
4656                             is_known(name.substr(1), known_tipa_marks)) {
4657                                 // name is a command that corresponds to a
4658                                 // combining character in unicodesymbols.
4659                                 // Append the argument, fromLaTeXCommand()
4660                                 // will either convert it to a single
4661                                 // character or a combining sequence.
4662                                 name += '{' + p.verbatim_item() + '}';
4663                         }
4664                         // now get the character from unicodesymbols
4665                         bool termination;
4666                         docstring rem;
4667                         set<string> req;
4668                         docstring s = encodings.fromLaTeXCommand(from_utf8(name),
4669                                         Encodings::TEXT_CMD, termination, rem, &req);
4670                         if (!s.empty()) {
4671                                 context.check_layout(os);
4672                                 os << to_utf8(s);
4673                                 if (!rem.empty())
4674                                         output_ert_inset(os, to_utf8(rem), context);
4675                                 if (termination)
4676                                         skip_spaces_braces(p);
4677                                 for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
4678                                         preamble.registerAutomaticallyLoadedPackage(*it);
4679                         }
4680                         //cerr << "#: " << t << " mode: " << mode << endl;
4681                         // heuristic: read up to next non-nested space
4682                         /*
4683                         string s = t.asInput();
4684                         string z = p.verbatim_item();
4685                         while (p.good() && z != " " && !z.empty()) {
4686                                 //cerr << "read: " << z << endl;
4687                                 s += z;
4688                                 z = p.verbatim_item();
4689                         }
4690                         cerr << "found ERT: " << s << endl;
4691                         output_ert_inset(os, s + ' ', context);
4692                         */
4693                         else {
4694                                 if (t.asInput() == name &&
4695                                     p.next_token().asInput() == "*") {
4696                                         // Starred commands like \vspace*{}
4697                                         p.get_token();  // Eat '*'
4698                                         name += '*';
4699                                 }
4700                                 if (!parse_command(name, p, os, outer, context))
4701                                         output_ert_inset(os, name, context);
4702                         }
4703                 }
4704
4705                 if (flags & FLAG_LEAVE) {
4706                         flags &= ~FLAG_LEAVE;
4707                         break;
4708                 }
4709         }
4710 }
4711
4712
4713 string guessLanguage(Parser & p, string const & lang)
4714 {
4715         typedef std::map<std::string, size_t> LangMap;
4716         // map from language names to number of characters
4717         LangMap used;
4718         used[lang] = 0;
4719         for (char const * const * i = supported_CJK_languages; *i; i++)
4720                 used[string(*i)] = 0;
4721
4722         while (p.good()) {
4723                 Token const t = p.get_token();
4724                 // comments are not counted for any language
4725                 if (t.cat() == catComment)
4726                         continue;
4727                 // commands are not counted as well, but we need to detect
4728                 // \begin{CJK} and switch encoding if needed
4729                 if (t.cat() == catEscape) {
4730                         if (t.cs() == "inputencoding") {
4731                                 string const enc = subst(p.verbatim_item(), "\n", " ");
4732                                 p.setEncoding(enc, Encoding::inputenc);
4733                                 continue;
4734                         }
4735                         if (t.cs() != "begin")
4736                                 continue;
4737                 } else {
4738                         // Non-CJK content is counted for lang.
4739                         // We do not care about the real language here:
4740                         // If we have more non-CJK contents than CJK contents,
4741                         // we simply use the language that was specified as
4742                         // babel main language.
4743                         used[lang] += t.asInput().length();
4744                         continue;
4745                 }
4746                 // Now we are starting an environment
4747                 p.pushPosition();
4748                 string const name = p.getArg('{', '}');
4749                 if (name != "CJK") {
4750                         p.popPosition();
4751                         continue;
4752                 }
4753                 // It is a CJK environment
4754                 p.popPosition();
4755                 /* name = */ p.getArg('{', '}');
4756                 string const encoding = p.getArg('{', '}');
4757                 /* mapping = */ p.getArg('{', '}');
4758                 string const encoding_old = p.getEncoding();
4759                 char const * const * const where =
4760                         is_known(encoding, supported_CJK_encodings);
4761                 if (where)
4762                         p.setEncoding(encoding, Encoding::CJK);
4763                 else
4764                         p.setEncoding("UTF-8");
4765                 string const text = p.ertEnvironment("CJK");
4766                 p.setEncoding(encoding_old);
4767                 p.skip_spaces();
4768                 if (!where) {
4769                         // ignore contents in unknown CJK encoding
4770                         continue;
4771                 }
4772                 // the language of the text
4773                 string const cjk =
4774                         supported_CJK_languages[where - supported_CJK_encodings];
4775                 used[cjk] += text.length();
4776         }
4777         LangMap::const_iterator use = used.begin();
4778         for (LangMap::const_iterator it = used.begin(); it != used.end(); ++it) {
4779                 if (it->second > use->second)
4780                         use = it;
4781         }
4782         return use->first;
4783 }
4784
4785 // }])
4786
4787
4788 } // namespace lyx