10 Gennaio 2008 alle 11:08
#20556
::
Se usi il pacchetto babel puoi aggiungere questo nel preambolo:
`
\addto\appendix{\renewcommand{\thesection}{\Alph{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}}`
Mentre se non usi babel devi scrivere
`
\makeatletter
\g@addto@macro\appendix{\renewcommand{\thesection}{\Alph{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}}
\makeatother
`
Poi l’uso è
`
\appendix
\chapter*{appendice}
\section{sez}
…
\subsection{sub}
…
`
Comunque non mi sembra una buona idea.
Ciao
Andrea