铸造:-shell-escape 标志

铸造:-shell-escape 标志

我试图将一些源代码放入我的 tex 文档中,但只收到主题标题中提到的错误消息。我禁用了几乎所有我使用的软件包,但没有成功。

\documentclass[a4paper, 13pt, twosides, openany, liststotoc]{scrbook}

\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[footnote, nohyperlinks, printonlyused, withpage, smaller]{acronym}
\usepackage[top=30mm, left=25mm, right=25mm, bottom=30mm, headsep=10mm, footskip=12mm]{geometry}
\usepackage{amsmath, graphicx, lmodern, fancyhdr, listings, xcolor, acronym, etoolbox, calc, setspace, tabto, enumitem, microtype, chngcntr, xcolor, pdfpages, minted}

\begin{document}

\begin{minted}{csharp}

public static void Main (string[] args)
{
    Console.WriteLine ("Hello World!");
}

\end{minted}

\end{document}

我实际上正在使用所有这些软件包,因此我真的希望找到一种可能性,除了所有其他软件包之外,还可以包含我的代码。它实际上不需要像 minted 软件包那样被着色,但我更喜欢这样。

感谢您的每一份帮助或有用的想法。

问候

相关内容