[Tex/LaTex] How to remove hanging indentation from bibliographic entries

bibliographiesbibtex

I would like to use a bibliography style that aligns the text of the second and later lines of each reference entry with the text of the first. I have been using \bibliographystyle{apalike} but, as can be seen from in image below, the text of each line is not aligned. Which styles will achieve this? Thanks…

enter image description here

Best Answer

To remove the hanging indentation, you needn't change bibliography styles. Just set the \bibhang length parameter to zero.

Assuming the Alziary et al entry is in a file called adk.bib, running latex, bibtex, and latex twice more on the MWE below results in the following output:

enter image description here

\documentclass{article}
\usepackage{natbib}
\bibliographystyle{apalike}
\setlength{\bibhang}{0pt}
\begin{document}
\nocite{*}
\bibliography{adk}
\end{document}

Remark: You should encase the words "P.D.E.", "Asian", and "Analytical" in the title field in curly braces to prevent them from being converted to lowercase.

Related Question