mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
fix macro order for newsubfloat
This commit is contained in:
parent
2ad994d1d6
commit
52fe53676a
@ -1390,7 +1390,8 @@ void LaTeXFeatures::getFloatDefinitions(odocstream & os) const
|
|||||||
// effect. (Lgb)
|
// effect. (Lgb)
|
||||||
}
|
}
|
||||||
if (cit->second)
|
if (cit->second)
|
||||||
os << "\n\\newsubfloat{" << from_ascii(fl.floattype()) << "}\n";
|
// The subfig package is loaded later
|
||||||
|
os << "\n\\AtBeginDocument{\\newsubfloat{" << from_ascii(fl.floattype()) << "}}\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,6 +54,9 @@ What's new
|
|||||||
|
|
||||||
* DOCUMENT INPUT/OUTPUT
|
* DOCUMENT INPUT/OUTPUT
|
||||||
|
|
||||||
|
- Fix garbage in document export (and maybe other places) by making encoding
|
||||||
|
conversions thread-safe (bug 8854).
|
||||||
|
|
||||||
- Fix output of ulem commands (underline etc.) which was broken as of
|
- Fix output of ulem commands (underline etc.) which was broken as of
|
||||||
LyX 2.0.6 (bug 8733).
|
LyX 2.0.6 (bug 8733).
|
||||||
|
|
||||||
@ -68,15 +71,14 @@ What's new
|
|||||||
- Fix compilation of documents containing chemical equations and math
|
- Fix compilation of documents containing chemical equations and math
|
||||||
integrals (bug 8731).
|
integrals (bug 8731).
|
||||||
|
|
||||||
|
- Fix compilation with nested ("sub") custom floats.
|
||||||
|
|
||||||
- Fix import of CSV-files.
|
- Fix import of CSV-files.
|
||||||
|
|
||||||
- Added h5 and h6 as HTML tags for Paragraph and Subparagraph.
|
- Added h5 and h6 as HTML tags for Paragraph and Subparagraph.
|
||||||
|
|
||||||
- Include alt tag when exporting math as images (bug 8746).
|
- Include alt tag when exporting math as images (bug 8746).
|
||||||
|
|
||||||
- Fix garbage in document export (and maybe other places) by making encoding
|
|
||||||
conversions thread-safe (bug 8854).
|
|
||||||
|
|
||||||
|
|
||||||
* USER INTERFACE
|
* USER INTERFACE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user