I've come across a case now where I need to refer to items in my bibliography as well as to something someone has told me personally. I would like that text citation to look something like this:
I know from books and people I have talked to that George Harrison played the guitar in the Beatles (Lennon 1972, pp. 48 sqq.; Starkey 1994, pp. 103 sqq; Paul McCartney, p.c.).
The "Paul McCartney, p.c." part needs to be custom added when needed. How should I do this with biblatex? Below a MWE.
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{lennon1972,
AUTHOR = "John Lennon",
TITLE = "Who did what in the Beatles",
YEAR = "1972"}
@book{starkey1994,
AUTHOR = "Richard Starkey",
TITLE = "I'm the drummer",
YEAR = "1994"}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
I know from books and people I have talked to that George Harrison played the guitar in the Beatles \parencites[48\psqq]{lennon1972}[103\psqq]{starkey1994}[Paul McCartney p.c.]{}
\printbibliography
\end{document}
