软件包冲突:fontenc 软件包与 lilypond 环境

软件包冲突:fontenc 软件包与 lilypond 环境

我正在使用lyluatexLaTeX 中的 lilypond(包)来编写乐谱。我在文件中使用了各种各样的包(如下所示,它们都在原始文档中使用),但现在当我想让我的章节“看起来不错”时,fontenc 包与 lilypond 环境不兼容。如果有人能帮忙就太好了!

这就是我想要的章节的样子(当文件中没有 lilypond 环境但包 lyluatex 在列表中时有效)

\documentclass{book}
\usepackage{geometry}
\usepackage[german]{babel}
\usepackage{hyperref}
\usepackage{tikz}
\usepackage{verbatim}
\usepackage{titlesec}
\usepackage{blindtext}
\usepackage{paralist}
\usepackage{enumitem}
\usepackage{makecell}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{color}
\usepackage{lyluatex}
\usepackage{wasysym}
\usepackage{fancyhdr}
\usepackage[T1]{fontenc}

%command for new chapter format
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter\hspace{20pt}\textcolor{gray}{|}\hspace{20pt}}{0pt}{\Huge\bfseries}

\begin{document}
  \chapter{test}
    \begin{lilypond}[staffsize=26]
      \score {
        \relative
          c''1
        }
      }
    \end{lilypond}
\end{document}

这是我在文件中使用 lilypond 环境时收到的错误消息,它无需 fontenc 包即可完美运行

代码作为图片,因为现在我看到输入的代码看起来很奇怪......

在我进入 fontenc 包之前,一切都很好,其他的包也运行良好。

答案1

正如@DavidCarlisle 所说:我只能不使用该fontenc包,因为根据我用于命令的源,我认为我不需要它。谢谢@David Carlisle!现在它运行完美!

相关内容