私は、文書の末尾にある完全な参考文献に加えて、脚注引用に参照を含めるために、biblatex と verbose-inote スタイルを使用しています。
脚注の引用を短縮して著者の姓のみを含め、文書の最後にある参考文献に完全な引用(名と姓)を印刷したいと思います。
私はこの質問に遭遇しました(Biblatex: \footcite では姓のみ)、脚注引用コマンドを変更して姓のみを含める方法については、こちらを参照してください。ただし、これにより、参考文献のエントリも姓のみを含むように変更されます。
私のMWEは次のとおりです:
\begin{filecontents}{bib.bib}
@article{Arzheimer.2006,
author = {Arzheimer, Kai and Carter, Elisabeth},
year = {2006},
title = {{P}olitical {O}pportunity {S}tructures and {R}ight-{W}ing {E}xtremist {P}arty {S}uccess},
pages = {419--443},
volume = {45},
journaltitle = {European Journal of Political Research}, shortjournal = {EJPR},
number = {3},
shorttitle = {Political Opportunity Structures}
}
\end{filecontents}
\documentclass[11pt]{scrartcl}
\usepackage[backend=bibtex, citestyle=verbose-inote, bibstyle=authortitle, autocite=footnote, isbn=false, doi=false, citepages=suppress, parentracker=false, dashed=false, sorting=nyt, maxcitenames=2, maxbibnames=5]{biblatex}
\usepackage[style=british]{csquotes}
% Commas as separators
\renewcommand*{\newunitpunct}{\addcomma\space}
% NO `in:' BEFORE JOURNALTITLE
\renewbibmacro{in:}{}
\usepackage{xpatch}
% Comma before issue + date
\xpatchbibmacro{journal+issuetitle}{%
\setunit{\addspace}%
\usebibmacro{issue+date}}%
{\setunit{\addcomma\addspace}%
\usebibmacro{issue+date}}%
{}{}
% No dot before number of articles
\xpatchbibmacro{volume+number+eid}{%
\setunit*{\adddot}%
}{%
}{}{}
% Number of articles in parentheses
\DeclareFieldFormat[article]{number}{\mkbibparens{#1}}
% Comma before and after journal volume
\renewbibmacro*{volume+number+eid}{%
\setunit*{\addcomma\space}% NEW
\printfield{volume}%
% \setunit*{\adddot}% DELETED
%\setunit*{\addcomma\space}% NEW
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
% Comma before date; date not in parentheses
\renewbibmacro*{issue+date}{%
\setunit*{\addcomma\space}% NEW
% \printtext[parens]{% DELETED
\iffieldundef{issue}
{\usebibmacro{date}}
{\printfield{issue}%
\setunit*{\addspace}%
% \usebibmacro{date}}}% DELETED
\usebibmacro{date}}% NEW
\newunit}
%Include shortjournal, journal abbreviation
\renewbibmacro*{journal}{%
\ifboolexpr{ test {\ifcitation} and not test {\iffieldundef{shortjournal}} }
{\printfield[journaltitle]{shortjournal}}
{\iffieldundef{journaltitle}
{}
{\printtext[journaltitle]{%
\printfield[titlecase]{journaltitle}%
\setunit{\subtitlepunct}%
\printfield[titlecase]{journalsubtitle}}}}}
\bibliography{bib}
\begin{document}
This is supposed to print only the authors' last names\autocite{Arzheimer.2006}. Whereas the bibliography should keep the full citation.
\printbibliography
\end{document}
答え1
回答はモーウェスタイルに合わせて調整できますverbose-inote
。プリアンブルに次の内容を追加するだけです。
\renewbibmacro*{footcite:full}{%
\usebibmacro{cite:full:citepages}%
\printtext[bibhypertarget]{%
\usedriver
{\DeclareNameAlias{sortname}{labelname}}
{\thefield{entrytype}}}%
\usebibmacro{shorthandintro}}
これにより、曖昧さのない姓が使用されます。どのような場合でも姓を強制したい場合は、名前の形式用に定義されているコードを追加する必要があります。