mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
Output proper driver to changebar package when using dvi chain
Else the bars are not shown
This commit is contained in:
parent
bbc6ea4a5f
commit
4718d63fc3
@ -1307,7 +1307,11 @@ string const LaTeXFeatures::getPackages() const
|
|||||||
// than those above.
|
// than those above.
|
||||||
|
|
||||||
if (mustProvide("changebar") && !mustProvide("ct-dvipost")) {
|
if (mustProvide("changebar") && !mustProvide("ct-dvipost")) {
|
||||||
packages << "\\usepackage{changebar}\n";
|
packages << "\\usepackage";
|
||||||
|
if (runparams_.flavor == OutputParams::LATEX
|
||||||
|
|| runparams_.flavor == OutputParams::DVILUATEX)
|
||||||
|
packages << "[dvips]";
|
||||||
|
packages << "{changebar}\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mustProvide("footnote")) {
|
if (mustProvide("footnote")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user