Holger Zebner wrote:
> Hi,
> I am wirting a text (scrartcl) in German and want to insert a
> pretty-reference. I got the following output:
> 2.5 Formatierter Querverweis
> Siehe Section 1: PrettyRef
You can define it in preamble:
\newrefformat{sec}{Abschnitt~\ref{#1}}
etc. (see prettyref doc)-
> I also looked at "varoref.sty" and found out that all word have been
> translated except the "Section, Subsection, ..." Environments.
> Is my varioref.sty too old or do I have to include some other optional
> package?
Varioref does not include sectional commands afaik. you can combine it with
prettyref though:
\usepackage[ngerman]{varioref}
% Prettyref commands with varioref's \vref
\newrefformat{sec}{Abschnitt~\vref{#1}}
Then prettyref includes varioref's statements ("Abschnitt 2.3 auf der
folgenden Seite", "Abschnitt 1.7 auf Seite 6" etc.).
Juergen.