考虑一下我有这个 bibtex:
@inproceedings{Ko:2011:SIW:2049536.2049545,
author = {Ko, Eunjeong and Ju, Jin Sun and Kim, Eun Yi},
title = {Situation-based indoor wayfinding system for the visually impaired},
booktitle = {The proceedings of the 13th international ACM SIGACCESS conference on Computers and accessibility},
series = {ASSETS '11},
year = {2011},
isbn = {978-1-4503-0920-2},
location = {Dundee, Scotland, UK},
pages = {35--42},
numpages = {8},
url = {http://doi.acm.org/10.1145/2049536.2049545},
doi = {10.1145/2049536.2049545},
acmid = {2049545},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {2d color code, situation awareness, speeded-up robust feature (surf), visually impaired people, vocabulary tree., wayfinding system},
}
(摘自此处:http://dl.acm.org/citation.cfm?id=2049536.2049545&coll=DL&dl=ACM&CFID=343070755&CFTOKEN=95221181)
我可以简化引用的名称吗?像这样:
@inproceedings{Ko11, % Ko11 instead of Ko:2011:SIW:2049536.2049545
....
那么我可以简单地做吗\cite{Ko11}
?
答案1
文件中条目的一般格式bibtex
为:
@ENTRYTYPE{refkey,
....
}
其中...
包括关键字分配,例如author={Author, A. N.},
提供条目的实际数据。
是refkey
用于识别文件中条目的文本字符串bib
。它正是\cite{refkey}
在 LaTeX 文件中通过 引用条目时要使用的字符串。此refkey
字符串可能由 (ascii) 字母、数字和一些标点符号(如 和 )组成:
。-
它不应包含,
。
在这些限制的前提下,您可以选择任何您想要的字符串。做出一个令人难忘的选择很有用。这样您的 LaTeX 源将更容易阅读。
大型数据库通常会提供自动生成的非用户友好型引用密钥。在个人数据库中包含此类条目时,可以且可能应该更改这些引用密钥。
最后,您建议将您的条目更改为
@inproceedings{Ko11,
author = {Ko, Eunjeong and Ju, Jin Sun and Kim, Eun Yi},
title = {Situation-based indoor wayfinding system for the visually impaired},
booktitle = {The proceedings of the 13th international ACM SIGACCESS conference on Computers and accessibility},
series = {ASSETS '11},
year = {2011},
isbn = {978-1-4503-0920-2},
location = {Dundee, Scotland, UK},
pages = {35--42},
numpages = {8},
url = {http://doi.acm.org/10.1145/2049536.2049545},
doi = {10.1145/2049536.2049545},
acmid = {2049545},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {2d color code, situation awareness, speeded-up robust feature (surf), visually impaired people, vocabulary tree., wayfinding system},
}
并引用
\cite{Ko11}
是一个好主意,值得鼓励。
我个人使用以下形式的 refkeys
Ko-JK:indoor
第一个作者的姓氏后面跟着-
其他作者的姓氏首字母(如果不是太多的话),后面跟着:
一个或两个来自标题的相关关键词(-
如果需要,用 隔开)。这通常足以让我想起所引用的文章或书籍。