我需要将参考书目中的所有行都向左对齐。以下是代码
\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}
我的围兜文件包含
@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}
}
每个参考文献后的第二行及以后的行均未左对齐。我该怎么做?我没有专门阅读过有关此问题的 APA 指南,但使其左对齐看起来更美观。
答案1
这是 APA 样式书目的标准格式,因为它使条目更容易区分。但页边距apacite
由长度控制\bibleftmargin
(请参阅文档第 35 页)。您需要同时更改左边距和\bibindent
:
\setlength{\bibleftmargin}{0pt}
\setlenght{\bibindent}{0pt}
将使条目左对齐。