我有以下 MWE
\documentclass[12pt, A4paper]{article}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{lscape}
\usepackage{rotating}
\usepackage{bm}
\usepackage{epstopdf}
\usepackage[nodayofweek]{datetime}
\usepackage{setspace}
\usepackage[left=2cm, right=2cm, top=2cm,bottom=2cm]{geometry}
\newcommand{\overbar}[1]{\mkern 1.5mu\overline{\mkern-1.5mu#1\mkern-1.5mu}\mkern 1.5mu}
\begin{document}
\section{References}
\begin{enumerate}
\item Autor, David, David Dorn, Gordon Hanson, and Kaveh Majlesi (2016). ``A Note on the Effect of Rising Trade Exposure on the 2016 Presidential Election.'' Mimeo, MIT Department of Economics.
\item Baldwin, Richard (2016). \emph{The Great Convergence. Information Technology and the New Globalization}. Cambridge: Harvard University Press.
\item Baumeister, Roy F. and Mark R. Leary (1995). ``The Need to Belong: Desire for Interpersonal Attachments as a Fundamental Human Motivation''. \emph{Psychological Bulletin}, 117:497-529.
\item Bavetta, Sebastiano and Francesco Guala, (2003). ``Autonomy Freedom and Deliberation''. \emph{Journal of Theoretical Politics}, 15: 423-443.
\end{enumerate}
\end{document}
以上是一篇论文的参考书目。当我使用枚举时,每个参考文献都标记为 1。依此类推。我希望改为使用 [1]。我知道我可以通过使用适当的样式和 bibtex 来达到这个结果。但是,我需要使用枚举。有什么提示吗?提前谢谢
答案1
如果你需要使用enumerate
,你可以使用类似的包enumerate
或者enumitem
操纵enumerate
,例如:
\documentclass[12pt, A4paper]{article}
\usepackage[left=2cm, right=2cm, top=2cm,bottom=2cm]{geometry}
\usepackage{enumitem}
\begin{document}
\section{References}
\begin{enumerate}[{label=[\arabic{*}]}]
\item Autor, David, David Dorn, Gordon Hanson, and Kaveh Majlesi (2016). ``A Note on the Effect of Rising Trade Exposure on the 2016 Presidential Election.'' Mimeo, MIT Department of Economics.
\item Baldwin, Richard (2016). \emph{The Great Convergence. Information Technology and the New Globalization}. Cambridge: Harvard University Press.
\item Baumeister, Roy F. and Mark R. Leary (1995). ``The Need to Belong: Desire for Interpersonal Attachments as a Fundamental Human Motivation''. \emph{Psychological Bulletin}, 117:497-529.
\item Bavetta, Sebastiano and Francesco Guala, (2003). ``Autonomy Freedom and Deliberation''. \emph{Journal of Theoretical Politics}, 15: 423-443.
\end{enumerate}
\end{document}
如果您只想要手工制作的书目,您可以使用thebibliography
:
\documentclass[12pt, A4paper]{article}
\usepackage[left=2cm, right=2cm, top=2cm,bottom=2cm]{geometry}
\begin{document}
\begin{thebibliography}{9}% 9 is a pattern for the item labels
\bibitem{Autor2016} Autor, David, David Dorn, Gordon Hanson, and Kaveh Majlesi (2016). ``A Note on the Effect of Rising Trade Exposure on the 2016 Presidential Election.'' Mimeo, MIT Department of Economics.
\bibitem{Baldwin2016} Baldwin, Richard (2016). \emph{The Great Convergence. Information Technology and the New Globalization}. Cambridge: Harvard University Press.
\bibitem{Baumeister1995} Baumeister, Roy F. and Mark R. Leary (1995). ``The Need to Belong: Desire for Interpersonal Attachments as a Fundamental Human Motivation''. \emph{Psychological Bulletin}, 117:497-529.
\bibitem{Bavetta2003} Bavetta, Sebastiano and Francesco Guala, (2003). ``Autonomy Freedom and Deliberation''. \emph{Journal of Theoretical Politics}, 15: 423-443.
\end{thebibliography}
\end{document}
答案2
对于手动参考书目来说,最简单的方法是使用环境\thebibliography
,这是一个专用的列表环境。如果你只想要参考文献列表,你可以这样做:
\documentclass[12pt, A4paper]{article}
\usepackage[margin=2cm]{geometry}
\begin{document}
\begin{thebibliography}{9}
%
\item Autor, David, David Dorn, Gordon Hanson, and Kaveh Majlesi (2016). ``A Note on the Effect of Rising Trade Exposure on the 2016 Presidential Election.'' Mimeo, MIT Department of Economics.
%
\item Baldwin, Richard (2016). \emph{The Great Convergence. Information Technology and the New Globalization}. Cambridge: Harvard University Press.
%
\item Baumeister, Roy F. and Mark R. Leary (1995). ``The Need to Belong: Desire for Interpersonal Attachments as a Fundamental Human Motivation''. \emph{Psychological Bulletin}, 117:497-529.
%
\item Bavetta, Sebastiano and Francesco Guala, (2003). ``Autonomy Freedom and Deliberation''. \emph{Journal of Theoretical Politics}, 15: 423-443.
%
\end{thebibliography}
\end{document}
环境的参数{9}
用于设置标签的最大宽度。如果标签最多有 2 位数字,则使用{99}
,依此类推。
如果项目必须在文本(命令)中引用,则\cite
必须使用。\bibitem{citation key}
\item