arxiv 中的 LaTeX 输出有误

arxiv 中的 LaTeX 输出有误

在我的一篇 arxiv 文章中,我结合使用了 listings 环境和 tcolorbox 包。下面是一个最简单的示例:

\documentclass{article}

\usepackage[many,breakable,listings]{tcolorbox}
\tcbset{nobeforeafter} 

\newtcblisting{mylistings}{%
    breakable,
    enhanced,
    size=fbox, 
    pad at break*=1mm,
    opacityfill=1,
    boxrule=1pt,
    before skip=\bigskipamount,
    after={\par\noindent},
    colback=lightgray,
    colframe=lightgray,
    attach title to upper,
    listing only,
    listing options={
        language=Python,
        upquote= true,
        tabsize=4,
        keywordstyle=\bfseries,
        basicstyle=\small\ttfamily,
        basewidth=.5em,
        aboveskip=0pt,
        belowskip=-2pt,
        showstringspaces=false,
        breaklines=true,
        sensitive=true,
    },
}

\begin{document}
\begin{mylistings}
%display latex
\end{mylistings}
\end{document}

在 arxiv 中,即使在我所有的机器上一切正常,但 % 符号后的文本似乎消失了。


编辑于 2020/07/22:

arxiv 中的输出如下:

在此处输入图片描述

答案1

您的最小工作示例在 arXiv 中似乎运行良好,并且在 texlive 2020 中编译并产生相同的输出。最小工作示例,在 arXiv 中编译

我看到它由于冲压操作而旋转,因此如果您想禁用它,您需要提供一个00README.XXX带有适当内容的纯文本文件控制值。如果您有具体问题,请联系arXiv 帮助以及您的与submit-id您的来源相关的具体帮助。

相关内容