我在项目中使用 apacite 来引用我的资料来源。我也在使用 BibDesk。
我的源代码在 BibDesk 中。当我在 Latex 中运行,然后在 Bibtex 中运行,然后再次在 latex 中运行,一切都按计划进行,只是我文本中的引用仍然保留(?,?)。这是我在文本中引用它的方式:
\cite{ref:mas}
\cleardoublepage
% Bibliography section
\bibliographystyle{apacite}
\bibliography{./References/thesisref}
答案1
负载容量后超链接:
\documentclass[11pt]{article}
\usepackage{hyperref}
\usepackage{apacite}
\begin{document}
\cite{ref:mas}
\bibliographystyle{apacite}
\bibliography{test}
\end{document}