-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
36 lines (30 loc) · 943 Bytes
/
Copy pathmain.tex
File metadata and controls
36 lines (30 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
\documentclass[a4paper,russian]{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
% Questions formated like \Q{question}
% will be parsed into "Q: question"
\newcommand{\Q}[1]{\textbf{Q:} #1\\}
% Answers formated like \A{answer}
% will be parsed into "A: answer"
% with 1 empty line after it
% so that it will be easyer to visually
% separate questions from each other
\newcommand{\A}[1]{
\textbf{A:} #1\\
\\
}
\begin{document}
\setlength{\parindent}{0in}
\section{Бакалавриат}
% Create new file in baccalaureate
% if you think your question
% doesn't match any of existing subsection
\subsection{Основные вопросы}
\input{baccalaureate/main_questions.txt}
\section{Магситратура}
% Create new file in magistracy
% if you think your question
% doesn't match any of existing subsection
\subsection{Основные вопросы}
\input{magistracy/main_questions.txt}
\end{document}