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 樣式參考書目的標準格式,因為它使條目更容易相互區分。但 in 的邊距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 參考書目最初的寫作方式。

相關內容