我有一些没有作者的参考文献(例如网站),并使用关键字段来提供排序的可能性。奇怪的是,关键字段在 3 个字符后被截断,在 cite 命令(我使用作者年份样式)和参考书目中都是如此。这看起来很糟糕,有人知道如何更改它吗?
我正在使用 natbib。
编辑:
(抱歉回复晚了,邮件通知好像不起作用……)
我不得不重新表述我的问题,见下文。
首先,这是一个最小的例子:
\documentclass{scrreprt}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{natbib}
\begin{document}
%\bibliographystyle{dinat}
\bibliographystyle{agsm}
An eample is given. \citep{example2013title}
\bibliography{literaturtest}
\end{document}
@misc{example2013title,
Key = {Example Website},
Lastchecked = {2013-6-02},
Publisher = {Website editors},
Title = {Title of the webpage},
Url = {http://example.org},
Year = {2013}
}
我发现问题是由于使用书目样式引起的艾格森, 和迪纳特关键字段没有被截断(我之前运行 LaTeX 的次数肯定比必要的次数少,才没有注意到这一点,抱歉!)。不幸的是迪纳特产生德语输出(例如“ua”而不是“et al.”),即使我为 babel 包指定了英语。所以我需要重新表述我的问题:
如何使用 natbib 包在不剪切关键字段的情况下获取英文作者年份引用?
回答我自己的问题:我发现阿帕莱克风格做我想要做的事。
但现在 URL 字段不再显示。我发现了一个apalike-url.bst网络上的样式应该添加 url 字段。但我想知道是否没有符合要求的“默认”bib 样式……?
答案1
我不会直接回答你的问题,但通常网页上的文章或网页本身也有一个作者或者至少编辑。以下是引用维基百科文章的方法:
- 打开任意维基百科文章
左边有一个工具箱- 点击引用此页面. 在这个例子中,这导致这:
- 页面名称:引文
- 作者:维基百科贡献者
- 出版商:维基百科,自由的百科全书。
- 最后修订日期:2013 年 6 月 27 日 11:49 UTC
- 检索日期:2013 年 7 月 3 日 19:48 UTC
- 永久链接:http://en.wikipedia.org/w/index.php?title=Quotation&oldid=561811291
- 主要贡献者:修订历史统计
- 页面版本 ID:561811291
我突出显示重要的部分。
您的参赛作品可能如下所示BibTeX
:
@misc{wiki:Quotation ,
author = {Wikipedia},
title = {Quotation --- Wikipedia, The Free Encyclopedia},
year = {2013},
url = {http://en.wikipedia.org/w/index.php?title=Quotation&oldid=561811291},
note = {Online; accessed 3-July-2013}
}
当你使用时Biblatex
我会使用类似的东西
@ONLINE{wiki:Quotation,
author = {Wikipedia},
title = {Quotation --- Wikipedia, The Free Encyclopedia},
year = {2013},
url = {http://en.wikipedia.org/w/index.php?title=Quotation&oldid=561811291},
urldate = {2013-07-03},
}