Rename “Appendix” to “ANNEX”

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\documentclass{scrartcl}

\usepackage[
toc,
page,
title,
titletoc,
]{appendix}

\begin{document}
\appendix

% The following options have to be inside \begin{document} environment.

\renewcommand{\appendixname}{ANNEX}
\renewcommand{\appendixtocname}{ANNEX}
\renewcommand{\appendixpagename}{ANNEX}

\begin{appendices}
\section{My annex}
\end{appendices}
\end{document}

Change tables and figures numbering

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
\documentclass{scrartcl}

\usepackage[
toc,
page,
title,
titletoc,
]{appendix}

\begin{document}
\appendix

% The following options have to be inside \begin{document} environment.

% Display Table label as "Table A.1"
\renewcommand{\thetable}{\Alph{section}.\arabic{table}}
% Display Figure label as "Figure A.1"
\renewcommand{\thefigure}{\Alph{section}.\arabic{figure}}

\renewcommand{\appendixname}{ANNEX}
\renewcommand{\appendixtocname}{ANNEX}
\renewcommand{\appendixpagename}{ANNEX}

\begin{appendices}
\section{My annex}
\end{appendices}
\end{document}