mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Increase tex2lyx output format to 378.
369: Nothing to do (empty lyx2lyx conversion) 370: Nothing to do (empty lyx2lyx conversion) 371: Added \use_mhchem parameter 372: Nothing to do (empty lyx2lyx conversion) 373: Nothing to do (the old version was wrong since it used the new g-brief layout files with the old file format) 374: Nothing to do (html output changes) 375: Nothing to do (empty lyx2lyx conversion) 376: Nothing to do (empty lyx2lyx conversion) 377: Nothing to do (empty lyx2lyx conversion) 378: Nothing to do (empty lyx2lyx conversion) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39911 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
081fb1c4d8
commit
81505cc5a3
@ -71,4 +71,12 @@ Format LaTeX feature LyX feature
|
|||||||
366 relative lengths for parskip \defskip
|
366 relative lengths for parskip \defskip
|
||||||
367 relative lengths for h and v space InsetHSpace, InsetVSpace
|
367 relative lengths for h and v space InsetHSpace, InsetVSpace
|
||||||
368 glue lengths InsetHSpace
|
368 glue lengths InsetHSpace
|
||||||
|
369 author id \author
|
||||||
|
370 \date{} \suppress_date
|
||||||
|
371 automatic mhchem loading \use_mhchem
|
||||||
|
372 font encoding \fontencoding
|
||||||
|
375 \includeonly \{begin,end}_includeonly
|
||||||
|
376 update .aux of unincluded children \maintain_unincluded_children
|
||||||
|
377 multirow.sty InsetTabular
|
||||||
|
378 revision info InsetInfo
|
||||||
|
|
||||||
|
@ -198,6 +198,7 @@ string h_papersize = "default";
|
|||||||
string h_use_geometry = "false";
|
string h_use_geometry = "false";
|
||||||
string h_use_amsmath = "1";
|
string h_use_amsmath = "1";
|
||||||
string h_use_esint = "1";
|
string h_use_esint = "1";
|
||||||
|
string h_use_mhchem = "0";
|
||||||
string h_cite_engine = "basic";
|
string h_cite_engine = "basic";
|
||||||
string h_use_bibtopic = "false";
|
string h_use_bibtopic = "false";
|
||||||
string h_paperorientation = "portrait";
|
string h_paperorientation = "portrait";
|
||||||
@ -500,6 +501,9 @@ void handle_package(Parser &p, string const & name, string const & opts,
|
|||||||
else if (name == "esint")
|
else if (name == "esint")
|
||||||
h_use_esint = "2";
|
h_use_esint = "2";
|
||||||
|
|
||||||
|
else if (name == "mhchem")
|
||||||
|
h_use_mhchem = "2";
|
||||||
|
|
||||||
else if (name == "babel" && !opts.empty()) {
|
else if (name == "babel" && !opts.empty()) {
|
||||||
// check if more than one option was used - used later for inputenc
|
// check if more than one option was used - used later for inputenc
|
||||||
// in case inputenc is parsed before babel, set the encoding to auto
|
// in case inputenc is parsed before babel, set the encoding to auto
|
||||||
@ -719,6 +723,7 @@ void end_preamble(ostream & os, TextClass const & /*textclass*/)
|
|||||||
<< "\\use_geometry " << h_use_geometry << "\n"
|
<< "\\use_geometry " << h_use_geometry << "\n"
|
||||||
<< "\\use_amsmath " << h_use_amsmath << "\n"
|
<< "\\use_amsmath " << h_use_amsmath << "\n"
|
||||||
<< "\\use_esint " << h_use_esint << "\n"
|
<< "\\use_esint " << h_use_esint << "\n"
|
||||||
|
<< "\\use_mhchem " << h_use_mhchem << "\n"
|
||||||
<< "\\cite_engine " << h_cite_engine << "\n"
|
<< "\\cite_engine " << h_cite_engine << "\n"
|
||||||
<< "\\use_bibtopic " << h_use_bibtopic << "\n"
|
<< "\\use_bibtopic " << h_use_bibtopic << "\n"
|
||||||
<< "\\paperorientation " << h_paperorientation << '\n';
|
<< "\\paperorientation " << h_paperorientation << '\n';
|
||||||
|
@ -165,7 +165,7 @@ extern bool noweb_mode;
|
|||||||
/// Did we recognize any pdflatex-only construct?
|
/// Did we recognize any pdflatex-only construct?
|
||||||
extern bool pdflatex;
|
extern bool pdflatex;
|
||||||
/// LyX format that is created by tex2lyx
|
/// LyX format that is created by tex2lyx
|
||||||
int const LYX_FORMAT = 368;
|
int const LYX_FORMAT = 378;
|
||||||
|
|
||||||
/// path of the master .tex file
|
/// path of the master .tex file
|
||||||
extern std::string getMasterFilePath();
|
extern std::string getMasterFilePath();
|
||||||
|
Loading…
Reference in New Issue
Block a user