不使用 BibTeX 的参考书目样式(作者、年份)(不使用 \bibliography{} 但使用 \begin{thebibliography} 和 \bibitem)

不使用 BibTeX 的参考书目样式(作者、年份)(不使用 \bibliography{} 但使用 \begin{thebibliography} 和 \bibitem)

LaTeX 可以创建 [数字] 格式的引文。但是,我需要格式(作者,年份)。并且具有与原始数字格式相同的交叉引用功能。同时,我想只使用 \begin{thebibliography} 命令,即不使用 BibTeX 和其他 .bib 文件,而只是通过 \bibitem 手动编写文献。可以吗?

谢谢您的回答,如果这个问题已经在某处得到解答,我很抱歉,因为我没有找到。

答案1

简短回答:是的。

较长的回答是:绝对如此。

更长的答案:尝试以下简约文档。观察使用可选参数\bibitem存储引文标注字符串和出版年份。编译文档两次以正确生成引文标注。

当然,你仍将负责一切与参考书目相关:书目条目的顺序、书目条目的格式等等。

\documentclass{article}
\usepackage[authoryear,round]{natbib}

\begin{document}
\citet{jms:3001}, \citep{abcd:2005}

\begin{thebibliography}{2}

% Important: leave no space between citation callout 
% string and (year) in the optional argument.
\bibitem[Andersen et~al.(2005)]{abcd:2005} Andersen, Torben G., 
   Tim Bollerslev, Peter Christoffersen, and Francis X. Diebold 
   (2005), ``Volatility Forecasting,'' Manuscript.

\bibitem[Jones et~al.(3001)]{jms:3001} Jones, Hillary, Maria 
   Miller, and Sandra Smith, ``Thoughts,'' \emph{Circularity 
   Today}, 3(2) 456--789.
    
\end{thebibliography}

\end{document}

相关内容