我在引用 LaTeX 文档时遇到问题。正确的引用应该是:
Harvest Choice,2006 年。“坦桑尼亚 2002/2003 年全国农业抽样普查:小农农业,第二卷:作物部门 - 国家报告。”国际粮食政策研究所,华盛顿特区,明尼苏达大学,明尼苏达州圣保罗。可在线访问http://harvestchoice.org/publications/tanzania-national-sample-census-agriculture-20022003-small-holder-agriculture-volume-ii。
我尝试过很多组合,我能想到的最好的组合是在 bibtex 上使用以下组合:
@TechReport{TN,
author = {Harvest Choice},
title = {Tanzania National Sample Census of Agriculture 2002/2003: Small Holder Agriculture, Volume 2: Crop Sector National Report},
institution = {International Food Policy Research Institute, Washington, DC., and University of Minnesota, St. Paul, MN},
year = {2006}
}
然而,这会产生 3 个问题:
它无法引用“Harvest Choice”,我只有:“Harvest, C”,就好像它是一个作者
我不知道如何插入网页链接。
参考文献指出这是一份技术报告,但事实并非如此
答案1
我最近也遇到了同样的问题,所以也许这有帮助。但通常情况下,这取决于你的参考书目风格
1 - 使用双括号 author = {{Harvest Choice}}
避免通过 bibtex 重新格式化内容
2 - 我使用了该url = {}
字段和其中的 latex url 命令:url = {\url{yadayada}}
3 - 您可以尝试其他书目样式,或者编辑您当前使用的 .bst 文件。但首先,您可以尝试@Misc
具有相同字段的 bibtex 条目类型,也许它会产生所需的结果。
答案2
HarvestChoice 组织建议对该出版物进行如下引用:
HarvestChoice,2006 年。“[坦桑尼亚] 2002/2003 年全国农业抽样普查:小农农业,第二卷:作物部门 - 国家报告。”国际粮食政策研究所,华盛顿特区,明尼苏达大学,明尼苏达州圣保罗。可在线访问http://harvestchoice.org/publications/tanzania-national-sample-census-agriculture-20022003-small-holder-agriculture-volume-ii。
观察没有空间在作者姓名的两个部分之间。还请注意“坦桑尼亚”一词周围的方括号。
将其翻译成 bib 条目,您可能需要使用 catch-all@misc
条目类型:
@misc{hc:2006,
author = "HarvestChoice",
title = "{[Tanzania] National Sample Census of
Agriculture 2002\slash 2003: Small Holder
Agriculture, Volume~II: Crop Sector~--
National Report}",
year = 2006,
howpublished = "International Food Policy Research Institute,
Washington, DC., and University of Minnesota,
St.~Paul, MN",
url = "http://harvestchoice.org/publications/tanzania-national-sample-census-agriculture-20022003-small-holder-agriculture-volume-ii",
}
注意在字段周围插入一对匹配的花括号title
。这可以防止该字段中的单词转换为小写。还请注意\slash
in的使用2002\slash 2003
;这告知 LaTeX 允许在斜线后插入换行符。
2019 年 6 月更新:在过去的一年左右,该xurl
软件包已经发布。该软件包允许在 URL 字符串中任意换行,因此比旧url
软件包更灵活(从印刷上来说)。
假设您使用plainnat
书目样式和包natbib
、xurl
和hyperref
,您可能会得到以下 MWE:
\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{hc:2006,
author = "HarvestChoice",
title = "{[Tanzania] National Sample Census of
Agriculture 2002\slash 2003: Small Holder
Agriculture, Volume~II: Crop Sector~--
National Report}",
year = 2006,
howpublished = "International Food Policy Research Institute,
Washington, DC., and University of Minnesota,
St.~Paul, MN",
url = "http://harvestchoice.org/publications/tanzania-national-sample-census-agriculture-20022003-small-holder-agriculture-volume-ii",
}
\end{filecontents}
\documentclass{article}
\usepackage[authoryear,round]{natbib}
\bibliographystyle{plainnat}
\usepackage{xurl} % 'xurl' generalizes the 'url' package
\usepackage[colorlinks=true,allcolors=blue]{hyperref}
\begin{document}
\noindent
\citet{hc:2006}
\bibliography{\jobname}
\end{document}