-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.tex
50 lines (40 loc) · 989 Bytes
/
commands.tex
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
% Список команд
%%%%%%%%%%%% \image %%%%%%%%%%%%%%%%%%
% \image {Имя изображения.расширение}{Подпись к рисунку}{Скейл Изображения}
\newcommand{\image}[3]{
\begin{figure}[!hb]
\centering
\includegraphics[width=#3\textwidth]{#1}
\caption{#2}
\end{figure}
}
% \timage {Основные параметры}{Содержание}{Подпись}
\newcommand{\timage}[3]{
\begin{figure}[!htb]
\centering
\begin{tikzpicture} [#1]
#2
\end{tikzpicture}
\caption{#3}
\end{figure}
}
% Формула с нумерацией
\newcommand{\centreq}[1]{
\begin{equation}
#1
\end{equation}
}
% Главы с центрированием
\newcommand{\csection}[1]{
\section{\centering#1}
}
\newcommand{\ocsection}[1]{
\section*{\centering#1}
}
\newcommand{\csubsection}[1]{
\subsection{\centering#1}
}
\newcommand{\ocsubsection}[1]{
\subsection*{\centering#1}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%