希望你能帮我解决这个问题。问题是:我正在尝试在我的论文中创建参考文献部分。我已经有了一份很长的作者名单。但问题是段落的第一行是缩进的,其余部分没有缩进。然而,因为它是参考文献部分,我需要第一行不缩进,段落的其余部分缩进。所有这些都应该在不使用外部 bib tex 文件的情况下完成。只需在文本中使用普通样式即可。
我复制了我的乳胶文件的标题:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{natbib}
\usepackage{lmodern}
\usepackage{comment}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{setspace}
\usepackage[titletoc]{appendix}
\usepackage{indentfirst}
\usepackage[pdftex]{xcolor,graphicx}
\usepackage{epstopdf}
\usepackage{pdflscape}
\usepackage{wrapfig}
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\usepackage{color}
\newcommand{\Lagr}{\mathcal{L}}
\usepackage{footnote}
\usepackage{threeparttable}
\usepackage{subfig}
\usepackage{float}
\usepackage[font=small]{caption}
\usepackage{geometry}
\usepackage{eucal}
%\usepackage[colorlinks = true,
% linkcolor = blue,
% urlcolor = black,
% citecolor = blue,
% anchorcolor = black]{hyperref}
\geometry{left=1.0in,right=1.0in,top=1.0in,bottom=1.0in}
\onehalfspacing
And an example of my reference section:
\section*{References}
\label{References}
Aguiar, A., McDougall, R., \& Narayanan, B. (2012). Global Trade, Assistance, and Production: The GTAP 8 Data Base. Center for Global Trade Analysis, Purdue University.
\vspace{0.2cm}
APEC (1997). The Impact of Trade Liberalization in APEC, Economic Committee, Asia Pacific Economic Cooperation, Singapore.
\vspace{0.2cm}
我真的希望你能帮助我!谢谢大家!
干杯
答案1
我建议你使用包hangingparas
的环境hanging
。
\documentclass[12pt,a4paper]{article}
%%% I've commented out the packages that have no direct bearing on this question
\usepackage[utf8]{inputenc}
%\usepackage{amsmath}
%\usepackage{amsfonts}
%\usepackage{amssymb}
%\usepackage[numbers]{natbib}
%\usepackage{lmodern}
%\usepackage{comment}
\usepackage[T1]{fontenc}
%\usepackage{textcomp}
\usepackage{setspace}
\onehalfspacing
%\usepackage[titletoc]{appendix}
\usepackage{indentfirst}
%\usepackage[pdftex]{xcolor,graphicx}
%\usepackage{epstopdf}
%\usepackage{pdflscape}
%\usepackage{wrapfig}
%\usepackage{array}
%\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
%\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
%\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
%\usepackage{color}
%\newcommand{\Lagr}{\mathcal{L}}
%\usepackage{footnote}
%\usepackage{threeparttable}
%\usepackage{subfig}
%\usepackage{float}
%\usepackage[font=small]{caption}
\usepackage{geometry}
\geometry{margin=1in}
%\usepackage{eucal}
%\usepackage[colorlinks = true,
% linkcolor = blue,
% urlcolor = black,
% citecolor = blue,
% anchorcolor = black]{hyperref}
\usepackage{hanging}
\begin{document}
\section*{References}
\begin{hangparas}{2em}{1} % first argument determines amount of haning indentation
Aguiar, A., McDougall, R., \& Narayanan, B. (2012). Global Trade, Assistance, and Production: The GTAP 8 Data Base. Center for Global Trade Analysis, Purdue University.
APEC (1997). The Impact of Trade Liberalization in APEC, Economic Committee, Asia Pacific Economic Cooperation, Singapore.
\end{hangparas}
\end{document}
答案2
任何对 LaTeX 并不陌生的人都可能会谴责我的回答是令人厌恶的黑客行为。我真正应该做的是向您介绍一个很好的资源,以便您了解 LaTeX 为您提供的一些工具,以便更轻松地管理您的参考文献列表。但是,我不确定您的用例需要多少参考文献。例如,您是否将参考文献列表简单地视为读者可能希望查阅的额外阅读材料,或者您是否曾在文本中引用参考文献,例如“贸易一直在迅速扩大,请参阅 APEC'97”?如果您曾经这样做,LaTeX 具有使其更容易的功能。我下面给出的答案假设您没有这样做。
\begin{thebibliography}{} \item[~~~] Aguiar...University. \item[~~~] APEC (1997). The Impact of Trade... \end{thebibliography}