我正在尝试使用 APA 样式 (apacite) 和 bibtex 来制作参考文献。我想添加的用户指南不是计算软件手册。它是流量传感器手册。所以我想从参考文献列表中删除 [计算软件手册]。但我不知道如何删除它。有没有什么方法可以编辑或删除它?
这是参考文件。
@manual{flowmeter,
author = {{OMEGA Engineering}},
title = {User's {G}uide for {FLR}1000/1000{BR}/1000{ST} {S}eries {F}low
{S}ensors \& {M}eters For {L}iquids},
year={2005},
organization={OMEGA Engineering inc.},
url={https://assets.omega.com/manuals/M4574.pdf}
答案1
对于 类型的条目@manual
,apacite
引文管理包和相关参考书目样式允许您指定一个名为 的额外字段type
。如果type
未明确指定该字段,则其默认值为(如您所见)“计算机软件手册”。如果您只想显示“手册”(在方括号中),请添加字段
type={Manual},
apacite
进入该条目。有关详细信息,请参阅软件包用户指南第 30 页。
\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@manual{flowmeter,
author = {{OMEGA Engineering}},
title = {{User's Guide for FLR1000\slash 1000BR\slash
1000ST Series Flow Sensors \& Meters for
Liquids}},
year = {2005},
organization={OMEGA Engineering inc.},
url = {https://assets.omega.com/manuals/M4574.pdf},
type = {Manual},
}
\end{filecontents}
\documentclass{article}
\usepackage{apacite}
\bibliographystyle{apacite}
\begin{document}
\cite{flowmeter}
\bibliography{mybib}
\end{document}