mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-10 18:58:10 +00:00
* src/LaTeXFeatures.cpp:
- the package "pdfcolmk" must be loaded after [x]color.sty (see package documentation). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22537 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cf2656e026
commit
9275f580ef
@ -519,7 +519,6 @@ char const * simplefeatures[] = {
|
||||
"units",
|
||||
"tipa",
|
||||
"framed",
|
||||
"pdfcolmk",
|
||||
"soul",
|
||||
"textcomp",
|
||||
"xcolor",
|
||||
@ -600,6 +599,11 @@ string const LaTeXFeatures::getPackages() const
|
||||
<< "]{color}\n";
|
||||
}
|
||||
|
||||
// pdfcolmk must be loaded after color
|
||||
if (mustProvide("pdfcolmk")) {
|
||||
packages << "\\usepackage{pdfcolmk}\n";
|
||||
}
|
||||
|
||||
// makeidx.sty
|
||||
if (isRequired("makeidx")) {
|
||||
if (!tclass.provides("makeidx"))
|
||||
|
Loading…
Reference in New Issue
Block a user