參考:
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
