InCollection 系列编辑器

InCollection 系列编辑器

我需要一个“系列编辑器”字段来完成我的记录。我@InCollection在 BibTeX 文件中使用了。

使用“注释”字段,编辑者的姓名放在记录的末尾,我更喜欢传统的呈现方式(编辑者在标题之前)。

我使用plain参考书目风格。


我选择了一个选项。我将使用注释字段。这样做的原因在代码中呈现如下。

\documentclass{article}
\begin{document}       

\bibliographystyle{plain}

\section{Simple Text}

This is a MWE (Minimal Working Example) to show my problem. I want to cite a chapter from a book. Booktitle and chapters title are diferent, but have the same authors. So, I thought that this was the case for a `@InCollection` record in my BibTeXs file. Here is my problematic reference presented in two forms. In `\cite{NedjahAndMourelle2014c}`, I have included the series editor inside the series field. His name is presented in italic. And the other form, `\cite{NedjahAndMourelle2014d}`, where I've opted to use the note field. I am using the plain bibliographystile. I've decided to use the note field based on `\cite[p.765]{MittelbachEtAl2004}: \textit{note: any additional information that can help the reader}`.

\bibliography{myehw}

\end{document}

这是 BibTeX 文件:

@book{MittelbachEtAl2004,
  author = {Mittelbach, F and Goosens, M. and Braams, J. and Carlisle, D. and Rowley, C.},
  title = {The \LaTeX Companion},
  edition = {2\textsuperscript{nd}},
  publisher = {Addison-Wesley},
  year = {2004}
}

@INCOLLECTION{NedjahAndMourelle2014c,
  author = {Nedjah, N. and Mourelle, L.M},
  title = {A Reconfigurable Hardware for Particle Swarm Optimization},
  booktitle = {Hardware for soft computing and soft computing for hardware},
  publisher = {Springer},
  year = {2014},
  volume = {529},
  series = {J. Kacprzyk, series editor, Studies in Computacional Intelligence},
  chapter = {3},
  pages = {28-42},
  address = {Cham}
}

@INCOLLECTION{NedjahAndMourelle2014d,
  author = {Nedjah, N. and Mourelle, L.M},
  title = {A Reconfigurable Hardware for Artificial Neural Neworks},
  booktitle = {Hardware for soft computing and soft computing for hardware},
  publisher = {Springer},
  year = {2014},
  volume = {529},
  series = {Studies in Computacional Intelligence},
  chapter = {5},
  pages = {28-42},
  address = {Cham},
  doi = {10.1007/978-3-319-03110-1},
  note = {J. Kacprzyk, series editor}
}

如果你们当中有人能提出其他想法/决定,我们将非常欢迎。

答案1

我不会费心尝试破解文件plain.bst以 (a) 定义一个名为 (say) 的新字段serieseditor,(b) 定义一个名为 (say) 的函数format.serieseditor,以及 (c) 编辑函数incollectioninbook以及book(可能还有其他几个) 插入指令format.serieseditor。 (您甚至没有指出系列编辑器的名称应如何格式化。) 相反,我会将该信息附加到字段中,series如下所示:

series={Studies in Computational Intelligence \emph{(Janusz Kacprzyk, Series Editor)}},

LaTeX 指令\emph是嵌套的:由于 的内容series是使用 排版的\emph,因此\emph周围的(Janusz Kacprzyk, Series Editor)用来以直立字体形状排版参数。(以下 bib 条目的内容如 Springer 网站上所述。)

最后说一句:我觉得你没有把这篇文章第二作者的姓氏写对——应该是de Macedo Mourelle不是只是“Mourelle”。如果有疑问,请花更多的时间和精力确保所有作者的名字绝对正确,而不是提供有关系列编辑的信息。

在此处输入图片描述

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{zzz.bib}
@incollection{nedjah-demacedomourelle:2014,
  year={2014},
  author={Nedjah, Nadia and de Macedo Mourelle, Luiza},
  title={A Reconfigurable Hardware for Artificial Neural Networks},
  booktitle={Hardware for Soft Computing and Soft Computing  for Hardware},
  series={Studies in Computational Intelligence \emph{(Janusz Kacprzyk, Series Editor)}},
  volume={529},
  doi={10.1007/978-3-319-03110-1_5},
  url={http://dx.doi.org/10.1007/978-3-319-03110-1_5},
  isbn={978-3-319-03109-5},
  publisher={Springer International Publishing},
  chapter = 5,
  pages={59-69},
}
\end{filecontents}
\bibliographystyle{plain}
\begin{document}       
\nocite{*}
\bibliography{zzz}
\end{document}

相关内容