summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex')
-rw-r--r--macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex161
1 files changed, 161 insertions, 0 deletions
diff --git a/macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex b/macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex
new file mode 100644
index 0000000000..2564252f91
--- /dev/null
+++ b/macros/latex/contrib/disser/templates-utf8/specialist/thesis.tex
@@ -0,0 +1,161 @@
+\documentclass[%
+specialist, % тип документа
+%natbib, % использовать пакет natbib для "сжатия" цитирований
+subf, % использовать пакет subcaption для вложенной нумерации рисунков
+href, % использовать пакет hyperref для создания гиперссылок
+colorlinks, % цветные гиперссылки
+%fixint, % включить прямые знаки интегралов
+]{disser}
+
+\usepackage[
+ a4paper, mag=1000,
+ left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm
+]{geometry}
+
+\usepackage[intlimits]{amsmath}
+\usepackage{amssymb,amsfonts}
+
+\usepackage[T2A]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english,russian]{babel}
+\ifpdf\usepackage{epstopdf}\fi
+\usepackage[autostyle]{csquotes}
+
+% Шрифт Times в тексте как основной
+%\usepackage{tempora}
+% альтернативный пакет из дистрибутива TeX Live
+%\usepackage{cyrtimes}
+
+% Шрифт Times в формулах как основной
+%\usepackage[varg,cmbraces,cmintegrals]{newtxmath}
+% альтернативный пакет
+%\usepackage[subscriptcorrection,nofontinfo]{mtpro2}
+
+% Плавающие рисунки "в оборку".
+\usepackage{wrapfig}
+
+\usepackage[style=gost-numeric,
+ backend=biber,
+ language=auto,
+ hyperref=auto,
+ autolang=other,
+ sorting=none
+]{biblatex}
+
+\addbibresource{thesis.bib}
+
+% Номера страниц снизу и по центру
+%\pagestyle{footcenter}
+%\chapterpagestyle{footcenter}
+
+% Точка с запятой в качестве разделителя между номерами цитирований
+%\setcitestyle{semicolon}
+
+% Использовать полужирное начертание для векторов
+\let\vec=\mathbf
+
+% Включать подсекции в оглавление
+\setcounter{tocdepth}{2}
+
+\graphicspath{{fig/}}
+
+\begin{document}
+
+% Переопределение стандартных заголовков
+%\def\contentsname{Содержание}
+%\def\conclusionname{Выводы}
+%\def\bibname{Литература}
+
+%
+% Титульный лист на русском языке
+%
+
+\institution{Название организации}
+
+% Имя лица, допускающего к защите (зав. кафедрой)
+\apname{ФИО зав. кафедрой}
+
+\title{Дипломная работа}
+
+\topic{<<Тема работы>>}
+
+% Автор
+\author{ФИО автора}
+% Группа
+\group{Студента группы}
+
+% Научный руководитель
+\sa {ФИО руководителя}
+\sastatus{д.~ф.-м.~н., ст.~н.~с.}
+
+% Рецензент
+\rev {П.\,П.~Петров}
+\revstatus{к.\,ф.-м.\,н., доцент}
+
+% Город и год
+\city{Санкт-Петербург}
+\date{\number\year}
+
+\maketitle
+
+%%
+%% Titlepage in English
+%%
+%
+%\setlength\thirdskip{0pt}
+%
+%\institution{Name of Organization}
+%
+%% Approved by
+%\apname{Professor S.\,S.~Sidorov}
+%
+%\title{Diploma Thesis}
+%
+%% Topic
+%\topic{Dummy Title}
+%
+%% Author
+%\author{Author's Name} % Full Name
+%\group{} % Study Group
+%
+%% Scientific Advisor
+%\sa {I.\,I.~Ivanov}
+%\sastatus {Professor}
+%
+%% Reviewer
+%\rev {P.\,P.~Petrov}
+%\revstatus{Associate Professor}
+%
+%% Consultant
+%\con{}
+%\conspec{}
+%\constatus{}
+%
+%% City & Year
+%\city{Saint Petersburg}
+%\date{\number\year}
+%
+%\maketitle[en]
+
+% Содержание
+\tableofcontents
+
+% Введение
+\input{intro}
+
+% Глава 1
+\input{1}
+% Глава 2
+%\input{2}
+
+% Заключение
+\input{concl}
+
+% Список литературы
+\printbibliography[heading=bibintoc]
+
+% Приложения
+%\appendix
+%\input{a}
+
+\end{document}