[Tex/LaTex] Use natbib with alpha style

natbib

Is it possible to use natbib together with the alpha style? It doesn't seem to be supported directly in the natbib package. What I mean is that there is no specific alpha-like natbib style, and if I use alpha directly I lose the possibility of citing author names and such with \citet… Does anybody know of an alpha style that would work with natbib?

Best Answer

Here's a solution using biblatex:

\documentclass{article}

\usepackage[style=alphabetic,natbib=true]{biblatex}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

Some text about \citet{A01}.

\printbibliography

\end{document}

enter image description here

Related Question