I have some own theorem environments. And my theorems are numbered like the chapter. Now I would like to use autoref with that. But it does not work like it is described here (http://www.tug.org/applications/hyperref/manual.html) with aliascnt. So how can I get that?
\documentclass[ngerman,halfparskip,12pt,pointednumbers]{scrreprt}
\usepackage{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amsfonts,amssymb,amsthm,bbm}
\usepackage{hyperref}
\newtheoremstyle{absatz}
{17pt}{10pt}{}{-1pt}{\scshape\bfseries}{.}{\newline}{}
\theoremstyle{absatz}
\newtheorem{satz}{Satz}[chapter]
\newtheorem*{satz*}{Satz}
\newtheorem{lemma}[satz]{Lemma}
\newtheorem{corollar}[satz]{Korollar}
%\renewcommand*{\theoremautorefname}{Satz}
\begin{document}
\begin{satz}
\label{Satz}
text text theorem
\end{satz}
In \autoref{Satz} we have shown...
\end{document}


\begin{satz} \todo{citation needed} \label{satz} theorem text \end{satz} In \autoref{satz} ...And of course this did not work, because of the \todo before the label. Just for anyone to remember, who stumbles upon this topic. (sorry I did not get a code environment working here.)
– pirad Mar 01 '12 at 08:52