I'm exploring the capabilities of biblatex. I'm using the following example:
\documentclass{article}
\usepackage[style=alphabetic,natbib=true,backend=bibtex]{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}
This results in the following output:
Instead, I'd like to format citations as [Author(2001)] instead of [Auth2001], as illustrated below.
How can I achieve this customized citation? Ideally, I'd like to keep the available natbib commands (currently achieved through natbib=true) and modify my current invocations of \cite as little as possible.


authoryearstyle and some modification like in Adding an AuthorYear block at the beginning of bibliography entries, Bibliography with biblatex: how to create additional labels using authoryear-style? or Modifying alphabetic biblabels with biblatex – moewe Dec 22 '15 at 13:08