参考文献と引用

参考文献と引用

私の質問は、実際の引用スタイルと、それを使用して表現する方法に関するものです\printbibliography

私のテキストでは次のように引用したいと思います:

(著者Xと著者Y年)

しかし、私の参考文献では次のように表示したいのです。

姓著者 X、名著者 X (イニシャル X のみ)、姓著者 Y、名著者 Y (イニシャル Y のみ) ........


次のようなことをいくつか試しましたが、成功しませんでした。


\begin{filecontents}{\jobname.bib}
@article{wombat2016,
    author   = {Walther Wombat and Klaus Koala},
    title    = {The true meaning of 42},
    journal  = {Journal of modern skepticism},
    date     = {2016},
    keywords = {trusted},
}
@book{lion2010,
    author       = {Laura Lion and  Gabrielle Giraffe and Carl Capybara},
    title        = {The dangers of asking the wrong question},
    publisher    = {publishing house},
    date         = {2010},
    keywords     = {trusted},
}
\end{filecontents}
\documentclass{article}
\usepackage[backend=bibtex,style=authoryear,citetracker=true,mincitenames=2,giveninits=true,maxbibnames=99,dashed=false,isbn=false,url=false,urldate=comp,natbib=true]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}

All we know is limited, apart from knowing the answer we all know. Or do we? Wombat and Koala have discovered some interesting things~\parencite{wombat2016}.

Some people are too nosy. What can happen to them is described by Laura Lion~\cite[9]{lion2010}.

\printbibliography
\end{document}

答え1

\DeclareNameAlias{sortname}{family-given}

参考文献内の名前の順序を「姓、名」に変更します。giveninits=trueあなたと一緒に「姓、F」を取得します。

\DeclareDelimFormat{finalnamedelim}{\addspace\&\space}
\DeclareDelimFormat[bib,biblist]{finalnamedelim}{\addcomma\space}

引用には「&」、参考文献には「,」を使用します。

姓を小文字で表記したい場合は、

\renewcommand*{\mkbibnamefamily}{\textsc}

ムウェ

\documentclass{article}
\usepackage[style=authoryear, mincitenames=2, giveninits=true, maxbibnames=99, dashed=false, uniquename=init]{biblatex}
\addbibresource{biblatex-examples.bib}

\DeclareNameAlias{sortname}{family-given}
\DeclareDelimFormat{finalnamedelim}{\addspace\&\space}
\DeclareDelimFormat[bib,biblist]{finalnamedelim}{\addcomma\space}

\renewcommand*{\mkbibnamefamily}{\textsc}

\begin{document}
\cite[123]{sigfridsson}

\cite[9]{companion}

\printbibliography
\end{document}

ここに画像の説明を入力してください

関連情報