Fix tablefootnote loading order (#11841)

(cherry picked from commit 5bc66b5f45)
This commit is contained in:
Juergen Spitzmueller 2020-04-17 09:12:51 +02:00
parent 4eff6e97e8
commit e41c790f91
2 changed files with 5 additions and 1 deletions

View File

@ -1020,7 +1020,6 @@ char const * simplefeatures[] = {
"todonotes",
"forest",
"varwidth",
"tablefootnote",
"environ"
};
@ -1250,6 +1249,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"))

View File

@ -69,6 +69,8 @@ What's new
- Don't open a new instance just because no files are given (bug 11635).
- Fix tablefootnote loading order (bug 11841).
* USER INTERFACE