我怎样才能在 LaTex 中写出“@”符号?我试图在 lslisting 中输入一些文本:
\begin{lstlisting}
@some text some text
\end{lstlisting}
'@' 没有出现或者有时会出现错误,请问我该如何让它工作?
答案1
这能编译出你想要的内容吗?
\documentclass{article}
\usepackage{listings}
\begin{document}
\begin{lstlisting}
@some text some text
\end{lstlisting}
\end{document}