Compare commits

..

No commits in common. "91af951f30c345e772ddef62e7282c63619d3b1e" and "905e747444380f568ea48033dab778b33b5a0e2e" have entirely different histories.

3 changed files with 49 additions and 155 deletions

View File

@ -1,15 +0,0 @@
# Brain-Machine interface related report (latex)
## How to run
## prerequisites
```
```bash
sudo apt install texlive-latex-extra
sudo apt install texlive-fonts-extra
sudo apt install texlive-bibtex-extra
sudo apt install texlive-lang-cyrillic texlive-latex-extra
```
Something else?

View File

@ -6,16 +6,14 @@
% --- ДАННЫЕ ДЛЯ ТИТУЛЬНОГО ЛИСТА --- % --- ДАННЫЕ ДЛЯ ТИТУЛЬНОГО ЛИСТА ---
% Эти команды можно переопределить здесь при необходимости % Эти команды можно переопределить здесь при необходимости
\title{Нейроинтерфейсы - обзор текущего состояния} \title{Применение нейронных сетей для повышения разрешения выходного изображения в реальном времени в области лапароскопической хирургии}
\author{Mukhamadiev Artur, Research Engineer} \author{Мухамадиев Артур Юрисович}
\department{Russia R\&D Lab, Web Team}
\reportdate{26.01.2026}
\date{\today} \date{\today}
\begin{document} \begin{document}
% --- ТИТУЛЬНЫЙ ЛИСТ --- % --- ТИТУЛЬНЫЙ ЛИСТ ---
\maketitle \input{title.tex}
% --- СОДЕРЖАНИЕ --- % --- СОДЕРЖАНИЕ ---
%\tableofcontents %\tableofcontents
@ -23,6 +21,8 @@
% --- ПОДКЛЮЧЕНИЕ ГЛАВ ИЗ ПАПКИ chapters --- % --- ПОДКЛЮЧЕНИЕ ГЛАВ ИЗ ПАПКИ chapters ---
\input{chapters/00_introduction.tex} \input{chapters/00_introduction.tex}
\input{chapters/01_dataset.tex}
\input{chapters/02_choose.tex}
% --- СПИСОК ЛИТЕРАТУРЫ --- % --- СПИСОК ЛИТЕРАТУРЫ ---
\printbibliography[title={Список использованных источников}] \printbibliography[title={Список использованных источников}]

View File

@ -1,153 +1,62 @@
% --- ПРЕАМБУЛА: LG INTERNAL REPORT (SIMPLIFIED) --- % --- ПРЕАМБУЛА: ПОДКЛЮЧАЕМЫЕ ПАКЕТЫ И НАСТРОЙКИ ---
% --- КОДИРОВКА И ЯЗЫК --- % --- КОДИРОВКА И ЯЗЫК ---
\usepackage[T2A]{fontenc} \usepackage[T2A]{fontenc} % Кодировка для кириллицы
\usepackage[utf8]{inputenc} \usepackage[utf8]{inputenc} % Кодировка исходного файла
\usepackage[russian]{babel} \usepackage[russian]{babel} % Поддержка русского языка
\usepackage{csquotes} % Added for babel compatibility \usepackage{titling}
\usepackage{sourcecodepro}
% --- ГЕОМЕТРИЯ СТРАНИЦЫ --- % --- ГЕОМЕТРИЯ СТРАНИЦЫ (ПОЛЯ) ПО ГОСТ 7.32-2017 ---
\usepackage[left=3cm, right=2cm, top=2.5cm, bottom=2.5cm]{geometry} \usepackage[left=3cm, right=1.5cm, top=2cm, bottom=2cm]{geometry}
% --- ШРИФТЫ И ИНТЕРВАЛЫ --- % --- ШРИФТЫ И ИНТЕРВАЛЫ ---
\usepackage{setspace} \usepackage{setspace}
\onehalfspacing \onehalfspacing % Полуторный интервал
\usepackage{indentfirst} \usepackage{indentfirst} % Красная строка для первого абзаца в разделе
\usepackage{titlesec} \usepackage{titlesec}
\titleformat{\chapter}[display]{\fontsize{16pt}{16pt}\bfseries}{}{5pt}{}
% --- ЦВЕТА LG --- \titlespacing{\chapter}{0pt}{24pt}{1\baselineskip}
\usepackage{xcolor} \titleformat{\section}[display]{\fontsize{14pt}{14pt}\bfseries}{}{5pt}{\arabic{section} }
\definecolor{LGBlue}{RGB}{0, 83, 156}
\definecolor{LGRed}{RGB}{237, 28, 36}
% --- ДЛЯ ИСПОЛЬЗОВАНИЯ @ В КОМАНДАХ ---
\makeatletter
% --- КОМАНДЫ ДЛЯ ОТЧЕТА ---
\newcommand{\projectcode}[1]{\def\@projectcode{#1}}
\newcommand{\department}[1]{\def\@department{#1}}
\newcommand{\reportdate}[1]{\def\@reportdate{#1}}
\newcommand{\approver}[1]{\def\@approver{#1}}
\newcommand{\reporttype}[1]{\def\@reporttype{#1}}
\department{Russia R\&D Lab, Web Team}
\reportdate{\today}
\approver{Dmitry Ketov, Part Leader}
\reporttype{Internal Report}
% --- ЗАГОЛОВКИ СТРАНИЦ ---
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\small LG Internal}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% --- ФОРМАТИРОВАНИЕ РАЗДЕЛОВ ---
\titleformat{\section}
{\normalfont\Large\bfseries}
{\thesection.}{0.5em}{}
\titleformat{\subsection}
{\normalfont\large\bfseries}
{\thesubsection.}{0.5em}{}
% --- МАТЕМАТИКА --- % --- МАТЕМАТИКА ---
\usepackage{amsmath, amssymb} \usepackage{amsmath, amsfonts, amssymb, amsthm, mathtools}
% --- ГРАФИКА --- % --- ГРАФИКА ---
\usepackage{graphicx} \usepackage{graphicx}
\graphicspath{{images/}} \graphicspath{{images/}} % Указываем папку для изображений
\usepackage{caption} \usepackage{caption} % Для настройки подписей к рисункам и таблицам
\captionsetup{labelsep=period} \captionsetup[figure]{labelsep=period, name=Рисунок} % Подпись "Рисунок 1."
\captionsetup[table]{labelsep=period, name=Таблица} % Подпись "Таблица 1."
% --- БИБЛИОГРАФИЯ --- % --- БИБЛИОГРАФИЯ (ГОСТ) ---
\usepackage[ \usepackage[
backend=biber, backend=biber,
style=gost-numeric, style=gost-numeric, % Стиль цитирования по ГОСТ
sorting=none sorting=none
]{biblatex} ]{biblatex}
\addbibresource{references.bib} \addbibresource{references.bib} % Файл с библиографией
% --- КОД ---
\usepackage{listings} \usepackage{listings}
\lstdefinestyle{lgcode}{ \usepackage{xcolor}
\lstdefinestyle{compactpython}{
language=Python, language=Python,
basicstyle=\ttfamily\small, basicstyle=\ttfamily\footnotesize, % Smaller font
keywordstyle=\bfseries, upquote=true, % Correct quotes
commentstyle=\itshape\color{gray}, commentstyle=\color{gray}\itshape, % Smaller, italic comments
numbers=left, keywordstyle=\color{blue}\bfseries, % Bold keywords
frame=single, stringstyle=\color{red}, % Red strings
breaklines=true, numberstyle=\tiny\color{gray}, % Tiny line numbers
tabsize=2 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{hyperref} \usepackage[unicode, colorlinks=true, linkcolor=blue, citecolor=green]{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=LGBlue,
citecolor=LGBlue,
urlcolor=LGBlue
}
% --- ТИТУЛЬНАЯ СТРАНИЦА (ПРОСТАЯ) ---
\renewcommand{\maketitle}{
\begin{titlepage}
\thispagestyle{empty}
\vspace*{2cm}
\begin{center}
% Логотип и организация
{\LARGE\bfseries LG Electronics} \\
\vspace{0.5cm}
{\large Russia R\&D Lab} \\
\vspace{1cm}
% Линия
\textcolor{LGBlue}{\rule{0.6\textwidth}{1pt}} \\
\vspace{0.5cm}
% Тип отчета
{\Large\bfseries \@reporttype} \\
\vspace{1cm}
% Заголовок
{\Huge\bfseries \@title} \\
\vspace{1.5cm}
% Информация
\begin{tabular}{p{0.45\textwidth}p{0.45\textwidth}}
\textbf{Подготовил:} & \textbf{Утвердил:} \\
\@author & \@approver \\
& \\
\textbf{Отдел:} & \textbf{Дата:} \\
\@department & \@reportdate \\
& \\
& \textbf{Версия:} \\
& 1.0
\end{tabular}
\vfill
% Конфиденциальность
\textcolor{LGRed}{\bfseries КОНФИДЕНЦИАЛЬНО - ВНУТРЕННЕЕ ИСПОЛЬЗОВАНИЕ} \\
\vspace{0.3cm}
\footnotesize
\today
\end{center}
\end{titlepage}
}
\makeatother
% --- ПРОСТЫЕ КОМАНДЫ ---
\newcommand{\lgconfidential}{\textcolor{LGRed}{[КОНФИДЕНЦИАЛЬНО]}}
\newcommand{\lginternal}{\textcolor{LGBlue}{[ВНУТРЕННИЙ]}}
\newcommand{\bmi}{BMI}
% --- МЕТАДАННЫЕ ПО УМОЛЧАНИЮ ---
\title{Отчет по исследованию}
\author{Исследовательская группа}
\date{\today}