From: Juergen Spitzmueller Date: Fri, 17 Apr 2020 07:12:51 +0000 (+0200) Subject: Fix tablefootnote loading order (#11841) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8878155f06f12f8a0118845977f4a241ed2c81a5;p=features.git Fix tablefootnote loading order (#11841) --- diff --git a/src/LaTeXFeatures.cpp b/src/LaTeXFeatures.cpp index 0216182f27..6f6988b4c0 100644 --- a/src/LaTeXFeatures.cpp +++ b/src/LaTeXFeatures.cpp @@ -1150,7 +1150,6 @@ char const * simplefeatures[] = { "todonotes", "forest", "varwidth", - "tablefootnote", "afterpage", "tabularx", "tikz", @@ -1396,6 +1395,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"))