这行
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}