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