[Tex/LaTex] How to create a reading list

bibliographiesnatbib

I'm trying to set up a reading list. For that, I want to have a command like \showfull(myReference), which then actually displays an extended reference that contains Author, year, title, journal some style, instead of referring to it as (author, year) and putting it into the bibliography.

So far I'm using natbib, so a solution using that (or at least no additional package) would be preferred.

Best Answer

A very basic macro that uses biblatex and its citetitle feature.

foobarExtendedCite

\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\newcommand{\extendedcite}[1]{\cite{#1}\space\citetitle{#1}}
\begin{document}
\extendedcite{aristotle:physics}

Some nice text
\extendedcite{aksin}
\printbibliography
\end{document}