I have the following problem. A journal ask me to do the following with the references:
Use hanging indents for citations (i.e., the first line of the citation should be flush with the left margin and all other lines should be indented from the left margin by a set amount). Citations should be single-spaced with extra space between citations.
To do so, I am using the thebibliography environment. I fix the problem of the brackets (given that I do not want to appear in the references), but I do not know how I can manipulate \bibitem to create the indents for the second line of each citation of the references.
Any suggestion would be really welcome!!
This is the structure of the file.
Code: Select all
\documentclass[12pt]{article}
% No brackets for the references
\makeatletter
\renewcommand\@biblabel[1]{#1}
\makeatother
\begin{document}
\begin{thebibliography}{99}
\bibitem{} Item
\end{thebibliography}
\end{document}
A.