【已解决】LaTeX报错:Illegal parameter number in definition of \iterate. <to be read again>
如题,在使用Beamer的时候遇到了这样的错误,这里给出解决方案。
·
前言
如题,在使用Beamer的时候遇到了这样的错误,这里给出解决方案。
方案
错误场景:
\begin{frame}
\frametitle{Available Resources}
A list of APR techniques evaluated on Defects4J (keeping update): \url{https://github.com/anonymous#15-apr-techniques-that-are-evaluated-on-defects4j}
\end{frame}
错误原因:
frame环境中的#
的使用会导致这样的错误。
解决方案:
把#
变成\#
就行。即:
\begin{frame}
\frametitle{Available Resources}
A list of APR techniques evaluated on Defects4J (keeping update): \url{https://github.com/anonymous\#15-apr-techniques-that-are-evaluated-on-defects4j}
\end{frame}
小结
以上。
参考文献
更多推荐
所有评论(0)