Files
md_to_gost/latex/mirea/macros.tex
T
Igor20264 516abe7b83
Python application / build (push) Has been cancelled
BigUpdate
2026-09-03 10:44:08 +03:00

31 lines
688 B
TeX

% Список пользовательских команд
%%%%%%%%%%%% \image %%%%%%%%%%%%%%%%%%
% \image {Имя изображения.расширение}{Подпись к рисунку}{Скейл Изображения}
\newcommand{\image}[3]{
\begin{figure}[!htb]
\centering
\includegraphics[width=#3\textwidth]{#1}
\caption{#2}
\end{figure}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% \codefromfile %%%%%%%%%%%%%%%%%%
% \codefromfile {Имя файла}
\newcommand{\codefromfile}[2]{
\begin{code}
\inputminted[breaklines=true, framesep=10pt, fontsize=\footnotesize, firstline=1,]{#2}{Listings/#1}
\end{code}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%