* 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:
Jürgen Spitzmüller 2008-01-13 11:49:36 +00:00
parent cf2656e026
commit 9275f580ef

View File

@ -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"))