我正在写如下的参考书目。
\begin{thebibliography}{9}
\bibitem{frazier}
F.W. Gehring, Michael W. Frazier, S. Axler.
\textit{Introduction to Wavelets Through Linear Algebra}.
Springer, 1999.
\bibitem{donohostark}
David L. Donoho, Philip B. Stark.
\textit{Uncertainty Principles And Signal Recovery}.
Siam Journal on Applied Mathematics, Vol. 49, No. 3, pp. 906-931, June 1989.
\bibitem{fftprog}
\texttt{https://jakevdp.github.io/blog/2013/08/28/understanding-the-fft/}
\bibitem{vandermonde}
\texttt{https://proofwiki.org/wiki/Vandermonde_Determinant}
\end{thebibliography}
当我编译此代码时,在 \end 之前的最后一行出现“Missing $ inserting.”但当我注释掉 _Determinant 一词时,一切正常。
\texttt{https://proofwiki.org/wiki/Vandermonde}%_Determinant}
_Determinant 是否已经有一些内置函数?我什么也没找到。
谢谢
答案1
问题在于_
URL 字符串中的 (“下划线”) 字符。在 TeX 和 LaTeX 中,_
通常被解释为数学公式中下标项的开头,因此预计会在数学模式下出现。因此也缺少_
消息(用于启动和终止内联数学模式)。$
$
当然,Url字符串使用这个字符并没有这么特殊的含义。
因此请url
通过加载包
\usepackage{url}
在序言中写道
\url{https://proofwiki.org/wiki/Vandermonde_Determinant}
代替
\texttt{https://proofwiki.org/wiki/Vandermonde_Determinant}.