我想使用以下基本元素在我的 LaTeX 文档中的文本中插入一些简单的 Linux 路径:
\texttt{/usr/share/myspell/dicts/hyph_pl_PL.dic}
..但它失败了,并出现以下错误:
! Missing $ inserted.
<inserted text>
$
l.221 ...{/usr/share/myspell/dicts/hyph_pl_PL.dic}
I've inserted a begin-math/end-math symbol since I think
you left one out. Proceed, with fingers crossed.
! Extra }, or forgotten $.
我不确定它为什么会出现,但在这种情况下肯定不会尝试使用数学环境,所以编译器试图向我解释。
有没有简单的方法可以解决这个小问题?举几个例子会是完美的答案。
详细信息:使用TeX Live 2013
with Texmaker 4.1.1
on Ubuntu 14.04
。
答案1
您可以使用一个命令\path{/usr/share/myspell/dicts/hyph_pl_PL.dic}
来编写这样的路径。
该命令在包中定义,url
因此您必须\usepackage{url}
在文档的序言中使用它。