I've been a frequent reader of the forum throughout my masters thesis. I found solutions to all of my problems. But now there is one, for which I can't find a solution at all. I hope you guys can help me out with that one.
I am using the hyperref package with the following setup:
Code: Select all
\usepackage[ngerman,breaklinks=true,colorlinks=false, pdfborder={0 0 0}]{hyperref}
\addto\extrasngerman{%
\def\subsectionautorefname{Abschnitt}%
}
\addto\extrasngerman{%
\def\subsubsectionautorefname{Abschnitt}%
}
\addto\extrasngerman{%
\def\tableautorefname{Tab.}%
}
\addto\extrasngerman{%
\def\figureautorefname{Abb.}%
}
Code: Select all
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\captionsetup[figure]{format=plain,textformat=period,singlelinecheck=false,labelfont={sc,bf},skip=0.5cm,position=bottom}
\captionsetup[table]{format=plain,textformat=period,singlelinecheck=false,labelfont={sc,bf},skip=0.5cm,position=top}
\captionsetup[sub]{format=plain,skip=0.5ex,position=top,font+=Large,labelfont={sc,bf},labelformat=simple}
\autoref{subfigure}
the result would be "Abb. 1a". But the desired result is "Abb. 1A".Is there any way to modify the
\autoref
command to give the desired format?I can't provide a MWE right now because I don't have access to the computer with my documents at the moment.
Thanks a lot in advance!