In documents using Tufte document classes (tuft-handout or tuft-book) \cite is replaced by a footnote (which appears as a sidenote) corresponding to the full bibliography entry for the cited work. This is fine for the first occurrence, but (generally) not what I want for subsequent occurrences of the same work.
Is there a way to automatically generate abbreviated citations after the first, using \cite alone?
For example, I'd like something like this:

But in order to get that I need to manually use something like
\footnote{\citealp{...}}
for citations after the first:
\documentclass[]{tufte-handout}
\begin{document}
This is the first occurrence of a citation,\cite{Deutsch:2002} which works as expected. I would also ideally like to be able to cite the same paper again, and have it appear automatically in some abbreviated form but instead I have to do this manually with a footnote and ERT\footnote{\citealp{Deutsch:2002}}. Is there a way to ensure that citations automatically appear in this "abbreviated" form after the first occurrence in Tufte documents?
\bibliographystyle{unsrtnat}
\bibliography{References}
\end{document}
This not is not only brittle within the document (if the first citation is moved after one of these hand-coded ones) but destroys portability across classes (since the subsequent citations are all explicitly implemented as footnotes).
References.bib:
@article{Deutsch:2002,
author = {Deutsch, D},
title = {{The structure of the multiverse}},
journal = {Proceedings: Mathematical, Physical and Engineering Sciences},
year = {2002},
volume = {458},
number = {2028},
pages = {2911--2923},
}


\citewhen it occurs inside of a footnote? And, while we're at it, to make sure that the first (as\bibentry) doesn't jump out into a new line, as it currently does. – orome Feb 26 '12 at 21:50biblatexis probably the best solution going forward as it provides a lot more flexibility thannatbib. Unfortunately, I haven't had time to learn it yet. (When we first wrote the Tufte-LaTeX code,biblatexwasn't ready for regular use, so we settled onnatbib.) – godbyk Feb 27 '12 at 06:37