Skip to content

Instantly share code, notes, and snippets.

@ukoloff
Created December 15, 2017 06:35
Show Gist options
  • Select an option

  • Save ukoloff/9f7b0084eea259361f5fe1f2b5327eb8 to your computer and use it in GitHub Desktop.

Select an option

Save ukoloff/9f7b0084eea259361f5fe1f2b5327eb8 to your computer and use it in GitHub Desktop.
Minimal russian LaTeX document
\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