Bibliographie mit Aufzählung

Bibliographie mit Aufzählung

Ich habe folgende 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}

Das Obige ist eine Bibliographie für einen Aufsatz. Wenn ich enumerate verwende, wird jede Referenz als 1 markiert und so weiter. Ich hätte stattdessen gerne [1]. Ich weiß, dass ich dieses Ergebnis erreichen kann, wenn ich einen geeigneten Stil und Bibtex verwende. Allerdings muss ich enumerate verwenden. Irgendwelche Tipps dazu? Vielen Dank im Voraus

Antwort1

Wenn dumüssen verwendenenumeratekönnen Sie ein Paket wie verwendenenumerateoderenumitemmanipulieren enumerate, zB:

\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}

Lösung aufzählen

Wenn Sie nur eine handgefertigte Bibliographie möchten, können Sie Folgendes verwenden 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}

Die Bibliographie-Lösung

Antwort2

Für eine manuelle Bibliographie ist es am einfachsten, die \thebibliographyUmgebung zu verwenden, bei der es sich um eine dedizierte Listenumgebung handelt. Wenn Sie nur die Liste der Referenzen möchten, können Sie dies folgendermaßen tun:

\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} 

Bildbeschreibung hier eingeben

Das Argument {9}der Umgebung wird verwendet, um die maximale Breite der Beschriftungen festzulegen. Wenn die Beschriftungen bis zu 2 Ziffern haben, verwenden Sie {99}usw.

Wenn die Elemente im Text ( \citeBefehl) referenzierbar sein müssen, müssen Sie \bibitem{citation key}anstelle von verwenden \item.

verwandte Informationen