General ⇒ Appendix's title format
Appendix's title format
Додаток А
Title here
i.e. label should be 'Додаток', appendix's number should be A, Б, В, Г (cyrillic letters) and on the next line the title itself.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Appendix's title format
For the numerals, you would have to adapt something like this for greek.
For the appendix word in ukrainian, just load babel accordingly.
Code: Select all
\documentclass{report}
\usepackage[ukrainian]{babel}
\makeatletter
\newcommand{\cyralpha}[1]{\c@cyralpha{#1}}
\newcommand{\c@cyralpha}[1]{%
{%
\ifcase\number\value{#1} %
\or
\CYRA
\or
\CYRB
\or
\CYRV
\or
\CYRG
\fi
}%
}
\begin{document}
\chapter{Introduction}
Text
\chapter{Conclusion}
\appendix
\renewcommand{\thechapter}{\cyralpha{chapter}}
\chapter{Wombat}
\chapter{Capybara}
\chapter{Mara}
\chapter{Duck}
\end{document}