手工悬挂缩进以供参考

手工悬挂缩进以供参考

我使用文档类 article 和 natbib 包以及 apacite 用 LaTeX 写了一篇文章。但是,出版商有太多不合时宜的要求,所以我认为最简单的解决方案就是手写参考书目,然后使用 PDF 编辑器删除 LaTeX 生成的参考书目页面。我知道这听起来很奇怪,但我还不够老练,无法继续修改​​ apacite 包。

因此,我从原始参考列表中复制并粘贴了它,然后将其粘贴为纯文本。完美吧?不。问题是,文本的第二行不会自动缩进,而第一行会。换句话说,我想手动获得这样的输出:

在此处输入图片描述

是否有一种技术或工具可以帮助我实现这种格式,但又不会弄乱我完美组织的文本内部引用?

答案1

您可能\hangindent想要\noindent

平均能量损失

\documentclass{article}
\def\mybibitem{%
  \vskip\baselineskip% % space above
  \noindent%           % suppress regular indent
  \hangindent=1.5em%   % indent same amount as `quotation` environment
}
\begin{document}
\mybibitem Ahmad, S. \& Tresp, V. (1993), Some solutions to the missing feature problem in vision ...
\mybibitem Berthold, M. R. (1994), A time delay radial basis function for phenome recognition ...
\end{document}

输出

输出

|在旁边为什么出版商要求你格式化参考文献?如果你提供了 bib 文件,剩下的就是他们的工作了。

相关内容