
進行如下引用標註的最簡單方法是什麼:
(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}