Flushleft 书目 APA 格式

Flushleft 书目 APA 格式

我需要将参考书目中的所有行都向左对齐。以下是代码

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

将使条目左对齐。

答案2

这个问题的答案是

\bibliographystyle{apacite} 
\begin{FlushLeft}
\setlength{\bibindent}{0pt}
\bibliography{bib}{}
\end{FlushLeft}

如果我使用,\setlength{\bibleftmargin}{0pt}则每个参考文献第一行的左边距将设为零,看起来像 在此处输入图片描述

当我使用 bibindent 命令时,它会对齐。但是,正如之前所写,清晰度会降低,而且确实看起来不美观。所以我坚持使用 APA 中最初建议的样式。@Alan Munn 我赞成你的回答,因为你告诉我 APA 书目最初就是这么写的。

相关内容