
Necesito que toda la línea de la bibliografía esté al ras a la izquierda. El siguiente es el código
\documentclass[12pt,oneside]{report}
\usepackage{ragged2e}
\usepackage{apacite}
\usepackage{breakcites}
\usepackage[byname]{smartref}
\usepackage[utf8]{inputenc}
\begin{document}
\cite{Gourvenec2003}
\cite{gourvenec2004}
\cite{gourvenec2008}
\cite{Gourvenec2011}
\bibliographystyle{apacite}
\begin{FlushLeft}
\bibliography{bib}{}
\end{FlushLeft}
\end{document}
Mibaberoel archivo contiene
@article{Gourvenec2003,
doi = {10.1680/geot.2003.53.6.575},
year = {2003},
month = {Jan},
publisher = {Thomas Telford Ltd.},
volume = {53},
number = {6},
pages = {575--586},
author = {S. Gourvenec and M. Randolph},
title = {Effect of strength non-homogeneity on the shape of failure envelopes for combined loading of strip and circular foundations on clay},
journal = {G{\'{e}}otechnique}
}
@article{gourvenec2008,
doi = {10.1680/geot.2008.58.3.177},
year = {2008},
month = {Jan},
publisher = {Thomas Telford Ltd.},
volume = {58},
number = {3},
pages = {177--185},
author = {S. Gourvenec},
title = {Effect of embedment on the undrained capacity of shallow foundations under general loading},
journal = {G{\'{e}}otechnique}
}
@inproceedings{gourvenec2004,
title={Bearing capacity under combined loading--a study of the effect of shear strength heterogeneity},
author={Gourvenec, Susan},
booktitle={Proceedings of 9th Australia New Zealand Conference on Geomechanics, Auckland,New Zealand},
pages={527--533},
date = {8--11},
month = {Feb},
year={2004}
}
@article{Gourvenec2011,
doi = {10.1680/geolett.11.00026},
year = {2011},
month = {Oct},
publisher = {Thomas Telford Ltd.},
volume = {1},
number = {October-December},
pages = {101--108},
author = {Gourvenec, Susan and Mana, D. S. K},
title = {Undrained vertical bearing capacity factors for shallow foundations},
journal = {G{\'{e}}otechnique Letters}
}
La segunda línea y las siguientes después de cada referencia no están al ras a la izquierda. ¿Cómo puedo hacer esto? No he leído específicamente las pautas de la APA sobre esto, pero hacerlo al ras hacia la izquierda parece más estético.
Respuesta1
Esta es la forma estándar en que se formatean las bibliografías de estilo APA, ya que hace que las entradas sean más fáciles de distinguir entre sí. Pero el margen apacite
está controlado por la longitud \bibleftmargin
(consulte la página 35 de la documentación). Debe cambiar tanto el margen izquierdo como \bibindent
:
\setlength{\bibleftmargin}{0pt}
\setlenght{\bibindent}{0pt}
hará que las entradas queden al ras a la izquierda.
Respuesta2
La respuesta a la pregunta es
\bibliographystyle{apacite}
\begin{FlushLeft}
\setlength{\bibindent}{0pt}
\bibliography{bib}{}
\end{FlushLeft}
Si lo uso \setlength{\bibleftmargin}{0pt}
, el margen izquierdo en la primera línea de cada una de las referencias se hace cero y se ve así
Cuando uso el comando bibindent, se justifica. Sin embargo, como se escribió anteriormente, la claridad se pierde y, de hecho, no parece estético. Así que me atengo al estilo original sugerido en APA. @Alan Munn Estoy votando a favor de tu respuesta ya que me dijiste que así es como se escribe originalmente la bibliografía APA.