我想引用某位作者的文集多卷书中的某一卷。
收集的作品由编辑编辑。我使用的是.bst
通过以下方式创建的自定义文件
latex makebst
正确的 BibTeX 条目是什么?请注意,我被迫仅使用 BibTeX,不幸的是无法诉诸biblatex
或类似方法。
答案1
考虑使用biblatex
。以下是您想要的类型的条目的样子biblatex
(取自biblatex-examples.bib
):
@book{coleridge,
hyphenation = {british},
author = {Coleridge, Samuel Taylor},
editor = {Coburn, Kathleen and Engell, James and Bate, W. Jackson},
indextitle = {Biographia literaria},
title = {Biographia literaria, or Biographical sketches of my literary life
and opinions},
shorttitle = {Biographia literaria},
maintitle = {The collected works of Samuel Taylor Coleridge},
part = {2},
volume = {7},
series = {Bollingen Series},
number = {75},
publisher = {Routledge and Kegan Paul},
location = {London},
date = {1983},
annotation = {One (partial) volume of a multivolume book. This is a
\texttt{book} entry with a \texttt{volume} and a \texttt{part} field
which explicitly refers to the second (physical) part of the seventh
(logical) volume. Also note the \texttt{series} and \texttt{number}
fields}
}
可编译示例:
\documentclass{article}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{coleridge}
\printbibliography
\end{document}