diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2021-08-10 16:36:53 +0200 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2021-08-20 21:17:50 +0200 |
commit | 356133d321bac6326c6b301bb0e1b3ab54eceb70 (patch) | |
tree | f12b08f79528e78f2534145e6c0ba56159108e35 | |
parent | c302c157d5dd1c32ff47e1ba774c310a3f1f7dc4 (diff) |
manual: Add workaround for older KOMAscript versions.
KOMAscript 3.28 changes \ifpdfoutput to \Ifpdfoutput. Add a check and
redefine the new command as the old one if it's missing since only the
name was changed. Not all Linux distros have a recent enough version
yet.
Change-Id: Ie709a1c85f10e1ddebb703ae50d3539f1aeee8bb
-rw-r--r-- | manual/preamble.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manual/preamble.tex b/manual/preamble.tex index 9dc67dd25a..2d49623a57 100644 --- a/manual/preamble.tex +++ b/manual/preamble.tex @@ -77,6 +77,14 @@ \usepackage{makeidx} \usepackage{fancyvrb} \usepackage{color} + +% Ifpdfoutput is part of KOMAscript 3.28, in earlier versions it's ifpdfoutput. +% We use Ifpdfoutput, so redefine it here for old KOMAscript versions. +% See also https://ctan.org/ctan-ann/id/mailman.2801.1577740444.2586.ctan-ann@ctan.org +\ifdefined\Ifpdfoutput% +\else\newcommand{\Ifpdfoutput}{\ifpdfoutput}% +\fi + \Ifpdfoutput{\usepackage{booktabs}}% {\newcommand{% \toprule}{}\newcommand{\midrule}{\hline}\newcommand{\bottomrule}{}% |