열거형 참고문헌

열거형 참고문헌

나는 다음과 같은 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]을 갖고 싶습니다. 적절한 스타일과 턱받이를 사용하면 그러한 결과를 얻을 수 있다는 것을 알고 있습니다. 그러나 열거형을 사용해야 합니다. 어떤 힌트라도 있나요? 미리 감사드립니다

답변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

관련 정보