[Tex/LaTex] references section – no indent in first line + formatting

cross-referencingindentation

hope you can help me out with this one. here's the issue: I'm trying to create the references section in my paper. I already have a long list with the authors. But the problem is that the first line of the paragraph is indent, and the rest is no indent. However, as it is the reference section, I need the first line to be no indent and the rest of the paragraph indent. And all that should be done without using an outside bib tex file. Just plain style in the text.

I copy the header of my latex file:

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

I really hope you can help me out hereby!!! thank you guys!!

cheers

Best Answer

I suggest you use the hangingparas environment of the hanging package.

enter image description here

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