2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

added example for cyrillic letters

This commit is contained in:
Martin Thoma 2015-02-28 07:10:03 +01:00
parent ecb7cf7799
commit 84879c747a
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,7 @@
SOURCE = cyrillic
make:
pdflatex $(SOURCE).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out

View file

@ -0,0 +1,13 @@
\documentclass[a4paper]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\usepackage[T1]{fontenc} % this is needed for correct output of letters in pdf
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Begin document %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\subsection{Русский}
Все люди рождаются свободными и равными в своем достоинстве и
правах.
\end{document}