首页 > 技术文章 > LaTex Verbatim 环境下使用数学符号

qq952693358 2018-10-02 16:00 原文

参考:

Write math and make a box with alltt environment

LaTex Verbatim 环境下使用数学符号

在 Verbatim 环境下使用数学符号,需要借助额外的宏包,fancyvrb 。例如:

\documentclass{article}
\usepackage{fancyvrb}

\begin{document}

\begin{Verbatim}[commandchars=\\\{\},
codes={\catcode`\$=3\catcode`^=7\catcode`_=8},frame=single]
some code test
$\sum a_i$
\end{Verbatim}

\end{document}

2018.10

推荐阅读