强制在 LaTeX 参考书目中换行(使用 makebst 生成的样式文件)

强制在 LaTeX 参考书目中换行(使用 makebst 生成的样式文件)

我想编辑我的.bst文件,以便参考书目输出

  1. 每个作者区块后都有一个换行符(所有作者)
  2. 换行符无左缩进或右缩进。

因此,

Mathieu, JE、TS Heffner、GF G​​oodwin、E. Salas 和 JA Cannon-Bowers。2006 年“共享心智模型对团队流程和绩效的影响”。《应用心理学杂志》,26(3):123–255。

我想

Mathieu, JE、TS Heffner、GF G​​oodwin、E. Salas 和 JA Cannon-Bowers。2006
年“共享心智模型对团队流程和绩效的影响”。《应用心理学杂志》,26(3):123–255。

.bst我正在使用的文件是这里

更好的是:如果您知道《行政科学季刊》的官方样式文件,请告诉我。到目前为止,我还没有找到。

答案1

一个建议biblatex

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{test,
author={Mathieu, J. E. and Heffner, T. S.  and Goodwin, G. F.  and Salas, E. and  Cannon-Bowers, J. A.},
journaltitle={The influence of shared mental models on team process and performance},
year={2006},
volume={26},
number={3},
pages={123–255}
}
\end{filecontents*}
\usepackage[minnames=10,maxnames=20]{biblatex}
%\renewcommand*{\labelnamepunct}{\space !!1!}
\renewcommand*{\newunitpunct}{\newline}
\addbibresource{\jobname.bib}

\begin{document}
\section{foo}
\cite{test}
\printbibliography
\end{document}

在此处输入图片描述

相关内容