进行如下引用调用的最简单方法是什么:
(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:
上面两个例子好像还不够清楚。
如果引用只有一本书(例如只有一卷)那么它应该是这样的:
(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}