
次のような引用の呼び出しを行う最も簡単な方法は何ですか?
(Author year: page--range)
例えば(Chomsky 1957: 23--24)
またはより完全なもの:
(Author year, volume: page--range; Author2...)
例えば(Knuth 1973, 3: 234--236;...)
編集: MWE (これは私が試したものです):
\documentclass{article}
\usepackage[backend=bibtex,style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{test,
author = "Author",
title = "Title",
publisher = "Publisher",
series = "Series",
year = 2017,
}
\end{filecontents*}
\bibliography{\jobname}
\begin{document}
word\parencite[345]{test},
word2\parencite{test}
word3\parencite[345--347]{test}
\printbibliography
\end{document}
編集2:
上記の 2 つの例は十分に明確ではないようです。
引用が 1 冊の本だけの場合 (たとえば、1 巻だけの場合)、次のようになります。
(Chomsky 1957: 23)
ページ範囲の場合(Chomsky 1975: 23--24)
。
(p
またはpp
接頭辞なし)
書籍が複数ある場合(たとえば、複数の巻がある場合)は、次のようになります。
(Knuth 1973, 3: 234)
ページ範囲の場合(Knuth 1973, 3: 234--236)
複数の引用は次のように区切る必要があります。;
答え1
\documentclass{article}
\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat{multipostnote}{#1}
\DeclareFieldFormat{volcitepages}{#1}
\DeclareFieldFormat{volcitevolume}{#1}
\renewcommand*{\postnotedelim}{\addcolon\space}
\usepackage{mwepage}
\begin{document}
Wombat \parencite[345]{aksin}, \par
Capybara \parencite{aristotle:physics} \par
Duck \pvolcite{2}[345--347]{knuth:ct:b} \par
Mara \parencites[1--5]{westfahl:space}[7]{ctan}
\printbibliography
\end{document}