mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
Fix tablefootnote loading order (#11841)
(cherry picked from commit 5bc66b5f45
)
This commit is contained in:
parent
4eff6e97e8
commit
e41c790f91
@ -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"))
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user