I'm trying to get started with biblatex-chicago, and have got stuck on how to refer to citations as nouns in the footnote style (that is, I want to say 'as \citeasnoun{lamport} says...').
[I think the short version of this question is: "why doesn't my \smartcite expand to \parencite in a footnote?"]
If I start off as the biblatex-chicago manual suggests
\usepackage[authordate,strict,backend=biber,babel=other]{biblatex-chicago}
then everything's fine: I can use \textcite{foo} as a noun, and \autocite{foo} parenthetically. If, however, I start off with the manual's suggested alternative
\usepackage[notes,strict,backend=biber,babel=other]{biblatex-chicago}
then I don't have \textcite (that's slightly surprising, since the biblatex manual says that '[\textcite] commands are provided by all non-verbose styles which ship with this package,' and I would have guessed that the 'notes' style was a 'non-verbose' style).
That's OK, since I can apparently fake it with \def\textcite#1{\citeauthor{#1}\autocite{#1}}. That almost works: in the text I get 'as Lamport^1 says ...', and a reasonable footnote with the full reference.
If, however, I try this within a footnote, I get 'as LamportLeslie Lamport ... says ...' -- that is, the \autocite appears to act like plain \cite in a footnote, whereas I would have expected something more like 'as Lamport (Leslie Lamport ...) says ...'.
Things I've tried:
- I can specify
autocite=footnoteandautocite=inlinein the\usepackagecommand, but that changes it in both contexts -- the body text and the footnotes. - I could potentially look in the
biblatex.styfor clues, and hack up something which is somehow sensitive to its context so that\autociteacts like\parencitein a footnote, but (a) that style is ... quite clever in places, and (b) I'm doing this on behalf of someone else, so a partial goal is to say 'look, LaTeX can do this more easily than doing it by hand' -- an argument which 'use the source, Luke' would rather undermine. And anyway (c) I thought this was supposed to happen automatically. \DeclareAutoCiteCommandlooks like it could help, but doesn't have the footnote/bodytext alternative I'd have expected.- Replacing
\autocitewith\smartciteeffects no change, even though\smartciteis '[l]ike \parencite in a footnote and like \footcite in the body,' according to the biblatex manual (\parenciteby itself does produce a citation in parentheses).
I've been through the manual enough times now that I believe I'm missing something obvious, or else I'm asking the wrong question.
- Perhaps the answer is to use
\parenciteexplicitly in footnotes. Perhaps, but I rather got the impression that that was what\autocitewas supposed to take care of. - Perhaps the answer is that I shouldn't want to do this. I'm not in the Humanities, so perhaps Everyone Knows (except me) that one simply doesn't refer to references like this, in footnotes.
Example:
\documentclass{scrartcl}
\iftrue
\usepackage[notes,strict,backend=biber,babel=other]{biblatex-chicago}
\def\textcite#1{\citeauthor{#1}\smartcite{#1}}
\else
\usepackage[authordate,strict,backend=biber,babel=other]{biblatex-chicago}
\fi
\addbibresource{bib.bib}
\title{Document}
\author{Me}
\begin{document}
\maketitle
The primary aim of this essay is to refer to \textcite{wittgenstein53}
in the text.\footnote{And refer to \textcite{wittgenstein53} in a footnote}
\printbibliography
\end{document}
I get "Wittgenstein^1" in the first case, and "Wittgensteinibid." in the footnote.
I'm using biblatex version 1.7, biber version 0.9.9 (and up-to-date versions of pdftex and xetex).