自定义参考资料页面,附加换行符

自定义参考资料页面,附加换行符

是否有可能将参考文献页面的样式调整为与以下内容相匹配:

[1] The Author, The Author2
    "The title of some kind"
    3rd. edition ISBN: xxxx-xxxx-xxxx-xxxx

答案1

您可以将openbib选项添加到全局选项中,例如

\documentclass[a4paper,openbib]{report}

所有标准类都应该遵循它,但这可能取决于您使用的书目样式。如果这不起作用,则需要更多信息。

下面是一个例子(filecontents*环境只是有一个唯一的输入文件):

\begin{filecontents*}{\jobname.bib}
@Book{knuth:texbook,
  author =       {Donald E. Knuth},
  title =        {The {\TeX}book},
  publisher =    {Addison Wesley},
  address =      {Reading, MA, USA},
  year =         1986,
  ISBN =         "0-201-13447-0",
}
\end{filecontents*}
\documentclass[a4paper,openbib]{report}

\usepackage[numbers]{natbib}
\begin{document}

\nocite{*}
\bibliographystyle{plainnat}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

答案2

我猜你需要创建自己的 bibtex 样式。这通常不是一件容易的事,但你可以使用 GUI 工具轻松完成此操作,如下所述:http://bib-it.sourceforge.net/help/generateBibstyle.php

相关内容