mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +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.
|
||||
|
||||
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")) {
|
||||
|
Loading…
Reference in New Issue
Block a user