init
This commit is contained in:
commit
905e747444
0
chapters/00_introduction.tex
Normal file
0
chapters/00_introduction.tex
Normal file
29
main.tex
Normal file
29
main.tex
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
% --- ОСНОВНОЙ ФАЙЛ ДОКУМЕНТА ---
|
||||||
|
\documentclass[a4paper, 12pt]{report}
|
||||||
|
|
||||||
|
% --- ПОДКЛЮЧЕНИЕ ПРЕАМБУЛЫ ИЗ ОТДЕЛЬНОГО ФАЙЛА ---
|
||||||
|
\input{preamble.tex}
|
||||||
|
|
||||||
|
% --- ДАННЫЕ ДЛЯ ТИТУЛЬНОГО ЛИСТА ---
|
||||||
|
% Эти команды можно переопределить здесь при необходимости
|
||||||
|
\title{Применение нейронных сетей для повышения разрешения выходного изображения в реальном времени в области лапароскопической хирургии}
|
||||||
|
\author{Мухамадиев Артур Юрисович}
|
||||||
|
\date{\today}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
% --- ТИТУЛЬНЫЙ ЛИСТ ---
|
||||||
|
\input{title.tex}
|
||||||
|
|
||||||
|
% --- СОДЕРЖАНИЕ ---
|
||||||
|
%\tableofcontents
|
||||||
|
%\newpage
|
||||||
|
|
||||||
|
% --- ПОДКЛЮЧЕНИЕ ГЛАВ ИЗ ПАПКИ chapters ---
|
||||||
|
\input{chapters/00_introduction.tex}
|
||||||
|
\input{chapters/01_dataset.tex}
|
||||||
|
\input{chapters/02_choose.tex}
|
||||||
|
% --- СПИСОК ЛИТЕРАТУРЫ ---
|
||||||
|
\printbibliography[title={Список использованных источников}]
|
||||||
|
|
||||||
|
\end{document}
|
||||||
62
preamble.tex
Normal file
62
preamble.tex
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
% --- ПРЕАМБУЛА: ПОДКЛЮЧАЕМЫЕ ПАКЕТЫ И НАСТРОЙКИ ---
|
||||||
|
|
||||||
|
% --- КОДИРОВКА И ЯЗЫК ---
|
||||||
|
\usepackage[T2A]{fontenc} % Кодировка для кириллицы
|
||||||
|
\usepackage[utf8]{inputenc} % Кодировка исходного файла
|
||||||
|
\usepackage[russian]{babel} % Поддержка русского языка
|
||||||
|
\usepackage{titling}
|
||||||
|
\usepackage{sourcecodepro}
|
||||||
|
|
||||||
|
% --- ГЕОМЕТРИЯ СТРАНИЦЫ (ПОЛЯ) ПО ГОСТ 7.32-2017 ---
|
||||||
|
\usepackage[left=3cm, right=1.5cm, top=2cm, bottom=2cm]{geometry}
|
||||||
|
|
||||||
|
% --- ШРИФТЫ И ИНТЕРВАЛЫ ---
|
||||||
|
\usepackage{setspace}
|
||||||
|
\onehalfspacing % Полуторный интервал
|
||||||
|
\usepackage{indentfirst} % Красная строка для первого абзаца в разделе
|
||||||
|
\usepackage{titlesec}
|
||||||
|
\titleformat{\chapter}[display]{\fontsize{16pt}{16pt}\bfseries}{}{5pt}{}
|
||||||
|
\titlespacing{\chapter}{0pt}{24pt}{1\baselineskip}
|
||||||
|
\titleformat{\section}[display]{\fontsize{14pt}{14pt}\bfseries}{}{5pt}{\arabic{section} }
|
||||||
|
% --- МАТЕМАТИКА ---
|
||||||
|
\usepackage{amsmath, amsfonts, amssymb, amsthm, mathtools}
|
||||||
|
|
||||||
|
% --- ГРАФИКА ---
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\graphicspath{{images/}} % Указываем папку для изображений
|
||||||
|
\usepackage{caption} % Для настройки подписей к рисункам и таблицам
|
||||||
|
\captionsetup[figure]{labelsep=period, name=Рисунок} % Подпись "Рисунок 1."
|
||||||
|
\captionsetup[table]{labelsep=period, name=Таблица} % Подпись "Таблица 1."
|
||||||
|
|
||||||
|
% --- БИБЛИОГРАФИЯ (ГОСТ) ---
|
||||||
|
\usepackage[
|
||||||
|
backend=biber,
|
||||||
|
style=gost-numeric, % Стиль цитирования по ГОСТ
|
||||||
|
sorting=none
|
||||||
|
]{biblatex}
|
||||||
|
\addbibresource{references.bib} % Файл с библиографией
|
||||||
|
\usepackage{listings}
|
||||||
|
\usepackage{xcolor}
|
||||||
|
|
||||||
|
|
||||||
|
\lstdefinestyle{compactpython}{
|
||||||
|
language=Python,
|
||||||
|
basicstyle=\ttfamily\footnotesize, % Smaller font
|
||||||
|
upquote=true, % Correct quotes
|
||||||
|
commentstyle=\color{gray}\itshape, % Smaller, italic comments
|
||||||
|
keywordstyle=\color{blue}\bfseries, % Bold keywords
|
||||||
|
stringstyle=\color{red}, % Red strings
|
||||||
|
numberstyle=\tiny\color{gray}, % Tiny line numbers
|
||||||
|
numbers=left, % No line numbers (or 'left' if desired)
|
||||||
|
frame=single, % No frame around the listing
|
||||||
|
showstringspaces=false, % Don't show spaces in strings
|
||||||
|
breaklines=true, % Allow lines to break
|
||||||
|
tabsize=2, % Smaller tab size
|
||||||
|
% For even more compactness, consider removing line numbers, frames, or captions.
|
||||||
|
% numbers=none,
|
||||||
|
% frame=none,
|
||||||
|
% captionpos=b, % Caption below
|
||||||
|
}
|
||||||
|
|
||||||
|
% --- ГИПЕРССЫЛКИ И НАВИГАЦИЯ (опционально, но удобно для PDF) ---
|
||||||
|
\usepackage[unicode, colorlinks=true, linkcolor=blue, citecolor=green]{hyperref}
|
||||||
0
references.bib
Normal file
0
references.bib
Normal file
Loading…
x
Reference in New Issue
Block a user