LaTeX(雑記): 目次の数字とアルファベットを両立させる

jsarticle.clsとhyperref.styを仮定する.目次に数字とアルファベットを用い,なおかつhyperrefのリンクと両立させるには,

\begin{document}

\tableofcontents

\section{最初の章}%

\renewcommand{\thesection}{\Alph{section}}
    %(章番号をアルファベットに再設定)
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
    %(節番号をそれに合わせて再設定)
\renewcommand{\theHsection}{(任意の空でない文字列)\thesection}
    %ここが重要.hyperref.styが必要.
\section{補遺の章}

\end{document}

とすればよい.