mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
LaTeXFeatures.cpp: fix bug #8731
- we must assure that the package mhchem is loaded before the package esint
This commit is contained in:
parent
c7cdac6561
commit
158571ea00
@ -936,8 +936,16 @@ string const LaTeXFeatures::getPackages() const
|
||||
if (mustProvide("setspace") && !isProvided("SetSpace"))
|
||||
packages << "\\usepackage{setspace}\n";
|
||||
|
||||
// esint must be after amsmath and wasysym, since it will redeclare
|
||||
// inconsistent integral symbols
|
||||
// we need to assure that mhchem is loaded before esint
|
||||
// because esint must be loaded AFTER amslatex and mhchem loads amlatex
|
||||
// (this info is from the author of mhchem from June 2013)
|
||||
if (mustProvide("mhchem") &&
|
||||
params_.use_package("mhchem") != BufferParams::package_off)
|
||||
packages << "\\PassOptionsToPackage{version=3}{mhchem}\n"
|
||||
"\\usepackage{mhchem}\n";
|
||||
|
||||
// esint must be after amsmath (and packages requiring amsmath, like mhchem)
|
||||
// and wasysym, since it will redeclare inconsistent integral symbols
|
||||
if (mustProvide("esint") &&
|
||||
params_.use_package("esint") != BufferParams::package_off)
|
||||
packages << "\\usepackage{esint}\n";
|
||||
@ -999,11 +1007,6 @@ string const LaTeXFeatures::getPackages() const
|
||||
packages << "\\PassOptionsToPackage{normalem}{ulem}\n"
|
||||
"\\usepackage{ulem}\n";
|
||||
|
||||
if (mustProvide("mhchem") &&
|
||||
params_.use_package("mhchem") != BufferParams::package_off)
|
||||
packages << "\\PassOptionsToPackage{version=3}{mhchem}\n"
|
||||
"\\usepackage{mhchem}\n";
|
||||
|
||||
if (mustProvide("nomencl")) {
|
||||
// Make it work with the new and old version of the package,
|
||||
// but don't use the compatibility option since it is
|
||||
|
Loading…
Reference in New Issue
Block a user