Re: Appendici con “numerazione” letterale delle sezion

#20556
DMW
    Up
    0
    Down
    ::


    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

    Go to top