X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeXFeatures.cpp;h=1e809380179ac19c81036f8074bf4a7296e62f2a;hb=1797f5218b8819874f9dbe97b44445b3b5d598a0;hp=a6ce6c3391b03c5fe1a615c71bf9dce0596d7a16;hpb=7677e9487c1669735a2aa9b2356199c2f608fe15;p=lyx.git diff --git a/src/LaTeXFeatures.cpp b/src/LaTeXFeatures.cpp index a6ce6c3391..1e80938017 100644 --- a/src/LaTeXFeatures.cpp +++ b/src/LaTeXFeatures.cpp @@ -450,7 +450,8 @@ char const * simplefeatures[] = { "ifthen", "amsthm", "listings", - "bm" + "bm", + "pdfpages" }; int const nb_simplefeatures = sizeof(simplefeatures) / sizeof(char const *); @@ -576,7 +577,7 @@ string const LaTeXFeatures::getPackages() const // natbib.sty if (mustProvide("natbib")) { packages << "\\usepackage["; - if (params_.citeEngine() == biblio::ENGINE_NATBIB_NUMERICAL) + if (params_.citeEngine() == ENGINE_NATBIB_NUMERICAL) packages << "numbers"; else packages << "authoryear"; @@ -778,7 +779,8 @@ docstring const LaTeXFeatures::getIncludedFiles(string const & fname) const } -void LaTeXFeatures::showStruct() const { +void LaTeXFeatures::showStruct() const +{ lyxerr << "LyX needs the following commands when LaTeXing:" << "\n***** Packages:" << getPackages() << "\n***** Macros:" << getMacros()