Latex: Difference between revisions

356 bytes added ,  20 November 2020
Line 77: Line 77:
\end{minipage}
\end{minipage}
</pre>
</pre>
===Sections===
;Section Numbering
To change the section numbering from numbers to letters, add the following:
<syntaxhighlight lang="latex">
% Changes sections to use capital letters
\renewcommand{\thesection}{\Alph{section}}
% Changes subsections to use lowercase letters
\renewcommand{\thesubsection}{\thesection.\alph{subsection}}
</syntaxhighlight>


===Programming===
===Programming===