Created
December 15, 2017 06:35
-
-
Save ukoloff/9f7b0084eea259361f5fe1f2b5327eb8 to your computer and use it in GitHub Desktop.
Minimal russian LaTeX document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| % General document formatting | |
| \usepackage[margin=0.5in]{geometry} | |
| \usepackage[parfill]{parskip} | |
| \usepackage[utf8]{inputenc} | |
| \usepackage[T2A]{fontenc} | |
| \usepackage[english,russian]{babel} | |
| % Related to math | |
| \usepackage{amsmath,amssymb,amsfonts,amsthm} | |
| \begin{document} | |
| \section*{Введение} | |
| % Таблица | |
| \begin{center} | |
| \begin{tabular}{c | *4{r}} | |
| $ C_n^k $ & 0 & 1 & 2 & 3 \\ | |
| \hline | |
| 0 & 1 & 1 & 1 & 1 \\ | |
| 1 & 1 & 2 & 3 & 4 \\ | |
| 2 & 1 & 3 & 6 & 10 \\ | |
| 3 & 1 & 4 & 10 & 20 \\ | |
| \end{tabular} | |
| \end{center} | |
| \end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment