]> git.lyx.org Git - features.git/commitdiff
Increase tex2lyx output format to 398.
authorGeorg Baum <georg.baum@post.rwth-aachen.de>
Sat, 22 Oct 2011 11:11:50 +0000 (11:11 +0000)
committerGeorg Baum <georg.baum@post.rwth-aachen.de>
Sat, 22 Oct 2011 11:11:50 +0000 (11:11 +0000)
394: Added use_makebox parameter to InsetBox
395: Nothing to do (empty lyx2lyx conversion)
396: Nothing to do (empty lyx2lyx conversion)
397: Nothing to do (tex2lyx does not support nameref)
398: Nothing to do (empty lyx2lyx conversion)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39916 a592a061-630c-0410-9148-cb99ea01b6c8

src/tex2lyx/TODO.txt
src/tex2lyx/tex2lyx.h
src/tex2lyx/text.cpp

index 9c564b583e5b6debb700b0f4a29b1d3832ae5b9f..19ceca7dece003920fe4856d8f47844e70099359 100644 (file)
@@ -89,4 +89,7 @@ Format LaTeX feature                        LyX feature
 390    forward/reverse search               \forward_search, \forward_macro
 391    decimal alignment in tables          InsetTabular
 392    new beamer format                    InsetLayout
+394    \makebox                             InsetBox use_makebox
+395    page sizes C0-6                      \papersize
+396    nameref.sty                          InsetRef
 
index 9d0e4a192380fd426b0ecfdf9cdb3abd2c2739a7..8db4dcf653717967341a258126177a3558ef9ff6 100644 (file)
@@ -165,7 +165,7 @@ extern bool noweb_mode;
 /// Did we recognize any pdflatex-only construct?
 extern bool pdflatex;
 /// LyX format that is created by tex2lyx
-int const LYX_FORMAT = 393;
+int const LYX_FORMAT = 398;
 
 /// path of the master .tex file
 extern std::string getMasterFilePath();
index 1f2d5420149beb20154ad6f9bf46bf93293cec38..85df00324a620f82ef5ce2409e862ece700479ad 100644 (file)
@@ -866,6 +866,7 @@ void parse_box(Parser & p, ostream & os, unsigned outer_flags,
                os << "has_inner_box " << !inner_type.empty() << "\n";
                os << "inner_pos \"" << inner_pos << "\"\n";
                os << "use_parbox " << (inner_type == "parbox") << '\n';
+               os << "use_makebox 0\n";
                os << "width \"" << width_value << width_unit << "\"\n";
                os << "special \"none\"\n";
                os << "height \"" << height_value << height_unit << "\"\n";