如何自定义参考书目?

如何自定义参考书目?

我有以下使用 pdfLaTeX 编写的最小示例。

\documentclass{article}

\begin{document}

The reference is \cite{test1}.

\begin{thebibliography}{999}
\bibitem{test1} text1
\end{thebibliography}

\end{document}

现在我想显示“text1”而不是“1“在 pdf 中。我该如何实现这一点?

此外,我不想有编号(“1,..”)在 pdf 的参考书目章节中。有什么命令吗?

在此处输入图片描述

答案1

在我看来,你正在自己创建参考书目,一次一个\bibitem没有BibTeX 或 biblatex。

如果这个印象是正确的,你需要提供

  • 书目条目的所有格式化信息引文关键词

  • 中间的方括号内为引用相关信息,\bibitem以及引用关键字。(如果方括号内没有内容,LaTeX 将采用默认的,即数字形式的引用标注样式。)

如果按照我的建议,您也加载该natbib包,则该命令\citet{test1}将产生标注Carlson (2015)

在此处输入图片描述

\documentclass{article}
\usepackage{natbib}  % a citation management package
\begin{document}
These claims are due to \citet{test1}.
\begin{thebibliography}{999}
\bibitem[Carlson(2015)]{test1} Carlson, C., 2015, ``Some title,'' \emph{Random Thoughts Journal} 1, pp. 1--100.
\end{thebibliography}
\end{document} 

相关内容