未使用数学运算时出现缺失 $ 错误

未使用数学运算时出现缺失 $ 错误

这行

The variable names are HTTP_PROXY with the value http://myproxy:80

原因

! Missing $ inserted.
<inserted text> 
                $
l.91 The variable names are HTTP_PROXY with the value http://myproxy:80
? 

删除此行可以解决问题,但我希望此行保留在文档中。

答案1

_为数学模式保留(通常),表示后面跟着下标内容。

要么使用逐字方法,要么\_使用明确的下划线字符。使用\url这种方法也可以。

一些选项,例如url还有包

\documentclass{article}



\usepackage{url}



\begin{document}

The variable names are \verb!HTTP_PROXY! with the value \url{http://myproxy:80}

The variable names are HTTP\_PROXY with the value \url{http://myproxy:80}

The variable names are \url{HTTP_PROXY} with the value \url{http://myproxy:80}

\end{document}

相关内容