Modifier le style d'affichage \ref
J'ai modifié mon style de compteur de (sub(sub))section par
:
\let\myTheSection\thesection
\renewcommand{\thesection}{\oldstylenums{\myTheSection}}
Mais, j'aimerai Mais j'aimerais que, dans mon texte courant, l'appel à une référence `\ref{}` ne produise pas un affichage elzévirien (oldstylenums) mais un style classique. Y'a-t-il Y a-t-il un moyen de faire ça ?
\documentclass{article}
\let\myTheSection\thesection
\renewcommand{\thesection}{\oldstylenums{\myTheSection}}
\begin{document}
\section{Toto}\label{sec:toto}
Une reference référence vers~\ref{sec:toto}
\end{document}