]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/preamble.cpp
BufferParams.cpp: make Lithuanian documents compilable, fixes http://bugzilla.lyx...
[lyx.git] / src / tex2lyx / preamble.cpp
1 /**
2  * \file preamble.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 Uwe Stöhr
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 // {[(
13
14 #include <config.h>
15
16 #include "tex2lyx.h"
17
18 #include "LayoutFile.h"
19 #include "Layout.h"
20 #include "Lexer.h"
21 #include "TextClass.h"
22
23 #include "support/convert.h"
24 #include "support/FileName.h"
25 #include "support/filetools.h"
26 #include "support/lstrings.h"
27
28 #include <boost/regex.hpp>
29
30 #include <algorithm>
31 #include <iostream>
32 #include <sstream>
33 #include <string>
34 #include <vector>
35 #include <map>
36
37 using namespace std;
38 using namespace lyx::support;
39 using boost::regex;
40 using boost::smatch;
41
42 namespace lyx {
43
44 // special columntypes
45 extern map<char, int> special_columns;
46
47 map<string, vector<string> > used_packages;
48
49 // needed to handle encodings with babel
50 bool one_language = true;
51
52 // to avoid that the babel options overwrite the documentclass options
53 bool documentclass_language;
54
55 namespace {
56
57 const char * const known_languages[] = { "afrikaans", "american", "arabic",
58 "austrian", "bahasa", "basque", "belarusian", "brazil", "breton", "british",
59 "bulgarian", "canadian", "canadien", "catalan", "croatian", "czech", "danish",
60 "dutch", "english", "esperanto", "estonian", "finnish", "francais", "french",
61 "frenchb", "frenchle", "frenchpro", "galician", "german", "germanb", "greek",
62 "hebrew", "icelandic", "irish", "italian", "lsorbian", "magyar", "naustrian",
63 "ngerman", "ngermanb", "norsk", "nynorsk", "polish", "portuges", "romanian",
64 "russian", "russianb", "scottish", "serbian", "slovak", "slovene", "spanish",
65 "swedish", "thai", "turkish", "ukraineb", "ukrainian", "usorbian", "welsh", 0};
66
67 //note this when updating to lyxformat 305:
68 //bahasai, indonesian, and indon = equal to bahasa
69 //malay, and meyalu = equal to bahasam
70
71 const char * const known_french_languages[] = {"french", "frenchb", "francais",
72                                                 "frenchle", "frenchpro", 0};
73 const char * const known_german_languages[] = {"german", "germanb", 0};
74 const char * const known_ngerman_languages[] = {"ngerman", "ngermanb", 0};
75 const char * const known_russian_languages[] = {"russian", "russianb", 0};
76 const char * const known_ukrainian_languages[] = {"ukrainian", "ukraineb", 0};
77
78 char const * const known_fontsizes[] = { "10pt", "11pt", "12pt", 0 };
79
80 const char * const known_roman_fonts[] = { "ae", "bookman", "charter",
81 "cmr", "fourier", "lmodern", "mathpazo", "mathptmx", "newcent", 0};
82
83 const char * const known_sans_fonts[] = { "avant", "berasans", "cmbr", "cmss",
84 "helvet", "lmss", 0};
85
86 const char * const known_typewriter_fonts[] = { "beramono", "cmtl", "cmtt",
87 "courier", "lmtt", "luximono", "fourier", "lmodern", "mathpazo", "mathptmx",
88 "newcent", 0};
89
90 const char * const known_paper_sizes[] = { "a3paper", "b3paper", "a4paper",
91 "b4paper", "a5paper", "b5paper", "executivepaper", "legalpaper",
92 "letterpaper", 0};
93
94 const char * const known_class_paper_sizes[] = { "a4paper", "a5paper",
95 "executivepaper", "legalpaper", "letterpaper", 0};
96
97 const char * const known_paper_margins[] = { "lmargin", "tmargin", "rmargin", 
98 "bmargin", "headheight", "headsep", "footskip", "columnsep", 0};
99
100 const char * const known_coded_paper_margins[] = { "leftmargin", "topmargin",
101 "rightmargin", "bottommargin", "headheight", "headsep", "footskip",
102 "columnsep", 0};
103
104 // default settings
105 ostringstream h_preamble;
106 string h_textclass               = "article";
107 string h_options                 = string();
108 string h_language                = "english";
109 string h_inputencoding           = "auto";
110 string h_font_roman              = "default";
111 string h_font_sans               = "default";
112 string h_font_typewriter         = "default";
113 string h_font_default_family     = "default";
114 string h_font_sc                 = "false";
115 string h_font_osf                = "false";
116 string h_font_sf_scale           = "100";
117 string h_font_tt_scale           = "100";
118 string h_graphics                = "default";
119 string h_paperfontsize           = "default";
120 string h_spacing                 = "single";
121 string h_papersize               = "default";
122 string h_use_geometry            = "false";
123 string h_use_amsmath             = "0";
124 string h_cite_engine             = "basic";
125 string h_use_bibtopic            = "false";
126 string h_paperorientation        = "portrait";
127 string h_secnumdepth             = "3";
128 string h_tocdepth                = "3";
129 string h_paragraph_separation    = "indent";
130 string h_defskip                 = "medskip";
131 string h_quotes_language         = "english";
132 string h_papercolumns            = "1";
133 string h_papersides              = string();
134 string h_paperpagestyle          = "default";
135 string h_tracking_changes        = "false";
136 string h_output_changes          = "false";
137 string h_margins                 = "";
138
139
140 void handle_opt(vector<string> & opts, char const * const * what, string & target)
141 {
142         if (opts.empty())
143                 return;
144
145         // the last language option is the document language (for babel and LyX)
146         // the last size option is the document font size
147         vector<string>::iterator it;
148         vector<string>::iterator position = opts.begin();
149         for (; *what; ++what) {
150                 it = find(opts.begin(), opts.end(), *what);
151                 if (it != opts.end()) {
152                         documentclass_language = true;
153                         if (it >= position) {
154                                 target = *what;
155                                 position = it;
156                         }
157                 }
158         }
159 }
160
161
162 void delete_opt(vector<string> & opts, char const * const * what)
163 {
164         if (opts.empty())
165                 return;
166
167         // remove found options from the list
168         // do this after handle_opt to avoid potential memory leaks and to be able
169         // to find in every case the last language option
170         vector<string>::iterator it;
171         for (; *what; ++what) {
172                 it = find(opts.begin(), opts.end(), *what);
173                 if (it != opts.end())
174                         opts.erase(it);
175         }
176 }
177
178
179 /*!
180  * Split a package options string (keyval format) into a vector.
181  * Example input:
182  *   authorformat=smallcaps,
183  *   commabeforerest,
184  *   titleformat=colonsep,
185  *   bibformat={tabular,ibidem,numbered}
186  */
187 vector<string> split_options(string const & input)
188 {
189         vector<string> options;
190         string option;
191         Parser p(input);
192         while (p.good()) {
193                 Token const & t = p.get_token();
194                 if (t.asInput() == ",") {
195                         options.push_back(trim(option));
196                         option.erase();
197                 } else if (t.asInput() == "=") {
198                         option += '=';
199                         p.skip_spaces(true);
200                         if (p.next_token().asInput() == "{")
201                                 option += '{' + p.getArg('{', '}') + '}';
202                 } else if (t.cat() != catSpace)
203                         option += t.asInput();
204         }
205
206         if (!option.empty())
207                 options.push_back(trim(option));
208
209         return options;
210 }
211
212
213 /*!
214  * Add package \p name with options \p options to used_packages.
215  * Remove options from \p options that we don't want to output.
216  */
217 void add_package(string const & name, vector<string> & options)
218 {
219         // every package inherits the global options
220         if (used_packages.find(name) == used_packages.end())
221                 used_packages[name] = split_options(h_options);
222
223         vector<string> & v = used_packages[name];
224         v.insert(v.end(), options.begin(), options.end());
225         if (name == "jurabib") {
226                 // Don't output the order argument (see the cite command
227                 // handling code in text.cpp).
228                 vector<string>::iterator end =
229                         remove(options.begin(), options.end(), "natbiborder");
230                 end = remove(options.begin(), end, "jurabiborder");
231                 options.erase(end, options.end());
232         }
233 }
234
235
236 // Given is a string like "scaled=0.9", return 0.9 * 100
237 string const scale_as_percentage(string const & scale)
238 {
239         string::size_type pos = scale.find('=');
240         if (pos != string::npos) {
241                 string value = scale.substr(pos + 1);
242                 if (isStrDbl(value))
243                         return convert<string>(100 * convert<double>(value));
244         }
245         // If the input string didn't match our expectations.
246         // return the default value "100"
247         return "100";
248 }
249
250
251 void handle_package(string const & name, string const & opts,
252                     bool in_lyx_preamble)
253 {
254         vector<string> options = split_options(opts);
255         add_package(name, options);
256         string scale;
257
258         // roman fonts
259         if (is_known(name, known_roman_fonts))
260                 h_font_roman = name;
261
262         if (name == "fourier") {
263                 h_font_roman = "utopia";
264                 // when font uses real small capitals
265                 if (opts == "expert")
266                         h_font_sc = "true";
267         }
268         if (name == "mathpazo")
269                 h_font_roman = "palatino";
270
271         if (name == "mathptmx")
272                 h_font_roman = "times";
273
274         // sansserif fonts
275         if (is_known(name, known_sans_fonts)) {
276                 h_font_sans = name;
277                 if (!opts.empty()) {
278                         scale = opts;
279                         h_font_sf_scale = scale_as_percentage(scale);
280                 }
281         }
282         // typewriter fonts
283         if (is_known(name, known_typewriter_fonts)) {
284                 h_font_typewriter = name;
285                 if (!opts.empty()) {
286                         scale = opts;
287                         h_font_tt_scale = scale_as_percentage(scale);
288                 }
289         }
290         // font uses old-style figure
291         if (name == "eco")
292                 h_font_osf = "true";
293
294         else if (name == "amsmath" || name == "amssymb")
295                 h_use_amsmath = "1";
296
297         else if (name == "babel" && !opts.empty()) {
298                 // check if more than one option was used - used later for inputenc
299                 // in case inputenc is parsed before babel, set the encoding to auto
300                 if (options.begin() != options.end() - 1) {
301                         one_language = false;
302                         h_inputencoding = "auto";
303                 }
304                 // only set the document language when there was not already one set
305                 // via the documentclass options
306                 // babel takes the the last language given in the documentclass options
307                 // as document language. If there is no such language option, the last
308                 // option of its \usepackage call is used.
309                 if (documentclass_language == false) {
310                         handle_opt(options, known_languages, h_language);
311                         delete_opt(options, known_languages);
312                         if (is_known(h_language, known_french_languages))
313                                 h_language = "french";
314                         else if (is_known(h_language, known_german_languages))
315                                 h_language = "german";
316                         else if (is_known(h_language, known_ngerman_languages))
317                                 h_language = "ngerman";
318                         else if (is_known(h_language, known_russian_languages))
319                                 h_language = "russian";
320                         else if (is_known(h_language, known_ukrainian_languages))
321                                 h_language = "ukrainian";
322                         h_quotes_language = h_language;
323                 }
324         }
325         else if (name == "fontenc")
326                 ; // ignore this
327
328         else if (name == "inputenc") {
329                 // only set when there is not more than one inputenc option
330                 // therefore check for the "," character
331                 // also only set when there is not more then one babel language option
332                 if (opts.find(",") == string::npos && one_language == true)
333                         if (opts == "ascii")
334                                 //change ascii to auto to be in the unicode range, see
335                                 //http://bugzilla.lyx.org/show_bug.cgi?id=4719
336                                 h_inputencoding = "auto";
337                         else
338                                 h_inputencoding = opts;
339                 options.clear();
340         }
341         else if (name == "makeidx")
342                 ; // ignore this
343
344         else if (name == "verbatim")
345                 ; // ignore this
346
347         else if (name == "color")
348                 // with the following command this package is only loaded when needed for
349                 // undefined colors, since we only support the predefined colors
350                 h_preamble << "\\@ifundefined{definecolor}\n {\\usepackage{color}}{}\n";
351
352         else if (name == "graphicx")
353                 ; // ignore this
354
355         else if (name == "setspace")
356                 ; // ignore this
357
358         else if (name == "geometry")
359                 ; // Ignore this, the geometry settings are made by the \geometry
360                   // command. This command is handled below.
361
362         else if (is_known(name, known_languages)) {
363                 if (is_known(name, known_french_languages))
364                         h_language = "french";
365                 else if (is_known(name, known_german_languages))
366                         h_language = "german";
367                 else if (is_known(name, known_ngerman_languages))
368                         h_language = "ngerman";
369                 else if (is_known(name, known_russian_languages))
370                         h_language = "russian";
371                 else if (is_known(name, known_ukrainian_languages))
372                         h_language = "ukrainian";
373                 else
374                         h_language = name;
375                 h_quotes_language = h_language;
376         }
377         else if (name == "natbib") {
378                 h_cite_engine = "natbib_authoryear";
379                 vector<string>::iterator it =
380                         find(options.begin(), options.end(), "authoryear");
381                 if (it != options.end())
382                         options.erase(it);
383                 else {
384                         it = find(options.begin(), options.end(), "numbers");
385                         if (it != options.end()) {
386                                 h_cite_engine = "natbib_numerical";
387                                 options.erase(it);
388                         }
389                 }
390         }
391         else if (name == "jurabib")
392                 h_cite_engine = "jurabib";
393         else if (!in_lyx_preamble) {
394                 if (options.empty())
395                         h_preamble << "\\usepackage{" << name << "}\n";
396                 else {
397                         h_preamble << "\\usepackage[" << opts << "]{" 
398                                    << name << "}\n";
399                         options.clear();
400                 }
401         }
402
403         // We need to do something with the options...
404         if (!options.empty())
405                 cerr << "Ignoring options '" << join(options, ",")
406                      << "' of package " << name << '.' << endl;
407 }
408
409
410
411 void end_preamble(ostream & os, TextClass const & /*textclass*/)
412 {
413         os << "#LyX file created by tex2lyx " << PACKAGE_VERSION << "\n"
414            << "\\lyxformat 247\n"
415            << "\\begin_document\n"
416            << "\\begin_header\n"
417            << "\\textclass " << h_textclass << "\n";
418         if (!h_preamble.str().empty())
419                 os << "\\begin_preamble\n" << h_preamble.str() << "\n\\end_preamble\n";
420         if (!h_options.empty())
421                 os << "\\options " << h_options << "\n";
422         os << "\\language " << h_language << "\n"
423            << "\\inputencoding " << h_inputencoding << "\n"
424            << "\\font_roman " << h_font_roman << "\n"
425            << "\\font_sans " << h_font_sans << "\n"
426            << "\\font_typewriter " << h_font_typewriter << "\n"
427            << "\\font_default_family " << h_font_default_family << "\n"
428            << "\\font_sc " << h_font_sc << "\n"
429            << "\\font_osf " << h_font_osf << "\n"
430            << "\\font_sf_scale " << h_font_sf_scale << "\n"
431            << "\\font_tt_scale " << h_font_tt_scale << "\n"
432            << "\\graphics " << h_graphics << "\n"
433            << "\\paperfontsize " << h_paperfontsize << "\n"
434            << "\\spacing " << h_spacing << "\n"
435            << "\\papersize " << h_papersize << "\n"
436            << "\\use_geometry " << h_use_geometry << "\n"
437            << "\\use_amsmath " << h_use_amsmath << "\n"
438            << "\\cite_engine " << h_cite_engine << "\n"
439            << "\\use_bibtopic " << h_use_bibtopic << "\n"
440            << "\\paperorientation " << h_paperorientation << "\n"
441            << h_margins
442            << "\\secnumdepth " << h_secnumdepth << "\n"
443            << "\\tocdepth " << h_tocdepth << "\n"
444            << "\\paragraph_separation " << h_paragraph_separation << "\n"
445            << "\\defskip " << h_defskip << "\n"
446            << "\\quotes_language " << h_quotes_language << "\n"
447            << "\\papercolumns " << h_papercolumns << "\n"
448            << "\\papersides " << h_papersides << "\n"
449            << "\\paperpagestyle " << h_paperpagestyle << "\n"
450            << "\\tracking_changes " << h_tracking_changes << "\n"
451            << "\\output_changes " << h_output_changes << "\n"
452            << "\\end_header\n\n"
453            << "\\begin_body\n";
454         // clear preamble for subdocuments
455         h_preamble.str("");
456 }
457
458 } // anonymous namespace
459
460 void parse_preamble(Parser & p, ostream & os, 
461         string const & forceclass, TeX2LyXDocClass & tc)
462 {
463         // initialize fixed types
464         special_columns['D'] = 3;
465         bool is_full_document = false;
466         bool is_lyx_file = false;
467         bool in_lyx_preamble = true;
468
469         // determine whether this is a full document or a fragment for inclusion
470         while (p.good()) {
471                 Token const & t = p.get_token();
472
473                 if (t.cat() == catEscape && t.cs() == "documentclass") {
474                         is_full_document = true;
475                         break;
476                 }
477         }
478         p.reset();
479
480         while (is_full_document && p.good()) {
481                 Token const & t = p.get_token();
482
483 #ifdef FILEDEBUG
484                 cerr << "t: " << t << "\n";
485 #endif
486
487                 //
488                 // cat codes
489                 //
490                 if (!in_lyx_preamble &&
491                     (t.cat() == catLetter ||
492                      t.cat() == catSuper ||
493                      t.cat() == catSub ||
494                      t.cat() == catOther ||
495                      t.cat() == catMath ||
496                      t.cat() == catActive ||
497                      t.cat() == catBegin ||
498                      t.cat() == catEnd ||
499                      t.cat() == catAlign ||
500                      t.cat() == catParameter))
501                         h_preamble << t.character();
502
503                 else if (!in_lyx_preamble && 
504                          (t.cat() == catSpace || t.cat() == catNewline))
505                         h_preamble << t.asInput();
506
507                 else if (t.cat() == catComment) {
508                         // regex to parse comments
509                         static regex const islyxfile("%% LyX .* created this file");
510                         static regex const usercommands("User specified LaTeX commands");
511                         
512                         string const comment = t.asInput();
513                         cerr << "Seen comment: " << comment << std::endl;
514                         smatch sub;
515                         if (regex_search(comment, sub, islyxfile))
516                                 is_lyx_file = true;
517                         else if (is_lyx_file
518                                  && regex_search(comment, sub, usercommands))
519                                 in_lyx_preamble = false;
520                         else if (!in_lyx_preamble)
521                                 h_preamble << t.asInput();
522                         cerr << "lyx_file: " << is_lyx_file << ", lyx_preamble "
523                              << in_lyx_preamble << std::endl;
524                 }
525
526                 else if (t.cs() == "pagestyle")
527                         h_paperpagestyle = p.verbatim_item();
528
529                 else if (t.cs() == "makeatletter") {
530                         if (!is_lyx_file || !in_lyx_preamble
531                             || p.getCatCode('@') != catLetter)
532                                 h_preamble << "\\makeatletter";
533                         p.setCatCode('@', catLetter);
534                 }
535
536                 else if (t.cs() == "makeatother") {
537                         if (!is_lyx_file || !in_lyx_preamble
538                             || p.getCatCode('@') != catOther)
539                                 h_preamble << "\\makeatother";
540                         p.setCatCode('@', catOther);
541                 }
542
543                 else if (t.cs() == "newcommand" || t.cs() == "renewcommand"
544                             || t.cs() == "providecommand") {
545                         bool star = false;
546                         if (p.next_token().character() == '*') {
547                                 p.get_token();
548                                 star = true;
549                         }
550                         string const name = p.verbatim_item();
551                         string const opt1 = p.getOpt();
552                         string const opt2 = p.getFullOpt();
553                         string const body = p.verbatim_item();
554                         // font settings
555                         if (name == "\\rmdefault")
556                                 if (is_known(body, known_roman_fonts))
557                                         h_font_roman = body;
558
559                         if (name == "\\sfdefault")
560                                 if (is_known(body, known_sans_fonts))
561                                         h_font_sans = body;
562
563                         if (name == "\\ttdefault")
564                                 if (is_known(body, known_typewriter_fonts))
565                                         h_font_typewriter = body;
566
567                         if (name == "\\familydefault") {
568                                 string family = body;
569                                 // remove leading "\"
570                                 h_font_default_family = family.erase(0,1);
571                         }
572                         // only non-lyxspecific stuff
573                         if (!in_lyx_preamble) {
574                                 ostringstream ss;
575                                 ss << '\\' << t.cs();
576                                 if (star)
577                                         ss << '*';
578                                 ss << '{' << name << '}' << opt1 << opt2
579                                    << '{' << body << "}";
580                                 h_preamble << ss.str();
581
582                                 // Add the command to the known commands
583                                 add_known_command(name, opt1, !opt2.empty());
584 /*
585                                 ostream & out = in_preamble ? h_preamble : os;
586                                 out << "\\" << t.cs() << "{" << name << "}"
587                                     << opts << "{" << body << "}";
588 */
589                         }
590                 }
591
592                 else if (t.cs() == "documentclass") {
593                         vector<string>::iterator it;
594                         vector<string> opts = split_options(p.getArg('[', ']'));
595                         handle_opt(opts, known_fontsizes, h_paperfontsize);
596                         delete_opt(opts, known_fontsizes);
597                         // delete "pt" at the end
598                         string::size_type i = h_paperfontsize.find("pt");
599                         if (i != string::npos)
600                                 h_paperfontsize.erase(i);
601                         // to avoid that the babel options overwrite the documentclass options
602                         documentclass_language = false;
603                         handle_opt(opts, known_languages, h_language);
604                         delete_opt(opts, known_languages);
605                         if (is_known(h_language, known_french_languages))
606                                 h_language = "french";
607                         else if (is_known(h_language, known_german_languages))
608                                 h_language = "german";
609                         else if (is_known(h_language, known_ngerman_languages))
610                                 h_language = "ngerman";
611                         else if (is_known(h_language, known_russian_languages))
612                                 h_language = "russian";
613                         else if (is_known(h_language, known_ukrainian_languages))
614                                 h_language = "ukrainian";
615                         h_quotes_language = h_language;
616                         // paper orientation
617                         if ((it = find(opts.begin(), opts.end(), "landscape")) != opts.end()) {
618                                 h_paperorientation = "landscape";
619                                 opts.erase(it);
620                         }
621                         // paper sides
622                         if ((it = find(opts.begin(), opts.end(), "oneside"))
623                                  != opts.end()) {
624                                 h_papersides = "1";
625                                 opts.erase(it);
626                         }
627                         if ((it = find(opts.begin(), opts.end(), "twoside"))
628                                  != opts.end()) {
629                                 h_papersides = "2";
630                                 opts.erase(it);
631                         }
632                         // paper columns
633                         if ((it = find(opts.begin(), opts.end(), "onecolumn"))
634                                  != opts.end()) {
635                                 h_papercolumns = "1";
636                                 opts.erase(it);
637                         }
638                         if ((it = find(opts.begin(), opts.end(), "twocolumn"))
639                                  != opts.end()) {
640                                 h_papercolumns = "2";
641                                 opts.erase(it);
642                         }
643                         // paper sizes
644                         // some size options are know to any document classes, other sizes
645                         // are handled by the \geometry command of the geometry package
646                         handle_opt(opts, known_class_paper_sizes, h_papersize);
647                         delete_opt(opts, known_class_paper_sizes);
648                         // the remaining options
649                         h_options = join(opts, ",");
650                         h_textclass = p.getArg('{', '}');
651                 }
652
653                 else if (t.cs() == "usepackage") {
654                         string const options = p.getArg('[', ']');
655                         string const name = p.getArg('{', '}');
656                         if (options.empty() && name.find(',')) {
657                                 vector<string> vecnames;
658                                 split(name, vecnames, ',');
659                                 vector<string>::const_iterator it  = vecnames.begin();
660                                 vector<string>::const_iterator end = vecnames.end();
661                                 for (; it != end; ++it)
662                                         handle_package(trim(*it), string(), 
663                                                        in_lyx_preamble);
664                         } else {
665                                 handle_package(name, options, in_lyx_preamble);
666                         }
667                 }
668
669                 else if (t.cs() == "newenvironment") {
670                         string const name = p.getArg('{', '}');
671                         ostringstream ss;
672                         ss << "\\newenvironment{" << name << "}";
673                         ss << p.getOpt();
674                         ss << p.getOpt();
675                         ss << '{' << p.verbatim_item() << '}';
676                         ss << '{' << p.verbatim_item() << '}';
677                         if (!in_lyx_preamble)
678                                 h_preamble << ss.str();
679                 }
680
681                 else if (t.cs() == "def") {
682                         string name = p.get_token().cs();
683                         while (p.next_token().cat() != catBegin)
684                                 name += p.get_token().asString();
685                         if (!in_lyx_preamble)
686                                 h_preamble << "\\def\\" << name << '{'
687                                            << p.verbatim_item() << "}";
688                 }
689
690                 else if (t.cs() == "newcolumntype") {
691                         string const name = p.getArg('{', '}');
692                         trim(name);
693                         int nargs = 0;
694                         string opts = p.getOpt();
695                         if (!opts.empty()) {
696                                 istringstream is(string(opts, 1));
697                                 is >> nargs;
698                         }
699                         special_columns[name[0]] = nargs;
700                         h_preamble << "\\newcolumntype{" << name << "}";
701                         if (nargs)
702                                 h_preamble << "[" << nargs << "]";
703                         h_preamble << "{" << p.verbatim_item() << "}";
704                 }
705
706                 else if (t.cs() == "setcounter") {
707                         string const name = p.getArg('{', '}');
708                         string const content = p.getArg('{', '}');
709                         if (name == "secnumdepth")
710                                 h_secnumdepth = content;
711                         else if (name == "tocdepth")
712                                 h_tocdepth = content;
713                         else
714                                 h_preamble << "\\setcounter{" << name << "}{" << content << "}";
715                 }
716
717                 else if (t.cs() == "setlength") {
718                         string const name = p.verbatim_item();
719                         string const content = p.verbatim_item();
720                         // the paragraphs are only not indented when \parindent is set to zero
721                         if (name == "\\parindent" && content != "") {
722                                 if (content[0] == '0')
723                                         h_paragraph_separation = "skip";
724                         } else if (name == "\\parskip") {
725                                 if (content == "\\smallskipamount")
726                                         h_defskip = "smallskip";
727                                 else if (content == "\\medskipamount")
728                                         h_defskip = "medskip";
729                                 else if (content == "\\bigskipamount")
730                                         h_defskip = "bigskip";
731                                 else
732                                         h_defskip = content;
733                         } else
734                                 h_preamble << "\\setlength{" << name << "}{" << content << "}";
735                 }
736
737                 else if (t.cs() == "onehalfspacing")
738                         h_spacing = "onehalf";
739
740                 else if (t.cs() == "doublespacing")
741                         h_spacing = "double";
742
743                 else if (t.cs() == "setstretch")
744                         h_spacing = "other " + p.verbatim_item();
745
746                 else if (t.cs() == "begin") {
747                         string const name = p.getArg('{', '}');
748                         if (name == "document")
749                                 break;
750                         h_preamble << "\\begin{" << name << "}";
751                 }
752
753                 else if (t.cs() == "geometry") {
754                         h_use_geometry = "true";
755                         vector<string> opts = split_options(p.getArg('{', '}'));
756                         vector<string>::iterator it;
757                         // paper orientation
758                         if ((it = find(opts.begin(), opts.end(), "landscape")) != opts.end()) {
759                                 h_paperorientation = "landscape";
760                                 opts.erase(it);
761                         }
762                         // paper size
763                         handle_opt(opts, known_paper_sizes, h_papersize);
764                         delete_opt(opts, known_paper_sizes);
765                         // page margins
766                         char const * const * margin = known_paper_margins;
767                         int k = -1;
768                         for (; *margin; ++margin) {
769                                 k += 1;
770                                 // search for the "=" in e.g. "lmargin=2cm" to get the value
771                                 for(size_t i = 0; i != opts.size(); i++) {
772                                         if (opts.at(i).find(*margin) != string::npos) {
773                                                 string::size_type pos = opts.at(i).find("=");
774                                                 string value = opts.at(i).substr(pos + 1);
775                                                 string name = known_coded_paper_margins[k];
776                                                 h_margins += "\\" + name + " " + value + "\n";
777                                         }
778                                 }
779                         }
780                 }
781
782                 else if (t.cs() == "jurabibsetup") {
783                         vector<string> jurabibsetup =
784                                 split_options(p.getArg('{', '}'));
785                         // add jurabibsetup to the jurabib package options
786                         add_package("jurabib", jurabibsetup);
787                         if (!jurabibsetup.empty()) {
788                                 h_preamble << "\\jurabibsetup{"
789                                            << join(jurabibsetup, ",") << '}';
790                         }
791                 }
792
793                 else if (!t.cs().empty() && !in_lyx_preamble)
794                         h_preamble << '\\' << t.cs();
795         }
796         p.skip_spaces();
797
798         // Force textclass if the user wanted it
799         if (!forceclass.empty())
800                 h_textclass = forceclass;
801         if (noweb_mode && !prefixIs(h_textclass, "literate-"))
802                 h_textclass.insert(0, "literate-");
803         FileName layoutfilename = libFileSearch("layouts", h_textclass, "layout");
804         if (layoutfilename.empty()) {
805                 cerr << "Error: Could not find layout file for textclass \"" << h_textclass << "\"." << endl;
806                 exit(1);
807         }
808         tc.read(layoutfilename);
809         if (h_papersides.empty()) {
810                 ostringstream ss;
811                 ss << tc.sides();
812                 h_papersides = ss.str();
813         }
814         end_preamble(os, tc);
815 }
816
817 // }])
818
819
820 } // namespace lyx