未编号的参考书目

未编号的参考书目

我无法使用 bibtex 和为此目的下载的芝加哥样式对我的参考书目进行编号。编号问题在实施芝加哥样式插件之前就存在,所以我怀疑这不是问题所在。我查看了其他示例,其中许多示例似乎是一个选项优先于另一个选项或一个单独的包进行修改。我似乎无法弄清楚这一点。请帮忙。(此外,括号默认不是圆形的,我不得不强制选择,也许这是一个线索?)


\documentclass[11pt]{article}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsmath}   % improved mathematical formulas
\usepackage[round]{natbib}    % for citations (Endnote)
\usepackage{rotating}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{verbatim}
\usepackage{multicol}

\setcounter{MaxMatrixCols}{10}
\DeclareMathOperator*{\plim}{plim}
\addtolength{\voffset}{-1cm} \addtolength{\hoffset}{-1cm}
\addtolength{\textwidth}{2.5cm} \addtolength{\textheight}{3cm}
\renewcommand{\baselinestretch}{1.5}

\begin{document}
\bibliographystyle{chicago}

\section{}
etc...
\section{}
text

\clearpage

\bibliography{terrvar}  % terrvar.bib is the library

% followed by tables and figures
\end{document}

答案1

由于您正在使用article文档类,您可以通过在序言中添加以下说明来获得编号参考部分:

\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*}{\section}{}{}

如果您正在使用reportbook文档类(或基于这两个类之一的文档类),则需要\section*\chapter*\section替换\chapter

相关内容