\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[natbibapa]{apacite}
\title{For testing}
\begin{document}
Information about natbib in \citeauthor{sharelatex}.
\bibliographystyle{apacite}
\bibliography{bibli.bib}
\end{document}
这会出现错误“缺少 $ 插入”。 mathmode 与 apacite 或 citeauthor 有什么关系?
答案1
问题在于_
URL 中的 ,通常只能在数学模式下使用。要在 URL 中使用它们,请使用url
或hyperref
包。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[natbibapa]{apacite}
\usepackage{url}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{sharelatex,
title={ShareLaTeX, the Online LaTeX Editor},
url={nl.sharelatex.com/learn/Natbib_citation_styles},
journal={ShareLaTeX, Online LaTeX-verwerker}
}
\end{filecontents*}
\title{For testing}
\begin{document}
Information about natbib in \citeauthor{sharelatex}.
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}