]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.cpp
LaTeXFonts: Add ScaleCommand
[lyx.git] / src / LaTeXFeatures.cpp
index 0216182f27537ff6c619bdbf92de64c4b939bda6..256b0d858bf9d79cb5c1e10baf31de24276bbb55 100644 (file)
@@ -1150,7 +1150,6 @@ char const * simplefeatures[] = {
        "todonotes",
        "forest",
        "varwidth",
-       "tablefootnote",
        "afterpage",
        "tabularx",
        "tikz",
@@ -1159,7 +1158,8 @@ char const * simplefeatures[] = {
        "xskak",
        "pict2e",
        "drs",
-       "environ"
+       "environ",
+       "dsfont"
 };
 
 char const * bibliofeatures[] = {
@@ -1396,6 +1396,9 @@ string const LaTeXFeatures::getPackages() const
                packages << "\\usepackage{rotating}\n";
        if (mustProvide("rotfloat"))
                packages << "\\usepackage{rotfloat}\n";
+       // and this must be loaded after rotating
+       if (mustProvide("tablefootnote"))
+               packages << "\\usepackage{tablefootnote}\n";
 
        // lyxskak.sty --- newer chess support based on skak.sty
        if (mustProvide("chess"))