我希望在撰写论文时有一个引用命令来引用并仅打印我的资料来源的作者姓氏biblatex-chicago
(其中也包括超链接)。
我应该怎么做才能实现这个目标?
例如,在我的 .bib 文件中给出以下引用,
@BOOK{GThomson,
title = {Rethinking Secondary Education: A Human-Centred Approach},
publisher = {Pearson Education},
year = {2012},
author = {{Gill, Scherto} and {Thomson, Garrett}},
address = {Great Britain},
edition = {1st}
}
我怎样才能在论文中将作者引用为“Gill 和 Thomson”而不是“Gill, Scherto 和 Thomson, Garrett”(希望同时添加hyperlink
)?
答案1
顺序没有错;它符合芝加哥风格。如果你想改变它,\DeclareNameAlias{sortname}{last-first}
在文档序言或 biblatex 配置文件中使用:。要引用作者姓氏,请使用\citeauthor{GThomson}
。要添加超链接,重新定义\citeauthor
。