mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
branch: tex2lyx/preamble.cpp:
- support for fileformat 254 (esint) - using amsmath and esint automatically is safer than not to use them. The automatic usage is also our default when you create a new LyX file. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@30118 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8c512db1a9
commit
8cff18e1c1
@ -120,7 +120,8 @@ string h_paperfontsize = "default";
|
||||
string h_spacing = "single";
|
||||
string h_papersize = "default";
|
||||
string h_use_geometry = "false";
|
||||
string h_use_amsmath = "0";
|
||||
string h_use_amsmath = "1";
|
||||
string h_use_esint = "1";
|
||||
string h_cite_engine = "basic";
|
||||
string h_use_bibtopic = "false";
|
||||
string h_paperorientation = "portrait";
|
||||
@ -299,6 +300,9 @@ void handle_package(Parser &p, string const & name, string const & opts,
|
||||
else if (name == "amsmath" || name == "amssymb")
|
||||
h_use_amsmath = "2";
|
||||
|
||||
else if (name == "esint")
|
||||
h_use_esint = "2";
|
||||
|
||||
else if (name == "babel" && !opts.empty()) {
|
||||
// check if more than one option was used - used later for inputenc
|
||||
// in case inputenc is parsed before babel, set the encoding to auto
|
||||
@ -444,7 +448,7 @@ void handle_package(Parser &p, string const & name, string const & opts,
|
||||
void end_preamble(ostream & os, TextClass const & /*textclass*/)
|
||||
{
|
||||
os << "#LyX file created by tex2lyx " << PACKAGE_VERSION << "\n"
|
||||
<< "\\lyxformat 253\n"
|
||||
<< "\\lyxformat 254\n"
|
||||
<< "\\begin_document\n"
|
||||
<< "\\begin_header\n"
|
||||
<< "\\textclass " << h_textclass << "\n";
|
||||
@ -468,6 +472,7 @@ void end_preamble(ostream & os, TextClass const & /*textclass*/)
|
||||
<< "\\papersize " << h_papersize << "\n"
|
||||
<< "\\use_geometry " << h_use_geometry << "\n"
|
||||
<< "\\use_amsmath " << h_use_amsmath << "\n"
|
||||
<< "\\use_esint " << h_use_esint << "\n"
|
||||
<< "\\cite_engine " << h_cite_engine << "\n"
|
||||
<< "\\use_bibtopic " << h_use_bibtopic << "\n"
|
||||
<< "\\paperorientation " << h_paperorientation << "\n"
|
||||
|
Loading…
Reference in New Issue
Block a user