mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-18 19:18:21 +02:00
added example for cyrillic letters
This commit is contained in:
parent
ecb7cf7799
commit
84879c747a
2 changed files with 20 additions and 0 deletions
7
documents/cyrillic/Makefile
Normal file
7
documents/cyrillic/Makefile
Normal 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
|
13
documents/cyrillic/cyrillic.tex
Normal file
13
documents/cyrillic/cyrillic.tex
Normal 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}
|
Loading…
Add table
Add a link
Reference in a new issue