Is there a way I can specify a placeholder text for citations in which bibliographies are missing? For instance, I would imagine the syntax might look something like \citep[Author, Year]{AuthorYear}. I tried using \defcitealias but I guess that does not work if the bibliography entry is missing.
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
|||
@misc, with a key nameddummy, a year field of9999, and every other field taking a value ofdummy, be a way to go? You could issue citation commands such as\citet{dummy}as placeholders until the real entries are set up. – Mico Oct 1 '12 at 10:26dummy), I just need to go retrieve the entries. ;) – crippledlambda Oct 1 '12 at 16:08\citetemp{Author, Year}defining it as\newcommand{\citetemp}[1]{(#1)}. You can then search for\citetempand fix the key. – egreg Nov 3 '12 at 23:41