在文档中显示 LaTeX 代码

在文档中显示 LaTeX 代码

我有一个 LaTeX 文档,我想在主文档中显示 LaTeX 函数的使用方式,例如:

\documentclass{name} 是 bla bla bla

问题是 LaTeX 总是将其识别\documentclass为一个函数,因此会抛出错误。

有办法解决这个问题吗?

答案1

有(至少)两种排版方法\documentclass{name}可以避免 LaTeX 被字符串中的三个“特殊”字符绊倒,即\{}

  • “verbatim”方法将导致使用“等宽”字体排版字符串 - 这可能就是您想要的。

  • 您可以直接“转义”特殊字符,从而使用默认文本字体(可能是衬线字体)对字符串进行排版。

    \documentclass{article}
    \begin{document}
    
    % verbatim method - the delimiter character (here: +)
    %   mustn't appear in the string being rendered in 
    %   verbatim mode
    \verb+\documentclass{name}+ 
    
    % or, use macros to "escape" the backslash and curly braces
    \textbackslash documentclass\{name\}
    
    \end{document}
    

相关内容