歌曲包出现错误

歌曲包出现错误

这里我从歌曲包手册中获取了 LaTeX 代码

\documentclass{article}
\usepackage[chorded]{songs}
\noversenumbers
\begin{document}
\songsection{Worship Songs}
\begin{songs}{}
\beginsong{Doxology}[by={Louis Bourgeois and Thomas Ken}, sr={Revelation 5:13}, cr={Public domain.}]
\beginverse
\[G]Praise God, \[D]from \[Em]Whom \[Bm]all \[Em]bless\[D]ings \[G]flow;
\[G]Praise Him, all \[D]crea\[Em]tures \[C]here \[G]be\[D]low;
\[Em]Praise \[D]Him \[G]a\[D]bove, \[G]ye \[C]heav’n\[D]ly \[Em]host;
\[G]Praise Fa\[Em]ther, \[D]Son, \[Am]and \[G/B G/C]Ho\[D]ly \[G]Ghost.
\[C]A\[G]men.
\endverse
\endsong
\end{songs}
\end{document}

之前它可以成功运行而没有任何错误,但是在更新包之后它显示错误消息,如下所示 在此处输入图片描述

答案1

\usepackage{ifpdf}您可以通过在之前添加来解决问题\usepackage[<options>]{songs}

代码失败,因为最近添加了

\IfFileExists{ifpdf.sty}{\RequirePackage{ifpdf}\ifpdf\SB@pdftrue\fi}{
  \ifx\pdfoutput\undefined\else
    \ifx\pdfoutput\relax\else
      \ifnum\pdfoutput<\@ne\else
        \SB@pdftrue
      \fi
    \fi
  \fi
}

过去只使用“假”分支。问题是“真”分支被放在条件语句中。也就是说,定义如下

\long\def \IfFileExists#1#2#3{%
  \openin\@inputcheck#1 %
  \ifeof\@inputcheck
    \ifx\input@path\@undefined
      \def\reserved@a{#3}%
    \else
      \def\reserved@a{\@iffileonpath{#1}{#2}{#3}}%
    \fi
  \else
    \closein\@inputcheck
    \edef\@filef@und{#1 }%
    \def\reserved@a{#2}%
  \fi
  \reserved@a}

由于ifpdf.sty在所有最近的 TeX 完整发行版中都有,因此\ifeof测试返回 false,因此跳过了带有的行\@iffileonpath{#1}{#2}{#3}。在这样做时,TeX 仍然会记录条件:因为它跳过了

\@iffileonpath{ifpdf.sty}{\ifpdf\SB@pdftrue\fi}{...}

\fi视为匹配\ifx\input@path\@undefined,因为\ifpdf尚未定义为条件。

如果作者对ifpdf.sty未找到测试用例(不太好)很挑剔,那么代码应该是

\IfFileExists{ifpdf.sty}{\RequirePackage{ifpdf}\csname ifpdf\endcsname\SB@pdftrue\csname fi\endcsname}{
  \ifx\pdfoutput\undefined\else
    \ifx\pdfoutput\relax\else
      \ifnum\pdfoutput<\@ne\else
        \SB@pdftrue
      \fi
    \fi
  \fi
}

相关内容