我正在尝试将文件路径作为参数传递给命令。我正在使用 lualatex,但我不太清楚如何让它工作。我定义的新命令是:
\newcommand{\ScoreWithTranslation}[2]
{
\begin{paracol}[1]*{2}
\gresetheadercapture{initial-style}{gresetinitiallines}{}
\gresetheadercapture{commentary}{grecommentary}{}
\gregorioscore{#1}\switchcolumn
#2\switchcolumn
\end{paracol}
}
然后我尝试使用该命令来访问位于单独目录中的分数文件:
\ScoreWithTranslation{/filefolder/score}{translation text}
但是,当我使用此命令时,出现错误,提示使用 TexShop 时找不到该文件夹。使用 Overleaf 时,它会跳过该文件夹。
有什么建议吗?