I would like to have a list like this:
a) Aha
b) Bla
Look at a) and b).
I write some code like this
\documentclass{article}
\renewcommand{\theenumi}{\alph{enumi}}
\renewcommand{\labelenumi}{\theenumi)}
%\makeatletter
%\renewcommand{\p@enumi}{\theenumi)}
%\makeatother
\usepackage{hyperref}
\begin{document}
\begin{enumerate}
\item \label{item:1} Aha
\item \label{item:2} Bla
\end{enumerate}
Look at~\ref{item:1} and~\ref{item:2}.
\end{document}
It works fine except the printed ref is not correct. I have tried the commented code, however it does not work.
