Browse Source

added example for cyrillic letters

Martin Thoma 10 years ago
parent
commit
84879c747a
2 changed files with 20 additions and 0 deletions
  1. 7 0
      documents/cyrillic/Makefile
  2. 13 0
      documents/cyrillic/cyrillic.tex

+ 7 - 0
documents/cyrillic/Makefile

@@ -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 - 0
documents/cyrillic/cyrillic.tex

@@ -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}