mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix tablefootnote loading order (#11841)
This commit is contained in:
parent
86a4c79dc4
commit
5bc66b5f45
@ -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"))
|
||||
|
Loading…
Reference in New Issue
Block a user