參考書目與枚舉

參考書目與枚舉

我有以下 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}

以上是一篇論文的參考書目。當我使用 enumerate 時,每個引用都標記為 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

相關內容