diff options
author | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
commit | eadac6a4b811db258d2b4d5dd4dec4fb0551ca4d (patch) | |
tree | 0ee9d092e8f52117148beabe162c1b0e6421da7a /Master/texmf-dist/doc/latex/disser | |
parent | 5cf6f77f3a4d03a7ffcb78f2fef5f5172905534a (diff) |
disser (5jul16)
git-svn-id: svn://tug.org/texlive/trunk@41635 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser')
96 files changed, 5512 insertions, 221 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/ChangeLog b/Master/texmf-dist/doc/latex/disser/ChangeLog index 2fdaaed42d1..c9b2433b2c8 100644 --- a/Master/texmf-dist/doc/latex/disser/ChangeLog +++ b/Master/texmf-dist/doc/latex/disser/ChangeLog @@ -2,6 +2,26 @@ disser changelog Copyright (C) Stanislav Kruchinin ------------------------------------------- +Summary of changes in version 1.4.0 (2016-07-03): + +Classes and styles: +* Fix compatibility issues with biblatex. +* Fix index entries in documentation. +* Improve compatibility with 'gost' styles. ++ Add check of non-empty \libcatnum. +- Remove the deprecated 'libcat' option. + +Templates: ++ Add new templates with UTF-8 encoding and biblatex support. ++ Add citations to master and specialist templates. +* Use 'biblatex-gost' style in UTF-8 templates. +* Synchronize the bib-files in all templates. +* Enable \libcatnum by default. + +Makefiles: ++ Add Biber support. + + Summary of changes in version 1.3.4 (2016-01-27): Classes and styles: @@ -10,7 +30,7 @@ Classes and styles: Templates: + bachelor: add test for nested enumerated lists. * doctor: update the opponents list. - + Summary of changes in version 1.3.3 (2015-10-18): @@ -33,7 +53,7 @@ Summary of changes in version 1.3.1 (2015-01-03): Classes and styles: * Fix bug due to undefined \@Asbuk in recent 'babel' package. + Package 'natbib' is now optional. -* Use more recent package 'subcaption' for subfigure captions and +* Use more recent package 'subcaption' for subfigure captions and references instead of the obsolete 'subfig'. Templates: diff --git a/Master/texmf-dist/doc/latex/disser/include/latex.mk b/Master/texmf-dist/doc/latex/disser/include/latex.mk index 2d95bbb0b69..feaf55e67a7 100644 --- a/Master/texmf-dist/doc/latex/disser/include/latex.mk +++ b/Master/texmf-dist/doc/latex/disser/include/latex.mk @@ -32,21 +32,27 @@ PSNUPFLAGS ?= -2 -pA4 PDFLATEXFLAGS ?= --shell-escape --synctex=1 CLEXT ?= *.aux *.toc *.idx *.ind *.ilg *.log *.out *.lof *.lot *.lol \ - *.bbl *.blg *.bak *.dvi *.ps *.pdf *.synctex *.synctex.gz + *.bbl *.blg *.bak *.dvi *.ps *.pdf *.synctex *.synctex.gz *.run.xml *.bcf CLFILES ?= $(CLEXT) $(ARCHIVE) SRCFILES ?= * +pdf: $(TARGET).pdf + +pdf_2on1: $(TARGET)_2on1.pdf + +pdf_book: $(TARGET)_book.pdf + dvi: $(TARGET).dvi clean: -rm -f $(CLFILES) .help: - @echo " dvi (default) build DVI" ;\ + @echo " dvi build DVI" ;\ echo " figclean clean output files in figures directory" ;\ echo " html convert DVI to HTML" ;\ - echo " pdf build PDF" ;\ + echo " pdf (default) build PDF" ;\ echo " pdf_2on1 build PDF with two A5 pages on one A4 ordered by number" ;\ echo " pdf_book build PDF booklet (two A5 on A4)" ;\ echo " ps build PS" ;\ @@ -59,12 +65,6 @@ clean: html: $(TARGET).dvi $(L2H) $(L2HFLAGS) $(TARGET).tex -pdf: $(TARGET).pdf - -pdf_2on1: $(TARGET)_2on1.pdf - -pdf_book: $(TARGET)_book.pdf - ps: $(TARGET).ps ps_2on1: $(TARGET)_2on1.ps @@ -79,7 +79,7 @@ srcdist: clean figclean $(TARGET).dvi: *.tex *.bib @$(LATEX) $(TEXFLAGS) $(TARGET).tex ;\ if [ -f $(BIBFILE) ] ; then \ - for f in *.aux; do $(BIBTEX) $(BIBTEXFLAGS) $$f; done ;\ + for f in *.aux; do $(BIBTEX) $(BIBTEXFLAGS) $${f%.*} ; done ;\ else \ echo Warning: Bibliography file does not exist ;\ fi ;\ @@ -99,7 +99,7 @@ $(TARGET)_book.ps: $(TARGET).ps $(TARGET).pdf: *.tex *.bib @$(PDFLATEX) $(PDFLATEXFLAGS) $(TARGET).tex ;\ if [ -f $(BIBFILE) ] ; then \ - for f in *.aux ; do $(BIBTEX) $(BIBTEXFLAGS) $$f ; done ;\ + for f in *.aux ; do $(BIBTEX) $(BIBTEXFLAGS) $${f%.*} ; done ;\ else \ echo "Warning: Bibliography file does not exist" ;\ fi ;\ diff --git a/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd b/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd index fefdb440a16..d19bcc767c4 100644 --- a/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd +++ b/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd @@ -44,14 +44,14 @@ if "%psnupflags%"=="" set psnupflags=-2 -pA4 if "%pdflatexflags%"=="" set pdflatexflags=--shell-escape --synctex=1 if "%clext%"=="" set clext=*.bbl *.bak *.aux *.blg *.out *.toc *.log ^ - *.dvi *.tmp *.ps *.pdf *.synctex *.synctex.gz + *.dvi *.tmp *.ps *.pdf *.synctex *.synctex.gz *.run.xml *.bcf if "%clfiles%"=="" set clfiles=!clext! %archive% if "%srcfiles%"=="" set srcfiles=* if "%prereq%"=="" set prereq=*.tex *.bib if "%1"=="" ( - call :dvi + call :pdf ) else ( for %%f in (%*) do call :%%f ) @@ -71,7 +71,7 @@ goto :eof ) %latex% %latexflags% %target%.tex if exist %bibfile% ( - for %%f in (*.aux) do %bibtex% %bibtexflags% %%f + for %%f in (*.aux) do %bibtex% %bibtexflags% %%~nf ) else ( echo Warning: Bibliography file does not exist ) @@ -80,10 +80,10 @@ goto :eof goto :eof :help - echo dvi ^(default^) build DVI + echo dvi build DVI echo figclean clean output files in figures directory echo html convert DVI to HTML - echo pdf build PDF + echo pdf ^(default^) build PDF echo pdf_2on1 build PDF with two A5 pages on one A4 ordered by number echo pdf_book build PDF booklet ^(two A5 on A4^) echo ps build PS @@ -112,7 +112,7 @@ goto :eof ) %pdflatex% %pdflatexflags% %target%.tex if exist %bibfile% ( - for %%f in (*.aux) do %bibtex% %bibtexflags% %%f + for %%f in (*.aux) do %bibtex% %bibtexflags% %%~nf ) else ( echo Warning: Bibliography file does not exist ) diff --git a/Master/texmf-dist/doc/latex/disser/manual.tex b/Master/texmf-dist/doc/latex/disser/manual.tex index 8e5181fd92f..e1f6a63f8b0 100644 --- a/Master/texmf-dist/doc/latex/disser/manual.tex +++ b/Master/texmf-dist/doc/latex/disser/manual.tex @@ -25,17 +25,6 @@ menucolor = darkblue, urlcolor = darkblue } -\IfFileExists{pscyr.sty}{% - \usepackage{pscyr} - \renewcommand\ttdefault{cmtt} - \renewcommand\rmdefault{ftm} -}{ - \IfFileExists{cyrtimes.sty}{% - \renewcommand\ttdefault{cmtt} - \renewcommand\rmdefault{ftm} - }{} -} - \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} @@ -55,7 +44,7 @@ \let\makelabel\deflabel} }{\end{list}} -\def\fileversion{1.3.4} +\def\fileversion{1.4.0} \sloppy \begin{document} @@ -94,7 +83,7 @@ Пакет позволяет создавать документы, удовлетворяющие следующим стандартам: \begin{itemize} \item \href{http://protect.gost.ru/document.aspx?control=8&id=171831}{ГОСТ Р 7.0.11--2011 <<Диссертация и автореферат диссертации. Структура и правила оформления>>}; -\item \href{http://protect.gost.ru/document.aspx?control=7&id=130946}{ГОСТ~7.32--2001 <<Отчет о научно-исследовательской работе. Структура и правила оформления>>}; +\item \href{http://protect.gost.ru/document.aspx?control=7&id=130946}{ГОСТ 7.32--2001 <<Отчет о научно-исследовательской работе. Структура и правила оформления>>}; \item \href{http://protect.gost.ru/document.aspx?control=7&id=128845}{ГОСТ Р 7.0.4--2006 <<Издания. Выходные сведения. Общие требования и правила оформления>>}; \item \href{http://protect.gost.ru/document.aspx?control=7&id=173511}{ГОСТ Р 7.0.5--2008 <<Библиографическая ссылка. Общие требования и правила составления>>}. \end{itemize} @@ -152,20 +141,15 @@ classified & Включает вывод грифа секретности на титульном листе. \\\hline - colorlinks = \{true$\,\vert\,$\textbf{false}\} & - Создание цветных гиперссылок. - Цвета определяются соответствующими параметрами пакета \pkg{hyperref}. + colorlinks & + Включает цветные гиперссылки. Цвета определяются соответствующими параметрами пакета \pkg{hyperref}. \\\hline facsimile & Включает отображение подписей диссертанта и ученого секретаря на титульных листах автореферата и диссертации (только для кандидатских и докторских). По умолчанию включена только в шаблоне автореферата. \\\hline - fixint = \{\textbf{true}$\,\vert\,$false\} & - Замена стандартных знаков интегралов на прямые (из математического шрифта - \pkg{euler}). -\\\hline - libcat & - Включает вывод номера УДК на титульном листе. + fixint & + Включает замену стандартных знаков интегралов на прямые (из шрифта \pkg{euler}). \\\hline substylefile = filename.rtx & Имя файла с описанием стиля документа (оформление титульного листа, нумерация формул, элементов списков и т.\,д.). @@ -194,9 +178,15 @@ \\\hline\hline \end{longtable} +\section{Шаблоны документов} + +Возможности пакета демонстрируются на примере шаблонов дипломов и диссертаций. +В каталоге \file{templates} содержатся документы в кодировке CP-1251, для верстки библиографии используются \BibTeX{}8 со стилем \pkg{gost705}, пакеты \pkg{natbib} и \pkg{multibib}. +В каталоге \file{templates-utf8} содержатся документы в кодировке UTF-8, для верстки библиографии используются Biber и пакет Bib\LaTeX{} со стилем \pkg{biblatex-gost}. + \section{Система сборки документов} -В состав пакета входят две системы скриптов для автоматизации сборки и установки: файлы \file{Makefile}, совместимые с GNU Make, и файлы \file{nomake.cmd}, написанные на языке командного интерпретатора \file{cmd.exe} ОС Windows 2000 и выше. +Для автоматизации сборки и установки в состав пакета входят две системы скриптов: файлы \file{Makefile}, совместимые с GNU Make, и файлы \file{nomake.cmd}, написанные на языке командного интерпретатора \file{cmd.exe} ОС Windows 2000 и выше. Скрипты поддерживают одинаковый набор целей (targets). Использование в Unix-подобных окружениях: \begin{verbatim} @@ -274,11 +264,11 @@ nomake <target1> <target2> ... \file{templates/<тип-диссертации>}} \begin{deflist}{\longestlabel} -\item[dvi] - Сборка DVI-файла. Цель по умолчанию. \item[clean] Удаление файлов, полученных при сборке документа. Список файлов определяется переменной |CLFILES|. +\item[dvi] + Сборка DVI-файла. \item[figclean] Эквивалентно цели \cmd{clean} в каталоге \file{fig}. \item[help] @@ -287,7 +277,7 @@ nomake <target1> <target2> ... Конвертация DVI в HTML-файл с рисунками. Используемая программа: \href{http://www.latex2html.org/}{\cmd{latex2html}}. \item[pdf] - Сборка PDF-файла. + Сборка PDF-файла. Цель по умолчанию. \item[pdf\_2on1] Сборка PDF-файла с двумя страницами на один лист A4 и сохранением порядка следования страниц. \item[pdf\_book] @@ -299,7 +289,7 @@ nomake <target1> <target2> ... \item[ps\_book] Сборка PostScript-файла с двумя страницами на один лист A4 для брошюрования. \item[rtf] - Конвертация DVI в RTF. + Конвертация из DVI в RTF. \item[srcdist] Сборка архива из содержимого текущего каталога. \end{deflist} @@ -409,16 +399,6 @@ nomake <target1> <target2> ... \item Настраиваемые префикс и постфикс номера библиографической ссылки для оформления списка работ диссертанта в автореферате. \end{enumerate} -Для выделения курсивом некоторых полей библиографической записи, в файле \file{thesis.tex} нужно добавить определение -\begin{verbatim} -\def\BibEmph#1{\emph{#1}} -\end{verbatim} -перед следующим текстом -\begin{verbatim} -\bibliography{thesis} -\bibliographystyle{gost705} -\end{verbatim} - При описании русскоязычных источников следует явным образом присваивать полю |language| значение |russian|. Пример: \begin{verbatim} @@ -476,12 +456,12 @@ latex <tex-file> \subsection{Список работ диссертанта} -В автореферате список работ диссертанта должен быть отделен от списка цитируемой литературы, а ссылки на них должны отличаться друг от друга. -Для размещения в документе двух списков литературы с независимой нумерацией используется пакет \pkg{multibib}. - +В автореферате список работ диссертанта должен быть отделен от списка цитируемой литературы. +Для этого в документах с однобайтовой кодировкой используется пакет \pkg{multibib}, а для документов в кодировке UTF-8 --- пакет Bib\LaTeX{}. Описание библиографических ссылок на работы диссертанта должно находиться в файле \file{thesis.bib} вместе с остальными ссылками. -Полная сборка автореферата с двумя библиографиями выполняется следующей последовательностью команд. +Сборка автореферата в кодировке UTF-8 осуществляется стандартным способом. +Поскольку пакет \pkg{multibib} создает отдельные |aux|-файлы для каждой библиографии, полная сборка автореферата в кодировке CP-1251 выполняется следующей последовательностью команд: \begin{verbatim} latex autoref bibtex8 -H -c cp1251 autoref @@ -490,7 +470,7 @@ latex autoref latex autoref \end{verbatim} -Операция полной сборки документов осуществляется командами вида: +Операция полной сборки документов осуществляется командой: \begin{verbatim} nomake all \end{verbatim} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile new file mode 100644 index 00000000000..733d70078f5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile @@ -0,0 +1,32 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +TEXMF ?= /usr/share/texmf +DESTDIR ?= $(TEXMF) +DOCDIR ?= $(DESTDIR)/doc/latex/disser + +dvi clean figclean bmtoeps epstopdf fixbb pdftopng256 pdftotiffg4 ps ps_2on1 pdf pdf_2on1 html srcdist all allpdf: + @$(MAKE) -i -C bachelor $@ + @$(MAKE) -i -C specialist $@ + @$(MAKE) -i -C master $@ + @$(MAKE) -i -C candidate $@ + @$(MAKE) -i -C doctor $@ + +help: + @$(MAKE) -s -C candidate $@ ;\ + echo " install install templates" ;\ + echo " uninstall uninstall templates" ;\ + echo " reinstall reinstall templates" + +install: + cp -rf ../templates $(DOCDIR) ;\ + cp -rf ../templates-utf8 $(DOCDIR) ;\ + cp -rf ../include $(DOCDIR) + +uninstall: + -rm -rf $(DOCDIR) + +reinstall: uninstall install diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/1.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/1.tex new file mode 100644 index 00000000000..fd4f619bc28 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/1.tex @@ -0,0 +1,152 @@ +\chapter{Название главы} +\section{Название секции} + +Внутритекстовая формула $\frac{1}{\epsilon^*}=\frac{1}{\epsilon_\infty}-\frac{1}{\epsilon_0}$. +Внутритекстовая формула РІ стиле выделенной $\dfrac{1}{\epsilon_\infty}$. +Ссылки РЅР° литературу~\cite{Yoffe_1993_AP_42_173,Efros_1982_FTP_16_7_1209,% +Anselm_1978,Segall_1968,Agranovich_1983,InP,Mishchenko_1996,Skvortsov_2008,% +Perelman_2003_math:0307245,Nielsen_2010_1006.2735,patent1,patent2}. Ссылка РЅР° формулу~\eqref{e:Coulomb} +\begin{equation}\label{e:Coulomb} + \frac{1}{|\vec r_1 - \vec r_2|} = + 4\pi \int \frac{d^3 q}{(2\pi)^3}\, + \frac{e^{i\vec q(\vec r_1 - \vec r_2)}}{q^2}. +\end{equation} + +Ссылка РЅР° СЂРёСЃ.~\ref{f:fig} +\begin{figure}[!ht] + \centering + \includegraphics[width=4cm]{fig} + \caption{\label{f:fig}% + РџРѕРґРїРёСЃСЊ Рє СЂРёСЃСѓРЅРєСѓ. + } +\end{figure} + +\begin{wrapfigure}{r}{0.35\textwidth} +\centering +\includegraphics[width=4cm]{fig} +\caption{\label{f:ff}% +Р РёСЃСѓРЅРѕРє <<РІ РѕР±РѕСЂРєСѓ>>. +} +\end{wrapfigure} + +Если разность энергий электронно-дырочных уровней $E_2 - E_1$ близка Рє энергии продольного оптического фонона $\hbar\Omega_{\mathrm{LO}}$, то РІ разложении волновых функций полного гамильтониана можно ограничиться нулевым приближением для всех состояний, Р·Р° исключением близких РїРѕ значению Рє $E_2$. +Волновые функции последних представляют СЃРѕР±РѕР№ следующие комбинации вырожденных состояний\footnote{Текст СЃРЅРѕСЃРєРё}. + +Ссылка РЅР° таблицу~\ref{t:InPSiO2}. +\begin{table}[!ht] + \centering + \caption{Пример таблицы}\label{t:InPSiO2} + \begin{tabular}{l|ccc} + \hline\hline + & \quad$\lambda \cdot 10^{-11}$,~$\text{РґРёРЅ}\cdot\text{СЃРј}^{-2}$ + & \quad$\mu \cdot 10^{-11}$,~$\text{РґРёРЅ}\cdot\text{СЃРј}^{-2}$ + & \quad$\rho$, $\text{Рі}\cdot\text{СЃРј}^{-3}$ \\ + \hline + InP & 3.82 & 1.69 & 4.14 \\ + SiO$_{2}$ & 1.57 & 3.11 & 2.2 \\ + \hline\hline + \end{tabular} +\end{table} + +\begin{figure}[!ht] + \centering + \begin{minipage}{5cm} + \centering + \includegraphics[width=4cm]{fig} + \caption{Р РёСЃСѓРЅРѕРє СЃ отдельным названием} + \end{minipage} + \quad + \begin{minipage}{5cm} + \centering + \includegraphics[width=4cm]{fig} + \caption{Р РёСЃСѓРЅРѕРє СЃ отдельным названием} + \end{minipage} + \quad + \begin{minipage}{5cm} + \centering + \includegraphics[width=4cm]{fig} + \caption{Р РёСЃСѓРЅРѕРє СЃ отдельным названием} + \end{minipage} +\end{figure} + +\begin{figure}[!ht] + \centering + \begin{minipage}{5cm} + \includegraphics[width=4cm]{fig} + \end{minipage} + \begin{minipage}{5cm} + \includegraphics[width=4cm]{fig} + \end{minipage} + \caption{Р РёСЃСѓРЅРєРё СЃ единым названием} +\end{figure} + +Ссылка РЅР° внутренний СЂРёСЃСѓРЅРѕРє (СЂРёСЃ.~\ref{f:sub1}). + +\begin{figure}[!ht] +\centering + \begin{minipage}{5cm} + \includegraphics[width=4cm]{fig}\subcaption{}\label{f:sub1} + \end{minipage} + \begin{minipage}{5cm} + \includegraphics[width=4cm]{fig}\subcaption{}\label{f:sub2} + \end{minipage} + \begin{minipage}{5cm} + \includegraphics[width=4cm]{fig}\subcaption{}\label{f:sub3} + \end{minipage} + \caption[]{% + Р РёСЃСѓРЅРєРё СЃ единым названием Рё подчиненной нумерацией: + \subref{f:sub1} ссылка 1, + \subref{f:sub2} ссылка 2, + \subref{f:sub3} ссылка 3. + } +\end{figure} + +\subsection{Название подсекции} +Текст подсекции +\subsubsection{Название РїРѕРґ-подсекции} +Текст РїРѕРґ-подсекции +\paragraph{Название параграфа.} +Текст параграфа +\subparagraph{Название подпараграфа.} +Текст подпараграфа + +Нумеруемый СЃРїРёСЃРѕРє: +\begin{enumerate} + \item Первый уровень вложенности. + \begin{enumerate} + \item Второй уровень вложенности. + \begin{enumerate} + \item Третий уровень вложенности. + \end{enumerate} + \end{enumerate} +\end{enumerate} + +Демонстрация полностью настраиваемых окружений типа <<теорема>>. + +\newtheorem{theorem}{Теорема}[chapter] +\def\theoremstyle{} +\def\postthetheorem{:} + +\newtheorem{lemm}{Лемма}[chapter] +\def\thelemmstyle{\bfseries} +\def\oparglemmstyle{} +\def\lemmstyle{} +\def\preoparglemm{(} +\def\postoparglemm{):} + +\newtheorem{remark}{Примечание}[chapter] +\def\remarkstyle{\itshape} +\def\theremarkstyle{} +\def\posttheremark{:} + +\begin{lemm}[РЁСѓСЂР°] +Квадратная матрица, коммутирующая СЃРѕ всеми матрицами неприводимого представления, кратна единичной. +\end{lemm} + +\begin{theorem} +Гомоморфный образ РіСЂСѓРїРїС‹ изоморфен фактор-РіСЂСѓРїРїРµ РїРѕ СЏРґСЂСѓ гомоморфизма. +\end{theorem} + +\begin{remark} +Текст примечания. +\end{remark} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/Makefile new file mode 100644 index 00000000000..ef775e6d4f7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/Makefile @@ -0,0 +1,21 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +BIBTEX := biber +BIBTEXFLAGS := + +include ../../include/latex.mk + +all: pdf + +allpdf: pdf + +alldvi: dvi + +help: .help + @echo " all alias for pdf target" ;\ + echo " allpdf alias for pdf target" ;\ + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/app-a.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/app-a.tex new file mode 100644 index 00000000000..791bc0e8453 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/app-a.tex @@ -0,0 +1,2 @@ +\appendix +\chapter{Название приложения} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/concl.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/concl.tex new file mode 100644 index 00000000000..cd60e4f2708 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/concl.tex @@ -0,0 +1 @@ +\conclusion diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/Makefile new file mode 100644 index 00000000000..775b7fc3d88 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/Makefile @@ -0,0 +1 @@ +include ../../../include/latex.fig.mk
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/fig.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/fig.eps new file mode 100644 index 00000000000..9382ce4351e --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/fig.eps @@ -0,0 +1,490 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 235 371 361 470 +%%HiResBoundingBox: 236 371.521 360.901 469.38 +%................................. +%%Creator: MiKTeX GPL Ghostscript 860 (epswrite) +%%CreationDate: 2007/12/07 10:10:05 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2007 Artifex Software, Inc. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 1.001 0 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.1 0.1 scale +%%EndPageSetup +gsave mark +Q q +0 0 250000 250000 re +Y +20 w +4 M +K +2360 4631.09 626.66 0 S +2360 3784.43 620 0 S +255 G +2503.71 3882.92 23.24 -86.02 23.24 86.02 -46.48 0 f +2549.62 4534.78 -23.23 86.03 -23.24 -86.03 46.48 0 f +10 w +K +2526.66 4550.5 0 -683.29 S +2503.71 3882.92 23.24 -86.02 23.24 86.02 -46.48 0 f +2549.62 4534.78 -23.23 86.03 -23.24 -86.03 46.48 0 f +255 G +2806.11 4621.76 0 -754.26 f +2783.14 3883.11 23.23 -85.35 23.24 85.35 -46.48 0 f +K +2806.11 4621.76 0 -754.26 S +2783.14 3883.11 23.23 -85.35 23.24 85.35 -46.48 0 f +2947.11 4232 m +-4 -7.01 -7.66 -14.05 -10.98 -21.13 c +-3.32 -7.08 -6.26 -14.27 -8.82 -21.54 c +-0.24 -3.36 -0.66 -6.75 -1.26 -10.15 c +-0.6 -3.39 -1.34 -6.77 -2.22 -10.13 c +-0.16 -0.64 -0.42 -1.68 -0.78 -3.12 c +-0.36 -1.44 -0.82 -2.89 -1.38 -4.37 c +-0.56 -1.48 -1.26 -2.79 -2.1 -3.96 c +-0.84 -1.15 -1.79 -1.74 -2.82 -1.74 c +-1.45 0 -2.31 0.7 -2.59 2.11 c +-0.28 1.39 -0.32 2.96 -0.12 4.68 c +0.21 1.72 0.52 3.32 0.96 4.8 c +0.44 1.48 0.66 2.3 0.66 2.46 c +0.88 3.36 1.82 6.7 2.82 10.02 c +1 3.32 2.06 6.66 3.18 10.02 c +0.32 3.84 0.3 7.55 -0.06 11.16 c +-0.36 3.6 -1.1 7.08 -2.21 10.44 c +-1.28 3.76 -3.76 6.51 -7.45 8.23 c +-3.68 1.72 -7.92 2.58 -12.71 2.58 c +-2.16 0 -4.31 -0.18 -6.43 -0.54 c +-2.12 -0.36 -4.02 -0.9 -5.7 -1.62 c +-1.68 -0.72 -3.12 -1.66 -4.32 -2.82 c +-1.2 -1.16 -2 -2.54 -2.39 -4.14 c +-0.24 -0.8 -0.8 -1.2 -1.68 -1.2 c +-2.28 0 p +-1.12 0 -1.68 0.52 -1.68 1.56 c +0 0.48 p +0.72 2.96 1.98 5.73 3.78 8.33 c +1.8 2.59 3.92 4.86 6.36 6.81 c +2.44 1.95 5.1 3.48 7.98 4.59 c +2.88 1.11 5.84 1.67 8.89 1.67 c +3.27 0 6.16 -0.64 8.64 -1.91 c +2.48 -1.28 4.64 -2.93 6.48 -4.95 c +1.84 -2.03 3.4 -4.34 4.68 -6.93 c +1.28 -2.59 2.4 -5.21 3.36 -7.85 c +0.56 -1.6 1.02 -3.21 1.38 -4.86 c +0.36 -1.64 0.66 -3.3 0.9 -4.98 c +4.24 10.08 9.12 19.93 14.64 29.57 c +0.32 0.55 0.8 0.84 1.44 0.84 c +2.4 0 p +0.4 0 0.68 -0.04 0.84 -0.12 c +0.56 -0.4 0.84 -0.88 0.84 -1.44 c +0 -0.23 -0.08 -0.52 -0.24 -0.83 c +f +2947.67 4156.32 0 2.48 P +0.69 0 1.44 0 2.24 0 c +0.8 0 1.57 0.02 2.32 0.04 c +0.75 0.03 1.46 0.08 2.12 0.16 c +0.67 0.08 1.21 0.17 1.64 0.27 c +0.54 0.11 0.95 0.39 1.24 0.84 c +0.29 0.46 0.44 0.98 0.44 1.56 c +0 42.5 p +-1.54 -0.75 -3.21 -1.29 -5 -1.61 c +-1.79 -0.32 -3.61 -0.48 -5.48 -0.48 c +0 2.5 p +2.72 0 5.36 0.37 7.92 1.11 c +2.57 0.74 4.78 2.09 6.65 4.04 c +0.97 0 p +0.59 0 0.88 -0.29 0.88 -0.89 c +0 -47.17 p +0 -0.59 0.14 -1.11 0.44 -1.56 c +0.29 -0.45 0.71 -0.73 1.24 -0.84 c +0.43 -0.11 0.96 -0.2 1.61 -0.27 c +0.64 -0.09 1.34 -0.14 2.12 -0.16 c +0.77 -0.02 1.56 -0.04 2.36 -0.04 c +0.8 0 1.54 0 2.24 0 c +0 -2.48 p +-8.64 0.32 -17.29 0.32 -25.94 0 c +f +3209.61 4414.5 m +-4 -7 -7.67 -14.04 -10.98 -21.12 c +-3.32 -7.08 -6.26 -14.26 -8.82 -21.54 c +-0.23 -3.36 -0.66 -6.74 -1.26 -10.14 c +-0.6 -3.4 -1.34 -6.78 -2.22 -10.14 c +-0.16 -0.64 -0.42 -1.68 -0.78 -3.12 c +-0.36 -1.43 -0.82 -2.9 -1.39 -4.38 c +-0.55 -1.48 -1.25 -2.8 -2.09 -3.96 c +-0.84 -1.16 -1.79 -1.74 -2.82 -1.74 c +-1.45 0 -2.31 0.7 -2.59 2.1 c +-0.27 1.4 -0.31 2.96 -0.12 4.68 c +0.21 1.72 0.53 3.32 0.96 4.8 c +0.45 1.48 0.66 2.29 0.66 2.46 c +0.88 3.36 1.82 6.7 2.82 10.02 c +1 3.32 2.06 6.66 3.18 10.02 c +0.32 3.84 0.3 7.56 -0.06 11.16 c +-0.36 3.6 -1.09 7.08 -2.21 10.44 c +-1.28 3.76 -3.76 6.5 -7.45 8.22 c +-3.68 1.72 -7.92 2.58 -12.71 2.58 c +-2.16 0 -4.31 -0.18 -6.43 -0.54 c +-2.12 -0.36 -4.02 -0.9 -5.7 -1.62 c +-1.68 -0.72 -3.12 -1.66 -4.33 -2.82 c +-1.2 -1.16 -2 -2.54 -2.39 -4.14 c +-0.25 -0.8 -0.8 -1.2 -1.68 -1.2 c +-2.29 0 p +-1.12 0 -1.68 0.52 -1.68 1.56 c +0 0.48 p +0.72 2.96 1.97 5.73 3.78 8.32 c +1.8 2.59 3.92 4.86 6.36 6.81 c +2.44 1.95 5.1 3.48 7.98 4.59 c +2.88 1.11 5.84 1.67 8.89 1.67 c +3.27 0 6.16 -0.64 8.64 -1.91 c +2.48 -1.27 4.63 -2.93 6.47 -4.95 c +1.85 -2.04 3.4 -4.34 4.68 -6.93 c +1.28 -2.6 2.4 -5.21 3.36 -7.86 c +0.57 -1.6 1.02 -3.22 1.39 -4.86 c +0.35 -1.64 0.65 -3.3 0.9 -4.98 c +4.24 10.08 9.12 19.94 14.64 29.57 c +0.32 0.55 0.8 0.84 1.44 0.84 c +2.4 0 p +0.4 0 0.68 -0.04 0.84 -0.12 c +0.57 -0.4 0.84 -0.87 0.84 -1.43 c +0 -0.25 -0.08 -0.52 -0.23 -0.84 c +f +3235.98 4328.81 m +-0.59 -2.19 -0.81 -4.04 -0.64 -5.53 c +0.16 -1.5 0.91 -2.24 2.23 -2.24 c +0.65 0 1.23 0.27 1.77 0.8 c +0.53 0.53 1.01 1.28 1.43 2.23 c +0.42 0.96 0.83 2.08 1.2 3.36 c +0.37 1.28 0.74 2.7 1.11 4.24 c +0.12 0.48 0.43 0.72 0.97 0.72 c +0.88 0 p +0.54 0 0.74 -0.24 0.63 -0.72 c +-0.31 -1.23 -0.66 -2.57 -1.04 -4 c +-0.37 -1.45 -0.88 -2.78 -1.52 -4 c +-0.63 -1.23 -1.43 -2.25 -2.36 -3.1 c +-0.93 -0.84 -2.09 -1.26 -3.48 -1.26 c +-1.86 0 -3.36 0.53 -4.47 1.6 c +-1.12 1.06 -1.82 2.43 -2.09 4.07 c +-1.22 -1.49 -2.68 -2.81 -4.39 -3.95 c +-1.71 -1.15 -3.5 -1.72 -5.36 -1.72 c +-1.97 0 -3.62 0.51 -4.96 1.52 c +-1.33 1.02 -2.37 2.3 -3.12 3.86 c +-0.91 1.88 -1.39 3.91 -1.45 6.11 c +-0.05 2.2 0.21 4.42 0.8 6.67 c +0.59 2.25 1.45 4.47 2.56 6.67 c +1.13 2.2 2.59 4.23 4.41 6.11 c +1.49 1.55 3.18 2.85 5.08 3.89 c +1.89 1.05 3.8 1.57 5.72 1.57 c +1.65 0 3 -0.46 4.03 -1.36 c +1.05 -0.91 1.86 -2 2.44 -3.27 c +4.48 17.79 p +0.21 0.84 0.33 1.49 0.36 1.94 c +0.02 0.45 -0.1 0.78 -0.36 0.99 c +-0.32 0.26 -0.93 0.43 -1.84 0.51 c +-0.91 0.08 -1.93 0.12 -3.04 0.12 c +-0.59 0 -0.83 0.3 -0.72 0.9 c +0.23 0.66 p +0.11 0.49 0.46 0.79 1.04 0.9 c +7.45 0.66 2.79 0.23 p +0.26 0.06 0.46 -0.01 0.61 -0.2 c +0.13 -0.19 0.16 -0.42 0.11 -0.68 c +-11.51 -46.11 h +3234.89 4347.82 m +-0.09 0.51 -0.21 1.04 -0.36 1.57 c +-0.43 1.29 -1.05 2.38 -1.87 3.27 c +-0.83 0.89 -1.89 1.34 -3.16 1.34 c +-1.17 0 -2.32 -0.43 -3.44 -1.3 c +-1.12 -0.86 -2.14 -1.94 -3.05 -3.23 c +-1.28 -1.83 -2.24 -3.75 -2.87 -5.74 c +-0.64 -1.99 -1.23 -4.07 -1.77 -6.22 c +-0.54 -2.11 -0.97 -4.16 -1.32 -6.18 c +-0.35 -2.02 -0.33 -3.92 0.04 -5.7 c +0.27 -1.29 0.73 -2.39 1.41 -3.28 c +0.66 -0.89 1.61 -1.33 2.83 -1.33 c +1.28 0 2.55 0.45 3.81 1.37 c +1.25 0.92 2.4 2.02 3.48 3.32 c +0.42 0.54 0.82 1.05 1.19 1.54 c +0.38 0.48 0.72 1.02 1.05 1.61 c +4.32 17.38 p +-0.12 0.54 -0.2 1.06 -0.28 1.57 c +f +5.821 w +10 M +2 J +8 i +3040 4690 0 -117.65 S +3132.49 4690 24.41 -58.83 S +3156.9 4631.17 -24.41 -58.82 S +1 i +3111.7 4592.94 -45.72 0 0 2.47 P +0 0.16 0.08 0.39 0.25 0.7 c +18.68 19.89 p +2.3 2.43 4.59 4.92 6.86 7.47 c +2.27 2.55 4.32 5.14 6.13 7.76 c +1.81 2.63 3.28 5.38 4.39 8.24 c +1.12 2.86 1.67 5.86 1.67 9 c +0 2.59 -0.35 5.04 -1.05 7.36 c +-0.7 2.31 -1.73 4.36 -3.09 6.12 c +-1.36 1.77 -3.05 3.18 -5.07 4.23 c +-2.02 1.07 -4.39 1.59 -7.12 1.59 c +-3.95 0 -7.46 -1.16 -10.5 -3.47 c +-3.05 -2.32 -5.19 -5.23 -6.42 -8.77 c +0.91 0.23 1.86 0.29 2.83 0.18 c +1 -0.12 1.88 -0.43 2.66 -0.94 c +0.78 -0.51 1.43 -1.2 1.97 -2.06 c +0.53 -0.87 0.8 -1.89 0.8 -3.06 c +0 -2.04 -0.68 -3.59 -2.04 -4.65 c +-1.36 -1.06 -2.86 -1.59 -4.5 -1.59 c +-1.57 0 -3.03 0.53 -4.39 1.59 c +-1.35 1.05 -2.03 2.61 -2.03 4.65 c +0 2.98 0.59 5.8 1.78 8.47 c +1.19 2.66 2.81 4.98 4.86 6.94 c +2.04 1.95 4.45 3.5 7.25 4.62 c +2.78 1.12 5.73 1.68 8.85 1.68 c +3.85 0 7.39 -0.57 10.63 -1.71 c +3.24 -1.13 6 -2.74 8.3 -4.81 c +2.29 -2.08 4.07 -4.51 5.34 -7.3 c +1.27 -2.79 1.9 -5.82 1.9 -9.11 c +0 -3.76 -0.86 -7.19 -2.59 -10.29 c +-1.73 -3.1 -3.89 -5.98 -6.48 -8.64 c +-2.59 -2.66 -5.34 -5.17 -8.26 -7.52 c +-2.91 -2.35 -5.57 -4.63 -7.95 -6.82 c +-14.18 -13.17 12.46 0 p +1.8 0 3.9 0 6.28 0 c +2.38 0 4.62 0.02 6.72 0.06 c +2.1 0.04 3.91 0.12 5.43 0.23 c +1.52 0.12 2.36 0.25 2.53 0.41 c +0.32 0.31 0.63 0.88 0.92 1.71 c +0.29 0.82 0.55 1.74 0.8 2.77 c +0.25 1.02 0.47 2.08 0.68 3.17 c +0.2 1.11 0.39 2.12 0.55 3.06 c +3.37 0 -3.47 -20.48 p f +8 i +3488.31 4131.69 0 -117.66 S +3580.8 4131.69 24.41 -58.83 S +3605.21 4072.86 -24.41 -58.83 S +1 i +3562.3 4045.85 m +-1.36 -2.82 -3.21 -5.25 -5.59 -7.3 c +-2.54 -2.2 -5.38 -3.85 -8.55 -4.94 c +-3.15 -1.1 -6.46 -1.65 -9.91 -1.65 c +-3.12 0 -6.18 0.39 -9.19 1.16 c +-3 0.78 -5.66 1.96 -8.01 3.55 c +-2.34 1.58 -4.22 3.54 -5.61 5.85 c +-1.41 2.32 -2.1 4.96 -2.1 7.94 c +0 2.2 0.71 3.83 2.16 4.88 c +1.43 1.06 2.98 1.59 4.62 1.59 c +1.73 0 3.31 -0.53 4.75 -1.59 c +1.43 -1.05 2.16 -2.69 2.16 -4.88 c +0 -1.25 -0.24 -2.32 -0.74 -3.18 c +-0.49 -0.87 -1.12 -1.57 -1.9 -2.12 c +-0.78 -0.55 -1.67 -0.92 -2.65 -1.11 c +-1 -0.2 -1.93 -0.21 -2.84 -0.06 c +1.64 -2.83 4.23 -5.04 7.77 -6.65 c +3.54 -1.61 7.4 -2.41 11.59 -2.41 c +2.05 0 3.94 0.5 5.67 1.48 c +1.72 1 3.16 2.32 4.32 3.98 c +1.39 2.06 2.33 4.31 2.82 6.72 c +0.49 2.42 0.73 4.9 0.73 7.44 c +0 2.54 -0.24 5.02 -0.73 7.43 c +-0.49 2.42 -1.43 4.66 -2.82 6.73 c +-1.15 1.66 -2.6 3.01 -4.32 4.04 c +-1.73 1.02 -3.62 1.54 -5.67 1.54 c +-8.39 0 p +-0.73 0 -1.1 0.34 -1.1 1.02 c +0 0.34 p +-0.09 0.3 0 0.56 0.24 0.8 c +0.25 0.23 0.54 0.34 0.86 0.34 c +1.15 0.16 2.3 0.23 3.46 0.23 c +1.15 0 2.3 0.08 3.46 0.23 c +2.13 0.16 4 0.8 5.61 1.94 c +1.6 1.14 2.93 2.61 4 4.41 c +1.07 1.8 1.88 3.86 2.4 6.17 c +0.54 2.31 0.8 4.68 0.8 7.12 c +0 1.81 -0.18 3.51 -0.55 5.12 c +-0.37 1.61 -1.13 3.04 -2.29 4.29 c +-2.21 2.52 -5.04 3.77 -8.49 3.77 c +-3.61 0 -6.92 -0.66 -9.91 -2 c +-3.01 -1.33 -5.25 -3.14 -6.72 -5.41 c +1.72 0.39 3.43 0.08 5.12 -0.95 c +1.68 -1.02 2.52 -2.66 2.52 -4.93 c +0 -1.96 -0.64 -3.44 -1.95 -4.41 c +-1.31 -0.99 -2.73 -1.48 -4.3 -1.48 c +-1.54 0 -2.98 0.49 -4.29 1.48 c +-1.3 0.98 -1.96 2.45 -1.96 4.41 c +0 2.51 0.62 4.76 1.85 6.77 c +1.23 2 2.84 3.7 4.85 5.12 c +2.01 1.41 4.3 2.5 6.88 3.24 c +2.58 0.76 5.22 1.13 7.93 1.13 c +2.86 0 5.64 -0.37 8.35 -1.12 c +2.7 -0.75 5.19 -1.91 7.49 -3.47 c +1.96 -1.34 3.61 -2.99 4.91 -4.95 c +1.31 -1.96 1.96 -4.16 1.96 -6.59 c +0 -2.51 -0.45 -4.86 -1.35 -7.06 c +-0.9 -2.2 -2.1 -4.2 -3.61 -6.01 c +-1.52 -1.8 -3.32 -3.38 -5.41 -4.71 c +-2.09 -1.34 -4.36 -2.39 -6.82 -3.18 c +2.38 -0.4 4.66 -1.06 6.82 -2.01 c +2.18 -0.94 4.2 -2.19 6.09 -3.76 c +2.37 -1.96 4.23 -4.3 5.59 -7 c +1.36 -2.71 2.03 -5.56 2.03 -8.54 c +0 -3.07 -0.67 -6.01 -2.03 -8.83 c +f +8 i +3040 3836.67 0 -117.66 S +3132.49 3836.67 24.41 -58.83 S +3156.9 3777.84 -24.41 -58.83 S +1 i +3071.72 3739.66 0 3.64 P +1.06 0 2.22 0 3.45 0 c +1.23 0 2.42 0.02 3.57 0.06 c +1.16 0.04 2.24 0.12 3.27 0.23 c +1.03 0.12 1.87 0.25 2.53 0.41 c +0.82 0.16 1.45 0.57 1.9 1.24 c +0.45 0.66 0.68 1.43 0.68 2.29 c +0 62.53 p +-2.38 -1.11 -4.95 -1.91 -7.7 -2.4 c +-2.75 -0.47 -5.58 -0.71 -8.45 -0.71 c +0 3.59 p +4.19 0 8.26 0.55 12.2 1.65 c +3.93 1.1 7.34 3.1 10.2 6 c +1.47 0 p +0.9 0 1.35 -0.43 1.35 -1.29 c +0 -69.36 p +0 -0.87 0.23 -1.63 0.67 -2.29 c +0.45 -0.68 1.09 -1.09 1.91 -1.24 c +0.66 -0.16 1.48 -0.29 2.46 -0.41 c +0.99 -0.12 2.08 -0.2 3.27 -0.23 c +1.19 -0.04 2.4 -0.06 3.63 -0.06 c +1.23 0 2.38 0 3.46 0 c +0 -3.64 p +-13.3 0.47 -26.59 0.47 -39.88 0 c +f +255 G +3210.16 4148.94 87.98 -69.68 -41.36 104.34 -46.62 -34.66 f +10 w +4 M +0 J +K +2887.5 4631.09 357.5 -480.95 S +3210.16 4148.94 87.98 -69.68 -41.36 104.34 -46.62 -34.66 f +1 J +1 j +3150 4076.09 60 0 S +3262.5 4076.09 60 0 S +3375 4076.09 60 0 S +2470.47 4203 m +-0.16 -0.72 -0.6 -1.16 -1.32 -1.32 c +-1.32 0 p +-0.72 0 -1.08 0.36 -1.08 1.09 c +0.64 3.91 0.8 7.66 0.48 11.22 c +-0.32 3.55 -1.18 6.7 -2.58 9.41 c +-1.4 2.73 -3.3 4.9 -5.7 6.54 c +-2.4 1.64 -5.32 2.46 -8.76 2.46 c +-4.16 0 -8.32 -1.05 -12.48 -3.12 c +-4.16 -2.09 -7.92 -4.85 -11.28 -8.29 c +-3.93 -4.09 -6.98 -8.59 -9.19 -13.52 c +-2.2 -4.93 -3.94 -9.95 -5.22 -15.08 c +-1.36 -5.2 -2.14 -10.25 -2.34 -15.15 c +-0.2 -4.88 0.66 -9.36 2.58 -13.46 c +1.68 -3.52 4.12 -6.33 7.32 -8.41 c +3.2 -2.08 6.96 -3.12 11.28 -3.12 c +2.32 0 4.63 0.32 6.91 0.95 c +2.28 0.65 4.36 1.55 6.24 2.75 c +1.88 1.18 3.5 2.62 4.86 4.29 c +1.36 1.66 2.28 3.48 2.76 5.46 c +2.52 10.24 p +0.48 1.9 0.29 3.05 -0.59 3.46 c +-0.88 0.39 -2.36 0.63 -4.45 0.71 c +-2.08 0.08 -4.2 0.12 -6.36 0.12 c +-0.4 0 -0.7 0.13 -0.9 0.38 c +-0.21 0.25 -0.22 0.6 -0.06 1.04 c +0.24 1.15 p +0.08 0.43 0.28 0.77 0.6 1.02 c +0.32 0.24 0.68 0.37 1.08 0.37 c +5.6 -0.25 11.32 -0.36 17.16 -0.36 c +3.76 0 7.53 0.12 11.29 0.36 c +0.4 0 0.7 -0.13 0.9 -0.37 c +0.2 -0.25 0.22 -0.59 0.06 -1.02 c +-0.24 -1.15 p +-0.16 -0.95 -0.72 -1.42 -1.68 -1.42 c +-1.36 0 -2.54 -0.04 -3.54 -0.12 c +-1 -0.09 -1.75 -0.29 -2.22 -0.59 c +-0.48 -0.25 -1 -1.43 -1.56 -3.57 c +-6 -23.47 p +0 -0.23 -0.16 -0.52 -0.48 -0.83 c +-0.24 -0.24 -0.56 -0.36 -0.96 -0.36 c +-0.32 0 -0.57 0.13 -0.72 0.36 c +-0.88 1.04 -1.68 2.12 -2.4 3.27 c +-0.72 1.15 -1.28 2.4 -1.68 3.76 c +-2.64 -3.27 -6.12 -5.74 -10.44 -7.45 c +-4.32 -1.71 -8.64 -2.56 -12.96 -2.56 c +-5.28 0 -9.98 1.14 -14.1 3.42 c +-4.12 2.28 -7.46 5.42 -10.02 9.43 c +-2.63 4.32 -4.21 9.11 -4.73 14.39 c +-0.52 5.27 -0.1 10.76 1.26 16.43 c +1.43 5.68 3.76 11.16 6.96 16.44 c +3.2 5.28 7.2 10.08 12 14.4 c +4.48 3.92 9.36 7.04 14.64 9.36 c +5.28 2.32 10.56 3.48 15.84 3.48 c +4.16 0 7.7 -0.94 10.62 -2.82 c +2.92 -1.87 5.22 -4.37 6.9 -7.5 c +8.52 9.72 p +0.24 0.4 0.6 0.6 1.08 0.6 c +0.48 0 p +0.71 0 1 -0.39 0.84 -1.16 c +-8.04 -31.84 p f +cleartomark end end pagesave restore + showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/nomake.cmd new file mode 100644 index 00000000000..d5b89784882 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/fig/nomake.cmd @@ -0,0 +1 @@ +@call ..\..\..\include\latex.fig.nmk.cmd %*
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/intro.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/intro.tex new file mode 100644 index 00000000000..8b7194aafe7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/intro.tex @@ -0,0 +1 @@ +\intro diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/nomake.cmd new file mode 100644 index 00000000000..b5e731397f5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/nomake.cmd @@ -0,0 +1,35 @@ +@echo off + +rem Makefile for documents and templates +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +chcp 1251 > nul +set bibtex=biber +set bibtexflags= +set latexnmk=call ..\..\include\latex.nmk.cmd + +if "%1"=="" ( + %latexnmk% +) else ( + for %%f in (%*) do if "%%f"=="help" ( + call :%%f + ) else if "%%f"=="all" ( + %latexnmk% pdf + ) else if "%%f"=="allpdf" ( + %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi + ) else ( + %latexnmk% %%f + ) +) + +exit /b + +:help + echo all alias for pdf target + echo allpdf alias for pdf target + echo alldvi alias for dvi target + %latexnmk% help +goto :eof + diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.bib new file mode 100644 index 00000000000..ea2e0c361fe --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.bib @@ -0,0 +1,173 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {Р. Р. Рванов and Рџ. Рџ. Петров and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {Рџ. Рџ. Петров and Р. Р. Рванов and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, + keywords = {own}, +} + +@ARTICLE{Yoffe_1993_AP_42_173, + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, +} + +@ARTICLE{Efros_1982_FTP_16_7_1209, + author = {{\relax РђР»}. Р›. Рфрос and Рђ. Р›. Рфрос}, + title = {Межзонное поглощение света РІ полупроводниковом шаре}, + journal = {Физика Рё техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, +} + +@BOOK{Anselm_1978, + author = {Рђ. Р. Ансельм}, + title = {Введение РІ теорию полупроводников}, + publisher = {Наука}, + address = {РњРѕСЃРєРІР°}, + year = {1978}, + language = {russian}, +} + +@INPROCEEDINGS{Segall_1968, + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, +} + +@INBOOK{Agranovich_1983, + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, +} + +@INCOLLECTION{InP, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, + organization = {Ioffe Physico-Technical Institute}, + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Р•. Р–. Мищенко}, + title = {Неупругое рассеяние света РІ системе взаимодействующих + электронов Рё фононов}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {Рњ. Рђ. Скворцов}, + title = {Флуктуационные Рё интерференционные эффекты РІ мезоскопических системах}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. Рґ-СЂР° физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Р. Р’. Тернер}, + authortype = {РЎРЁРђ}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, РёРЅРє.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. в„– 7 (I С‡.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {РЎРЁРђ}, + pagetotal = {5 СЃ.~: РёР».}, + language = {russian}, +} + +@PATENT{patent2, + author = {Р’. Р. Чугаева}, + authortype = {Р Р¤}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} H 04 Р’ 1/38, Рќ 04 J 13/00}, + holder = {заявитель Рё патентообладатель Воронеж. науч.-ислед. РёРЅ-С‚ СЃРІСЏР·Рё.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. в„– 23 (II С‡.)}, + pagetotal = {2 СЃ.~: РёР».}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.tex new file mode 100644 index 00000000000..b8f40840826 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/bachelor/thesis.tex @@ -0,0 +1,130 @@ +\documentclass[% +bachelor, % тип документа +subf, % использовать пакет subcaption для вложенной нумерации СЂРёСЃСѓРЅРєРѕРІ +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%fixint, % включить прямые знаки интегралов +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\ifpdf\usepackage{epstopdf}\fi + +\usepackage[style=gost-numeric, + backend=biber, + language=auto, + hyperref=auto, + autolang=other, + sorting=none +]{biblatex} + +\addbibresource{thesis.bib} + +% Плавающие СЂРёСЃСѓРЅРєРё "РІ РѕР±РѕСЂРєСѓ". +\usepackage{wrapfig} + +% Номера страниц СЃРЅРёР·Сѓ Рё РїРѕ центру +%\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{1111/1} % Группа +\coursenum{111111} % Номер специальности +\course{Физика} % Название специальности + +% Научный руководитель +\sa {Р¤РРћ руководителя} +\sastatus{Рґ.~С„.-Рј.~РЅ., СЃС‚.~РЅ.~СЃ.} + +% Город Рё РіРѕРґ +\city{Санкт-Петербург} +\date{\number\year} + +\maketitle + +%% +%% Titlepage in English +%% +% +%\institution{Name of Organization} +% +%% Approved by +%\apname{Professor S.\,S.~Sidorov} +% +%\title{Bachelor's Thesis} +% +%% Topic +%\topic{Dummy Title} +% +%% Author +%\author{Author's Name} % Full Name +%\course{Physics} % Название специальности +% +%\group{} % Study Group +% +%% Scientific Advisor +%\sa {I.\,I.~Ivanov} +%\sastatus {Professor} +% +%% Reviewer +%\rev {P.\,P.~Petrov} +%\revstatus{Associate Professor} +% +%% City & Year +%\city{Saint Petersburg} +%\date{\number\year} +% +%\maketitle[en] + +% Содержание +\tableofcontents + +% Введение +\input{intro} + +% Глава 1 +\input{1} +% Глава 2 +%\input{2} + +% Заключение +\input{concl} + +% РЎРїРёСЃРѕРє литературы +\printbibliography[heading=bibintoc] + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/1.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/1.tex new file mode 100644 index 00000000000..a7f621e9c69 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/1.tex @@ -0,0 +1,3 @@ +\chapter{Название главы} +\section{Название секции} +\section{Выводы Рє первой главе}
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/Makefile new file mode 100644 index 00000000000..f74054616ea --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/Makefile @@ -0,0 +1,30 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +BIBTEX := biber +BIBTEXFLAGS := + +include ../../include/latex.mk + +all: + @env TARGET=thesis $(MAKE) ;\ + env TARGET=autoref $(MAKE) ;\ + eval unset TARGET + +allpdf: + @env TARGET=thesis $(MAKE) pdf ;\ + env TARGET=autoref $(MAKE) pdf ;\ + eval unset TARGET + +alldvi: + @env TARGET=thesis $(MAKE) dvi ;\ + env TARGET=autoref $(MAKE) dvi ;\ + eval unset TARGET + +help: .help + @echo " all build PDF of autoref and thesis" ;\ + echo " allpdf build PDF of autoref and thesis" ;\ + echo " alldvi build DVI of autoref and thesis" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/app-a.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/app-a.tex new file mode 100644 index 00000000000..362b35263b7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/app-a.tex @@ -0,0 +1 @@ +\chapter{Название приложения} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/autoref.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/autoref.tex new file mode 100644 index 00000000000..a5213b86373 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/autoref.tex @@ -0,0 +1,216 @@ +\documentclass[% +autoref, % тип документа +href, % использовать пакет hyperref для создания гиперссылок +facsimile, % отображать факсимиле диссертанта Рё ученого секретаря +colorlinks, % цветные гиперссылки +%fixint, % отключить прямые знаки интегралов +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%classified, % РіСЂРёС„ секретности +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\usepackage{tabularx} +\ifpdf\usepackage{epstopdf}\fi + +\usepackage[style=gost-numeric, + backend=biber, + language=auto, + hyperref=auto, + autolang=other, + defernumbers, + sorting=none +]{biblatex} + +\addbibresource{thesis.bib} + +% Номера страниц СЃРЅРёР·Сѓ Рё РїРѕ центру +%\pagestyle{footcenter} +%\chapterpagestyle{footcenter} + +% Точка СЃ запятой РІ качестве разделителя между номерами цитирований +%\setcitestyle{semicolon} + +% Путь Рє файлам СЃ иллюстрациями +\graphicspath{{fig/}} + +\begin{document} +% Включение файла СЃ общим текстом диссертации Рё автореферата +% (текст титульного листа Рё характеристика работы). +\input{common} + +% номер РєРѕРїРёРё для грифа секретности +%\copynum{1} +% класс доступа +%\classlabel{Для служебного пользования} + +\title{АВТОРЕФЕРАТ\\ +диссертации РЅР° соискание ученой степени\\ +кандидата физико-математических наук} + +\maketitle + +% Внутренняя сторона обложки +\thispagestyle{empty} +\vspace*{-2cm} +\noindent +\begin{center} +Работа выполнена РІ \emph{название организации}. +\end{center} +\vskip1ex +\begin{tabularx}{\linewidth}{lp{1cm}X} +Научный руководитель: & & \emph{ученая степень}, \\ + & & \emph{ученое звание}, \\ + & & \emph{фамилия РёРјСЏ отчество} +\\ +Официальные оппоненты: & & \emph{ученая степень}, \\ + & & \emph{ученое звание}, \\ + & & \emph{фамилия РёРјСЏ отчество}\\ + & & \emph{ученая степень}, \\ + & & \emph{ученое звание}, \\ + & & \emph{фамилия РёРјСЏ отчество} +\\ +Ведущая организация: & & \emph{название организации}\\ +\end{tabularx} + +\vskip2ex\noindent +Защита состоится \datefield{} РІ \rule[0pt]{1cm}{0.5pt} часов +РЅР° заседании диссертационного совета \emph{шифр совета} РїСЂРё \emph{название +организации, РїСЂРё которой создан совет}, расположенном РїРѕ адресу: +\emph{адрес} + +\vskip1ex\noindent +РЎ диссертацией можно ознакомиться РІ библиотеке +\emph{название организации}. + +\vskip1ex\noindent +Автореферат разослан \datefield{} + +\vskip2ex\noindent +Отзывы Рё замечания РїРѕ автореферату РІ РґРІСѓС… экземплярах, заверенные +печатью, РїСЂРѕСЃСЊР±Р° высылать РїРѕ вышеуказанному адресу РЅР° РёРјСЏ ученого секретаря +диссертационного совета. + +\vfill\noindent +\begin{minipage}[b]{0.4\linewidth} + Ученый секретарь\\ + диссертационного совета,\\ + \emph{ученая степень}, \emph{ученое звание} +\end{minipage} +\hfill +% вставка файла, содержащего факсимиле ученого секретаря +\makeatletter +\ifDis@facsimile + \includegraphics[width=3cm]{sec-facsimile}\hfill +\fi% +\makeatother% +\emph{фамилия Рё. Рѕ.} + +\clearpage + +\nsection{Общая характеристика работы} + +% Актуальность работы +\actualitysection +\actualitytext + +% Степень разработанности темы исследования +\developmentsection +\developmenttext + +% Цели Рё задачи диссертационной работы +\objectivesection +\objectivetext + +% Научная РЅРѕРІРёР·РЅР° +\noveltysection +\noveltytext + +% Теоретическая Рё практическая значимость +\valuesection +\valuetext + +% Методология Рё методы исследования +\methodssection +\methodstext + +% Положения, выносимые РЅР° защиту +\resultssection +\resultstext + +% Степень достоверности Рё апробация результатов +\approbationsection +\approbationtext + +% Публикации +\pubsection +\pubtext + +% Личный вклад автора +\contribsection +\contribtext + +% Структура Рё объем диссертации +\structsection +\structtext + +\nsection{Содержание работы} + +\textbf{Р’Рѕ Введении} обоснована актуальность диссертационной работы, сформулирована цель Рё аргументирована научная РЅРѕРІРёР·РЅР° исследований, показана практическая значимость полученных результатов, представлены выносимые РЅР° защиту научные положения. + +\textbf{Р’ первой главе} ... + +Содержание первой главы. + +Результаты первой главы опубликованы РІ работе~\cite{Ivanov_1999_Journal_17_173}. + +\textbf{Р’Рѕ второй главе} ... + +Содержание второй главы. + +Результаты второй главы опубликованы РІ работе~\cite{Petrov_2001_Journal_23_12321}. + +\textbf{Р’ третьей главе} ... + +Содержание третьей главы. + +Результаты третьей главы опубликованы РІ работе~\cite{Sidorov_2002_Journal_32_1531}. + +\textbf{Р’ Заключении} + +% ---------------------------------------------------------------- +\printbibliography[keyword=own,title={Основные публикации РїРѕ теме диссертации}] +\printbibliography[notkeyword=own,title={Цитированная литература}] + +% ---------------------------------------------------------------- +% Выходные данные +\clearpage +\thispagestyle{empty} +\normalfont\selectfont +\vspace*{2cm} +\begin{center} +\textit{Научное издание}\\ +\vskip 2cm +\makeatletter +\@author +\vskip 1.5cm +\@title{} РЅР° тему:\\ +\@topic\\ +\makeatother +\end{center} +\vfill +Подписано РІ печать~25.01.2011. +Формат~$60 \times 90$~1/16. +Тираж~100~СЌРєР·. +Заказ~256.\\[2ex] +\noindent +Санкт-Петербургская издательская фирма <<Наука>> Р РђРќ. +199034, Санкт-Петербург, Менделеевская линия, 1, +\href{http://www.naukaspb.spb.ru}{http://www.naukaspb.spb.ru} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/common.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/common.tex new file mode 100644 index 00000000000..8fcc9a5f508 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/common.tex @@ -0,0 +1,77 @@ +% Общие поля титульного листа диссертации Рё автореферата +\institution{Название организации} + +\topic{Тема диссертации} + +\author{Р¤РРћ автора} + +\specnum{01.04.05} +\spec{Оптика} +%\specsndnum{01.04.07} +%\specsnd{Физика конденсированного состояния} + +\sa{Р¤РРћ руководителя} +\sastatus{Рґ.~С„.-Рј.~РЅ., РїСЂРѕС„.} +%\sasnd{Р¤РРћ второго руководителя} +%\sasndstatus{Рє.~С„.-Рј.~РЅ., РїСЂРѕС„.} + +%\scon{Р¤РРћ консультанта} +%\sconstatus{Рґ.~С„.-Рј.~РЅ., РїСЂРѕС„.} +%\sconsnd{Р¤РРћ второго консультанта} +%\sconsndstatus{Рґ.~С„.-Рј.~РЅ., РїСЂРѕС„.} + +\city{Санкт-Петербург} +\date{\number\year} + +% Общие разделы автореферата Рё диссертации +\mkcommonsect{actuality}{Актуальность темы исследования.}{% +Текст РѕР± актуальности. Ссылка~\cite{Yoffe_1993_AP_42_173}. +} + +\mkcommonsect{development}{Степень разработанности темы исследования.}{ +Текст Рѕ степени разработанности темы. +} + +\mkcommonsect{objective}{Цели Рё задачи диссертационной работы:}{% +РЎРїРёСЃРѕРє целей. + +Для достижения поставленных целей были решены следующие задачи: +} + +\mkcommonsect{novelty}{Научная РЅРѕРІРёР·РЅР°.}{% +Текст Рѕ РЅРѕРІРёР·РЅРµ. +} + +\mkcommonsect{value}{Теоретическая Рё практическая значимость.}{% +Результаты, изложенные РІ диссертации, РјРѕРіСѓС‚ быть использованы для ... +} + +\mkcommonsect{methods}{Методология Рё методы исследования.}{% +Текст Рѕ методах исследования. +} + +\mkcommonsect{results}{Положения, выносимые РЅР° защиту:}{% +Текст Рѕ положениях Рё результатах. +} + +\mkcommonsect{approbation}{Степень достоверности Рё апробация результатов.}{% +Основные результаты диссертации докладывались РЅР° следующих конференциях: +} + +\mkcommonsect{pub}{Публикации.}{% +Материалы диссертации опубликованы РІ $N$ печатных работах, РёР· РЅРёС… $n_1$ +статей РІ рецензируемых журналах~\cite{Ivanov_1999_Journal_17_173, +Petrov_2001_Journal_23_12321,Sidorov_2002_Journal_32_1531}, $n_2$ статей РІ +сборниках трудов конференций Рё $n_3$ тезисов докладов. +} + +\mkcommonsect{contrib}{Личный вклад автора.}{% +Содержание диссертации Рё основные положения, выносимые РЅР° защиту, отражают персональный вклад автора РІ опубликованные работы. +Подготовка Рє публикации полученных результатов проводилась совместно СЃ соавторами, причем вклад диссертанта был определяющим. Р’СЃРµ представленные РІ диссертации результаты получены лично автором. +} + +\mkcommonsect{struct}{Структура Рё объем диссертации.}{% +Диссертация состоит РёР· введения, РѕР±Р·РѕСЂР° литературы, $n$ глав, заключения Рё библиографии. +Общий объем диссертации $P$ страниц, РёР· РЅРёС… $p_1$ страницы текста, включая $f$ СЂРёСЃСѓРЅРєРѕРІ. +Библиография включает $B$ наименований РЅР° $p_2$ страницах. +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/concl.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/concl.tex new file mode 100644 index 00000000000..cd60e4f2708 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/concl.tex @@ -0,0 +1 @@ +\conclusion diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/defs.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/defs.tex new file mode 100644 index 00000000000..827832111b1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/defs.tex @@ -0,0 +1,9 @@ +% РЎРїРёСЃРѕРє сокращений Рё условных обозначений +\defs + +\begin{longtable}{lp{0.025\textwidth}p{0.89\textwidth}} +$\vec A$ & --- & векторный потенциал\\ +$I$ & --- & интенсивность света\\ +$j_l$ & --- & сферическая функция Бесселя первого СЂРѕРґР°\\ +$Y_{lm}$ & --- & сферическая гармоника\\ +\end{longtable} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/dict.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/dict.tex new file mode 100644 index 00000000000..3a55f5b54c2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/dict.tex @@ -0,0 +1,4 @@ +% Словарь терминов +\dict + +\textbf{Термин} "--- определение. diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/Makefile new file mode 100644 index 00000000000..775b7fc3d88 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/Makefile @@ -0,0 +1 @@ +include ../../../include/latex.fig.mk
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/facsimile.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/facsimile.eps new file mode 100644 index 00000000000..9a944f547aa --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/facsimile.eps @@ -0,0 +1,260 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 7 14 78 29 +%%HiResBoundingBox: 7.818750 14.902032 77.220003 28.578282 +%........................................... +%%Creator: GPL Ghostscript 815 (epswrite) +%%CreationDate: 2008/12/01 04:15:45 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end readonly def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.12 0.12 scale +%%EndPageSetup +gsave mark +Q q +0 0 4958 0 0 7017 ^ Y +153 G +93.55 232.5 105.63 0 -0.94 -2.89 P +-4.58 -0.05 -8.05 -0.87 -10.39 -2.46 c +-2.34 -1.59 -4.82 -6.84 -7.42 -15.74 c +-17.89 -61.17 p +-2.08 -7.19 -3.12 -11.8 -3.12 -13.83 c +0 -2.45 0.79 -4.18 2.38 -5.2 c +1.59 -1.02 4.6 -1.6 9.02 -1.76 c +-1.02 -2.89 -40.86 0 0.78 2.89 p +5.31 0 9.11 1.2 11.41 3.59 c +2.29 2.4 4.56 7.37 6.8 14.92 c +23.28 79.14 -48.75 0 -22.66 -78.05 p +-1.67 -5.78 -2.5 -9.95 -2.5 -12.5 c +0 -4.74 3.98 -7.11 11.95 -7.11 c +-0.94 -2.89 -42.66 0 ^ p +3.86 0.05 6.64 0.39 8.36 1.02 c +1.72 0.63 3.31 1.9 4.77 3.83 c +1.46 1.93 2.84 5.11 4.14 9.53 c +20.55 68.98 p +1.14 3.91 1.72 6.75 1.72 8.52 c +0 3.18 -1.04 5.32 -3.12 6.45 c +-2.08 1.12 -5.47 1.73 -10.16 1.84 c +0.7 2.89 p f +259.88 172.81 m +0 -7.81 -2.07 -15.55 -6.21 -23.2 c +-4.14 -7.66 -9.91 -13.72 -17.3 -18.2 c +-7.39 -4.48 -14.58 -6.72 -21.56 -6.72 c +-7.14 0 -12.96 2.28 -17.46 6.84 c +-4.5 4.56 -6.76 10.46 -6.76 17.7 c +0 7.66 2.2 15.34 6.6 23.05 c +4.4 7.71 10.29 13.8 17.66 18.28 c +7.37 4.48 14.49 6.72 21.37 6.72 c +6.88 0 12.54 -2.27 16.99 -6.8 c +4.45 -4.53 6.68 -10.42 6.68 -17.66 c +h +246.91 178.2 m +0 4.84 -1.18 8.55 -3.55 11.13 c +-2.37 2.58 -5.43 3.87 -9.18 3.87 c +-7.66 0 -14.7 -5.48 -21.13 -16.45 c +-6.43 -10.96 -9.65 -21.86 -9.65 -32.7 c +0 -4.95 1.25 -8.76 3.75 -11.45 c +2.5 -2.68 5.65 -4.02 9.45 -4.02 c +7.34 0 14.23 5.46 20.66 16.37 c +6.43 10.91 9.65 21.99 9.65 33.24 c +f +300.03 234.68 1.56 2.97 P +12.03 -3.96 21.72 -11.2 29.06 -21.72 c +7.34 -10.52 11.02 -22.29 11.02 -35.31 c +0 -15.31 -4.68 -28.46 -14.02 -39.45 c +-9.35 -10.99 -20.4 -16.48 -33.16 -16.48 c +-7.19 0 -12.96 2.34 -17.3 7.03 c +-4.35 4.69 -6.52 10.65 -6.52 17.89 c +0 12.08 4.86 23.05 14.57 32.89 c +9.71 9.84 19.39 14.77 29.02 14.77 c +5.42 0 10.18 -1.98 14.3 -5.94 c +-1.04 22.24 -10.55 36.69 -28.52 43.36 c +h +314.09 193.12 m +-7.55 0 -14.56 -5.43 -21.02 -16.29 c +-6.46 -10.86 -9.69 -21.6 -9.69 -32.23 c +0 -5.21 1.25 -9.19 3.75 -11.95 c +2.5 -2.76 5.86 -4.14 10.08 -4.14 c +6.82 0 13.48 5.39 19.96 16.17 c +6.48 10.78 9.73 21.67 9.73 32.66 c +0 10.52 -4.27 15.78 -12.81 15.78 c +f +382.14 197.26 -10.39 -35.55 P +9.74 14.53 17.2 24.09 22.38 28.67 c +5.18 4.58 10.17 6.88 14.96 6.88 c +2.61 0 4.75 -0.86 6.45 -2.58 c +1.69 -1.72 2.54 -3.96 2.54 -6.72 c +0 -3.12 -0.75 -7.29 -2.27 -12.5 c +-9.53 -32.89 p +-1.09 -3.8 -1.64 -6.12 -1.64 -6.95 c +0 -0.73 0.21 -1.34 0.63 -1.84 c +0.42 -0.49 0.86 -0.74 1.33 -0.74 c +0.63 0 1.38 0.34 2.27 1.02 c +2.76 2.19 5.78 5.52 9.06 10 c +2.42 -1.48 p +-4.84 -6.93 -9.43 -11.87 -13.75 -14.84 c +-3.02 -2.03 -5.73 -3.05 -8.12 -3.05 c +-1.93 0 -3.46 0.59 -4.61 1.76 c +-1.14 1.17 -1.72 2.75 -1.72 4.73 c +0 2.5 0.89 6.8 2.66 12.89 c +9.06 31.41 p +1.14 3.91 1.72 6.95 1.72 9.14 c +0 1.04 -0.34 1.89 -1.02 2.54 c +-0.68 0.65 -1.51 0.98 -2.5 0.98 c +-1.46 0 -3.2 -0.62 -5.23 -1.87 c +-3.86 -2.34 -7.86 -6.21 -12.03 -11.6 c +-4.17 -5.39 -8.57 -12.28 -13.2 -20.66 c +-2.45 -4.43 -4.48 -9.27 -6.09 -14.53 c +-3.91 -12.89 -11.72 0 14.22 48.91 p +1.67 5.89 2.5 9.43 2.5 10.63 c +0 1.14 -0.46 2.15 -1.37 3.01 c +-0.91 0.86 -2.04 1.29 -3.4 1.29 c +-0.62 0 -1.72 -0.11 -3.28 -0.31 c +-2.97 -0.47 -0.47 2.81 27.03 4.84 p f +502.14 195.39 -13.59 -46.56 P +-2.03 -6.93 -3.05 -11.3 -3.05 -13.12 c +0 -0.94 0.17 -1.62 0.51 -2.07 c +0.34 -0.44 0.79 -0.66 1.37 -0.66 c +0.89 0 1.86 0.41 2.93 1.21 c +1.07 0.81 3.76 4.02 8.09 9.65 c +2.34 -1.8 p +-4.11 -6.51 -8.33 -11.3 -12.66 -14.37 c +-2.86 -1.98 -5.62 -2.97 -8.28 -2.97 c +-2.03 0 -3.62 0.57 -4.77 1.72 c +-1.14 1.15 -1.72 2.63 -1.72 4.45 c +0 1.77 0.34 4.12 1.02 7.03 c +0.83 3.86 3.2 12.24 7.11 25.16 c +-8.86 -14.53 -16.26 -24.55 -22.23 -30.08 c +-5.96 -5.52 -11.5 -8.28 -16.6 -8.28 c +-2.39 0 -4.43 0.84 -6.09 2.5 c +-1.67 1.67 -2.5 3.78 -2.5 6.33 c +0 3.91 1.14 9.89 3.44 17.97 c +6.8 24.14 p +1.67 5.78 2.5 9.38 2.5 10.78 c +0 0.63 -0.22 1.16 -0.66 1.6 c +-0.44 0.44 -0.93 0.66 -1.45 0.66 c +-1.09 0 -2.19 -0.39 -3.28 -1.17 c +-1.09 -0.78 -3.57 -3.67 -7.42 -8.67 c +-2.42 1.72 p +3.91 6.04 8.05 10.5 12.42 13.36 c +3.33 2.24 6.41 3.36 9.22 3.36 c +1.93 0 3.5 -0.61 4.73 -1.84 c +1.22 -1.22 1.84 -2.8 1.84 -4.73 c +0 -2.81 -1.04 -7.84 -3.12 -15.08 c +-7.34 -25.23 p +-2.03 -6.87 -3.05 -11.22 -3.05 -13.05 c +0 -0.99 0.32 -1.78 0.98 -2.38 c +0.65 -0.6 1.52 -0.9 2.62 -0.9 c +1.72 0 3.96 0.86 6.72 2.58 c +2.76 1.72 6.45 5.54 11.05 11.45 c +4.61 5.91 8.41 11.46 11.41 16.64 c +3 5.18 6.18 13.43 9.57 24.73 c +1.72 5.94 11.88 0 p f +568.63 143.59 m +-5.42 -6.51 -10.89 -11.29 -16.41 -14.34 c +-5.52 -3.05 -11.36 -4.57 -17.5 -4.57 c +-7.39 0 -13.16 2.09 -17.3 6.25 c +-4.14 4.17 -6.21 9.77 -6.21 16.8 c +0 7.97 2.23 15.81 6.68 23.52 c +4.45 7.71 10.44 13.97 17.97 18.79 c +7.53 4.82 14.91 7.23 22.15 7.23 c +5.68 0 9.92 -1.18 12.73 -3.55 c +2.81 -2.37 4.22 -5.27 4.22 -8.71 c +0 -3.23 -0.99 -5.99 -2.97 -8.28 c +-1.46 -1.77 -3.25 -2.66 -5.39 -2.66 c +-1.61 0 -2.96 0.52 -4.02 1.56 c +-1.07 1.04 -1.6 2.34 -1.6 3.91 c +0 0.99 0.2 1.9 0.59 2.73 c +0.39 0.83 1.2 1.84 2.42 3.01 c +1.22 1.17 1.96 2.02 2.23 2.54 c +0.26 0.52 0.39 1.07 0.39 1.64 c +0 1.09 -0.5 2 -1.48 2.73 c +-1.51 1.04 -3.64 1.56 -6.41 1.56 c +-5.11 0 -10.16 -1.8 -15.16 -5.39 c +-5 -3.59 -9.27 -8.7 -12.81 -15.31 c +-4.27 -8.02 -6.41 -16.04 -6.41 -24.06 c +0 -5.31 1.51 -9.52 4.53 -12.62 c +3.02 -3.1 7.14 -4.65 12.34 -4.65 c +4.01 0 7.98 1 11.91 3.01 c +3.93 2 8.35 5.64 13.24 10.9 c +2.27 -2.03 p f +601.59 160.07 m +7.5 7.92 15.26 11.88 23.28 11.88 c +5 0 9.27 -1.61 12.81 -4.84 c +3.54 -3.23 5.31 -7.45 5.31 -12.66 c +0 -7.81 -3.43 -14.73 -10.27 -20.74 c +-6.85 -6.02 -15.01 -9.02 -24.49 -9.02 c +-7.71 0 -13.39 1.84 -17.03 5.51 c +-3.64 3.67 -5.47 7.85 -5.47 12.54 c +0 2.34 0.75 6.07 2.27 11.17 c +8.05 26.8 p +0.68 2.34 1.02 4.38 1.02 6.09 c +0 2.55 -1.48 3.83 -4.45 3.83 c +-1.25 0 -3.46 -0.29 -6.64 -0.86 c +0.78 2.73 23.28 4.77 2.5 0 -10.94 -37.19 h +619.48 164.84 m +-5.52 0 -10.65 -2.49 -15.39 -7.46 c +-4.74 -4.97 -7.11 -10.54 -7.11 -16.68 c +0 -3.54 1.14 -6.59 3.44 -9.14 c +2.29 -2.55 5.13 -3.83 8.52 -3.83 c +5.26 0 10.03 2.63 14.3 7.89 c +4.27 5.26 6.41 11.28 6.41 18.05 c +0 3.54 -0.99 6.29 -2.97 8.24 c +-1.98 1.95 -4.37 2.93 -7.19 2.93 c +f +cleartomark end end pagesave restore showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/nomake.cmd new file mode 100644 index 00000000000..d5b89784882 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/nomake.cmd @@ -0,0 +1 @@ +@call ..\..\..\include\latex.fig.nmk.cmd %*
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/sec-facsimile.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/sec-facsimile.eps new file mode 100644 index 00000000000..9a944f547aa --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/fig/sec-facsimile.eps @@ -0,0 +1,260 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 7 14 78 29 +%%HiResBoundingBox: 7.818750 14.902032 77.220003 28.578282 +%........................................... +%%Creator: GPL Ghostscript 815 (epswrite) +%%CreationDate: 2008/12/01 04:15:45 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end readonly def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.12 0.12 scale +%%EndPageSetup +gsave mark +Q q +0 0 4958 0 0 7017 ^ Y +153 G +93.55 232.5 105.63 0 -0.94 -2.89 P +-4.58 -0.05 -8.05 -0.87 -10.39 -2.46 c +-2.34 -1.59 -4.82 -6.84 -7.42 -15.74 c +-17.89 -61.17 p +-2.08 -7.19 -3.12 -11.8 -3.12 -13.83 c +0 -2.45 0.79 -4.18 2.38 -5.2 c +1.59 -1.02 4.6 -1.6 9.02 -1.76 c +-1.02 -2.89 -40.86 0 0.78 2.89 p +5.31 0 9.11 1.2 11.41 3.59 c +2.29 2.4 4.56 7.37 6.8 14.92 c +23.28 79.14 -48.75 0 -22.66 -78.05 p +-1.67 -5.78 -2.5 -9.95 -2.5 -12.5 c +0 -4.74 3.98 -7.11 11.95 -7.11 c +-0.94 -2.89 -42.66 0 ^ p +3.86 0.05 6.64 0.39 8.36 1.02 c +1.72 0.63 3.31 1.9 4.77 3.83 c +1.46 1.93 2.84 5.11 4.14 9.53 c +20.55 68.98 p +1.14 3.91 1.72 6.75 1.72 8.52 c +0 3.18 -1.04 5.32 -3.12 6.45 c +-2.08 1.12 -5.47 1.73 -10.16 1.84 c +0.7 2.89 p f +259.88 172.81 m +0 -7.81 -2.07 -15.55 -6.21 -23.2 c +-4.14 -7.66 -9.91 -13.72 -17.3 -18.2 c +-7.39 -4.48 -14.58 -6.72 -21.56 -6.72 c +-7.14 0 -12.96 2.28 -17.46 6.84 c +-4.5 4.56 -6.76 10.46 -6.76 17.7 c +0 7.66 2.2 15.34 6.6 23.05 c +4.4 7.71 10.29 13.8 17.66 18.28 c +7.37 4.48 14.49 6.72 21.37 6.72 c +6.88 0 12.54 -2.27 16.99 -6.8 c +4.45 -4.53 6.68 -10.42 6.68 -17.66 c +h +246.91 178.2 m +0 4.84 -1.18 8.55 -3.55 11.13 c +-2.37 2.58 -5.43 3.87 -9.18 3.87 c +-7.66 0 -14.7 -5.48 -21.13 -16.45 c +-6.43 -10.96 -9.65 -21.86 -9.65 -32.7 c +0 -4.95 1.25 -8.76 3.75 -11.45 c +2.5 -2.68 5.65 -4.02 9.45 -4.02 c +7.34 0 14.23 5.46 20.66 16.37 c +6.43 10.91 9.65 21.99 9.65 33.24 c +f +300.03 234.68 1.56 2.97 P +12.03 -3.96 21.72 -11.2 29.06 -21.72 c +7.34 -10.52 11.02 -22.29 11.02 -35.31 c +0 -15.31 -4.68 -28.46 -14.02 -39.45 c +-9.35 -10.99 -20.4 -16.48 -33.16 -16.48 c +-7.19 0 -12.96 2.34 -17.3 7.03 c +-4.35 4.69 -6.52 10.65 -6.52 17.89 c +0 12.08 4.86 23.05 14.57 32.89 c +9.71 9.84 19.39 14.77 29.02 14.77 c +5.42 0 10.18 -1.98 14.3 -5.94 c +-1.04 22.24 -10.55 36.69 -28.52 43.36 c +h +314.09 193.12 m +-7.55 0 -14.56 -5.43 -21.02 -16.29 c +-6.46 -10.86 -9.69 -21.6 -9.69 -32.23 c +0 -5.21 1.25 -9.19 3.75 -11.95 c +2.5 -2.76 5.86 -4.14 10.08 -4.14 c +6.82 0 13.48 5.39 19.96 16.17 c +6.48 10.78 9.73 21.67 9.73 32.66 c +0 10.52 -4.27 15.78 -12.81 15.78 c +f +382.14 197.26 -10.39 -35.55 P +9.74 14.53 17.2 24.09 22.38 28.67 c +5.18 4.58 10.17 6.88 14.96 6.88 c +2.61 0 4.75 -0.86 6.45 -2.58 c +1.69 -1.72 2.54 -3.96 2.54 -6.72 c +0 -3.12 -0.75 -7.29 -2.27 -12.5 c +-9.53 -32.89 p +-1.09 -3.8 -1.64 -6.12 -1.64 -6.95 c +0 -0.73 0.21 -1.34 0.63 -1.84 c +0.42 -0.49 0.86 -0.74 1.33 -0.74 c +0.63 0 1.38 0.34 2.27 1.02 c +2.76 2.19 5.78 5.52 9.06 10 c +2.42 -1.48 p +-4.84 -6.93 -9.43 -11.87 -13.75 -14.84 c +-3.02 -2.03 -5.73 -3.05 -8.12 -3.05 c +-1.93 0 -3.46 0.59 -4.61 1.76 c +-1.14 1.17 -1.72 2.75 -1.72 4.73 c +0 2.5 0.89 6.8 2.66 12.89 c +9.06 31.41 p +1.14 3.91 1.72 6.95 1.72 9.14 c +0 1.04 -0.34 1.89 -1.02 2.54 c +-0.68 0.65 -1.51 0.98 -2.5 0.98 c +-1.46 0 -3.2 -0.62 -5.23 -1.87 c +-3.86 -2.34 -7.86 -6.21 -12.03 -11.6 c +-4.17 -5.39 -8.57 -12.28 -13.2 -20.66 c +-2.45 -4.43 -4.48 -9.27 -6.09 -14.53 c +-3.91 -12.89 -11.72 0 14.22 48.91 p +1.67 5.89 2.5 9.43 2.5 10.63 c +0 1.14 -0.46 2.15 -1.37 3.01 c +-0.91 0.86 -2.04 1.29 -3.4 1.29 c +-0.62 0 -1.72 -0.11 -3.28 -0.31 c +-2.97 -0.47 -0.47 2.81 27.03 4.84 p f +502.14 195.39 -13.59 -46.56 P +-2.03 -6.93 -3.05 -11.3 -3.05 -13.12 c +0 -0.94 0.17 -1.62 0.51 -2.07 c +0.34 -0.44 0.79 -0.66 1.37 -0.66 c +0.89 0 1.86 0.41 2.93 1.21 c +1.07 0.81 3.76 4.02 8.09 9.65 c +2.34 -1.8 p +-4.11 -6.51 -8.33 -11.3 -12.66 -14.37 c +-2.86 -1.98 -5.62 -2.97 -8.28 -2.97 c +-2.03 0 -3.62 0.57 -4.77 1.72 c +-1.14 1.15 -1.72 2.63 -1.72 4.45 c +0 1.77 0.34 4.12 1.02 7.03 c +0.83 3.86 3.2 12.24 7.11 25.16 c +-8.86 -14.53 -16.26 -24.55 -22.23 -30.08 c +-5.96 -5.52 -11.5 -8.28 -16.6 -8.28 c +-2.39 0 -4.43 0.84 -6.09 2.5 c +-1.67 1.67 -2.5 3.78 -2.5 6.33 c +0 3.91 1.14 9.89 3.44 17.97 c +6.8 24.14 p +1.67 5.78 2.5 9.38 2.5 10.78 c +0 0.63 -0.22 1.16 -0.66 1.6 c +-0.44 0.44 -0.93 0.66 -1.45 0.66 c +-1.09 0 -2.19 -0.39 -3.28 -1.17 c +-1.09 -0.78 -3.57 -3.67 -7.42 -8.67 c +-2.42 1.72 p +3.91 6.04 8.05 10.5 12.42 13.36 c +3.33 2.24 6.41 3.36 9.22 3.36 c +1.93 0 3.5 -0.61 4.73 -1.84 c +1.22 -1.22 1.84 -2.8 1.84 -4.73 c +0 -2.81 -1.04 -7.84 -3.12 -15.08 c +-7.34 -25.23 p +-2.03 -6.87 -3.05 -11.22 -3.05 -13.05 c +0 -0.99 0.32 -1.78 0.98 -2.38 c +0.65 -0.6 1.52 -0.9 2.62 -0.9 c +1.72 0 3.96 0.86 6.72 2.58 c +2.76 1.72 6.45 5.54 11.05 11.45 c +4.61 5.91 8.41 11.46 11.41 16.64 c +3 5.18 6.18 13.43 9.57 24.73 c +1.72 5.94 11.88 0 p f +568.63 143.59 m +-5.42 -6.51 -10.89 -11.29 -16.41 -14.34 c +-5.52 -3.05 -11.36 -4.57 -17.5 -4.57 c +-7.39 0 -13.16 2.09 -17.3 6.25 c +-4.14 4.17 -6.21 9.77 -6.21 16.8 c +0 7.97 2.23 15.81 6.68 23.52 c +4.45 7.71 10.44 13.97 17.97 18.79 c +7.53 4.82 14.91 7.23 22.15 7.23 c +5.68 0 9.92 -1.18 12.73 -3.55 c +2.81 -2.37 4.22 -5.27 4.22 -8.71 c +0 -3.23 -0.99 -5.99 -2.97 -8.28 c +-1.46 -1.77 -3.25 -2.66 -5.39 -2.66 c +-1.61 0 -2.96 0.52 -4.02 1.56 c +-1.07 1.04 -1.6 2.34 -1.6 3.91 c +0 0.99 0.2 1.9 0.59 2.73 c +0.39 0.83 1.2 1.84 2.42 3.01 c +1.22 1.17 1.96 2.02 2.23 2.54 c +0.26 0.52 0.39 1.07 0.39 1.64 c +0 1.09 -0.5 2 -1.48 2.73 c +-1.51 1.04 -3.64 1.56 -6.41 1.56 c +-5.11 0 -10.16 -1.8 -15.16 -5.39 c +-5 -3.59 -9.27 -8.7 -12.81 -15.31 c +-4.27 -8.02 -6.41 -16.04 -6.41 -24.06 c +0 -5.31 1.51 -9.52 4.53 -12.62 c +3.02 -3.1 7.14 -4.65 12.34 -4.65 c +4.01 0 7.98 1 11.91 3.01 c +3.93 2 8.35 5.64 13.24 10.9 c +2.27 -2.03 p f +601.59 160.07 m +7.5 7.92 15.26 11.88 23.28 11.88 c +5 0 9.27 -1.61 12.81 -4.84 c +3.54 -3.23 5.31 -7.45 5.31 -12.66 c +0 -7.81 -3.43 -14.73 -10.27 -20.74 c +-6.85 -6.02 -15.01 -9.02 -24.49 -9.02 c +-7.71 0 -13.39 1.84 -17.03 5.51 c +-3.64 3.67 -5.47 7.85 -5.47 12.54 c +0 2.34 0.75 6.07 2.27 11.17 c +8.05 26.8 p +0.68 2.34 1.02 4.38 1.02 6.09 c +0 2.55 -1.48 3.83 -4.45 3.83 c +-1.25 0 -3.46 -0.29 -6.64 -0.86 c +0.78 2.73 23.28 4.77 2.5 0 -10.94 -37.19 h +619.48 164.84 m +-5.52 0 -10.65 -2.49 -15.39 -7.46 c +-4.74 -4.97 -7.11 -10.54 -7.11 -16.68 c +0 -3.54 1.14 -6.59 3.44 -9.14 c +2.29 -2.55 5.13 -3.83 8.52 -3.83 c +5.26 0 10.03 2.63 14.3 7.89 c +4.27 5.26 6.41 11.28 6.41 18.05 c +0 3.54 -0.99 6.29 -2.97 8.24 c +-1.98 1.95 -4.37 2.93 -7.19 2.93 c +f +cleartomark end end pagesave restore showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/intro.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/intro.tex new file mode 100644 index 00000000000..4829b7adf64 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/intro.tex @@ -0,0 +1,41 @@ +\intro + +% +% Рспользуемые далее команды определяются РІ файле common.tex. +% + +% Актуальность работы +\actualitysection +\actualitytext + +% Цель диссертационной работы +\objectivesection +\objectivetext + +% Научная РЅРѕРІРёР·РЅР° +\noveltysection +\noveltytext + +% Практическая ценность +\valuesection +\valuetext + +% Результаты Рё положения, выносимые РЅР° защиту +\resultssection +\resultstext + +% Апробация работы +\approbationsection +\approbationtext + +% Публикации +\pubsection +\pubtext + +% Личный вклад автора +\contribsection +\contribtext + +% Структура Рё объем диссертации +\structsection +\structtext
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/nomake.cmd new file mode 100644 index 00000000000..a426734c237 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/nomake.cmd @@ -0,0 +1,46 @@ +@echo off + +rem Makefile for documents and templates +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +chcp 1251 > nul +set bibtex=biber +set bibtexflags= +set latexnmk=call ..\..\include\latex.nmk.cmd + +if "%1"=="" ( + %latexnmk% +) else ( + for %%f in (%*) do if "%%f"=="help" ( + call :%%f + ) else if "%%f"=="all" ( + call :allpdf + ) else if "%%f"=="allpdf" ( + call :%%f + ) else if "%%f"=="alldvi" ( + call :%%f + ) else ( + %latexnmk% %%f + ) +) + +exit /b + +:help + echo all build PDF of autoref and thesis + echo allpdf build PDF of autoref and thesis + echo alldvi build DVI of autoref and thesis + %latexnmk% help +goto :eof + +:allpdf + set target=thesis & %latexnmk% pdf + set target=autoref & %latexnmk% pdf + set target= +goto :eof + +:alldvi + set target=thesis & %latexnmk% dvi + set target=autoref & %latexnmk% dvi + set target= +goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/review.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/review.tex new file mode 100644 index 00000000000..59a92856e0d --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/review.tex @@ -0,0 +1 @@ +\review diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.bib new file mode 100644 index 00000000000..ea2e0c361fe --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.bib @@ -0,0 +1,173 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {Р. Р. Рванов and Рџ. Рџ. Петров and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {Рџ. Рџ. Петров and Р. Р. Рванов and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, + keywords = {own}, +} + +@ARTICLE{Yoffe_1993_AP_42_173, + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, +} + +@ARTICLE{Efros_1982_FTP_16_7_1209, + author = {{\relax РђР»}. Р›. Рфрос and Рђ. Р›. Рфрос}, + title = {Межзонное поглощение света РІ полупроводниковом шаре}, + journal = {Физика Рё техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, +} + +@BOOK{Anselm_1978, + author = {Рђ. Р. Ансельм}, + title = {Введение РІ теорию полупроводников}, + publisher = {Наука}, + address = {РњРѕСЃРєРІР°}, + year = {1978}, + language = {russian}, +} + +@INPROCEEDINGS{Segall_1968, + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, +} + +@INBOOK{Agranovich_1983, + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, +} + +@INCOLLECTION{InP, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, + organization = {Ioffe Physico-Technical Institute}, + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Р•. Р–. Мищенко}, + title = {Неупругое рассеяние света РІ системе взаимодействующих + электронов Рё фононов}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {Рњ. Рђ. Скворцов}, + title = {Флуктуационные Рё интерференционные эффекты РІ мезоскопических системах}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. Рґ-СЂР° физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Р. Р’. Тернер}, + authortype = {РЎРЁРђ}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, РёРЅРє.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. в„– 7 (I С‡.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {РЎРЁРђ}, + pagetotal = {5 СЃ.~: РёР».}, + language = {russian}, +} + +@PATENT{patent2, + author = {Р’. Р. Чугаева}, + authortype = {Р Р¤}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} H 04 Р’ 1/38, Рќ 04 J 13/00}, + holder = {заявитель Рё патентообладатель Воронеж. науч.-ислед. РёРЅ-С‚ СЃРІСЏР·Рё.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. в„– 23 (II С‡.)}, + pagetotal = {2 СЃ.~: РёР».}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.tex new file mode 100644 index 00000000000..7b10e3716e3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/candidate/thesis.tex @@ -0,0 +1,141 @@ +\documentclass[% +candidate, % тип документа +subf, % использовать пакет subcaption для вложенной нумерации СЂРёСЃСѓРЅРєРѕРІ +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%fixint, % включить прямые знаки интегралов +%classified, % РіСЂРёС„ секретности +%facsimile, % отображать факсимиле диссертанта +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\ifpdf\usepackage{epstopdf}\fi + +\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\citemy=\cite + +% Рспользовать полужирное начертание для векторов +\let\vec=\mathbf + +% Путь Рє файлам СЃ иллюстрациями +\graphicspath{{fig/}} + +\begin{document} + +% Переопределение стандартных заголовков +%\def\contentsname{Содержание} +%\def\conclusionname{Выводы} +%\def\bibname{Литература} + +% Включение файла СЃ общим текстом диссертации Рё автореферата +% (текст титульного листа Рё характеристика работы). +\input{common} + +% номер РєРѕРїРёРё для грифа секретности +%\copynum{1} +% класс доступа +%\classlabel{Для служебного пользования} + +% номер УДК +\libcatnum{12345} + +\title{Р”РССЕРТАЦРРЇ\\ +РЅР° соискание ученой степени\\ +кандидата физико-математических наук} + +\maketitle + +%% +%% Titlepage in English +%% +% +%\institution{Name of Organization} +% +%\title{PhD Thesis} +% +%% Topic +%\topic{Dummy Title} +% +%% Author +%\author{Author's Name} +% +%\specnum{01.04.05} +%\spec{Optics} +% +%%\specsndnum{01.04.07} +%%\specsnd{Condensed matter physics} +% +%\sa{I.\,I.~Ivanov} +%\sastatus{Professor} +%%\sasnd{P.\,P.~Petrov} +%%\sasndstatus{Professor} +% +%% Scientific consultant +%%\scon{B.\,B.~Baranov} +%%\sconstatus{Professor} +% +%% City & Year +%\city{Saint Petersburg} +%\date{\number\year} +% +%\maketitle[en] + +% Содержание +\tableofcontents + +% Введение +\input{intro} + +% РћР±Р·РѕСЂ литературы +%\input{review} + +% Основная часть +%% Глава 1 +\input{1} +%% Глава 2 +%\input{2} + +% Заключение +\input{concl} + +% РЎРїРёСЃРѕРє сокращений Рё условных обозначений +%\input{defs} + +% Словарь терминов +%\input{dict} + +% РЎРїРёСЃРѕРє литературы +\printbibliography[heading=bibintoc] + +% РЎРїРёСЃРѕРє иллюстративного материала +%\listoffigures + +% Приложения +%\appendix +%\input{app-a} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/1.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/1.tex new file mode 100644 index 00000000000..a7f621e9c69 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/1.tex @@ -0,0 +1,3 @@ +\chapter{Название главы} +\section{Название секции} +\section{Выводы Рє первой главе}
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/Makefile new file mode 100644 index 00000000000..f74054616ea --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/Makefile @@ -0,0 +1,30 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +BIBTEX := biber +BIBTEXFLAGS := + +include ../../include/latex.mk + +all: + @env TARGET=thesis $(MAKE) ;\ + env TARGET=autoref $(MAKE) ;\ + eval unset TARGET + +allpdf: + @env TARGET=thesis $(MAKE) pdf ;\ + env TARGET=autoref $(MAKE) pdf ;\ + eval unset TARGET + +alldvi: + @env TARGET=thesis $(MAKE) dvi ;\ + env TARGET=autoref $(MAKE) dvi ;\ + eval unset TARGET + +help: .help + @echo " all build PDF of autoref and thesis" ;\ + echo " allpdf build PDF of autoref and thesis" ;\ + echo " alldvi build DVI of autoref and thesis" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/app-a.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/app-a.tex new file mode 100644 index 00000000000..362b35263b7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/app-a.tex @@ -0,0 +1 @@ +\chapter{Название приложения} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/autoref.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/autoref.tex new file mode 100644 index 00000000000..22230031108 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/autoref.tex @@ -0,0 +1,213 @@ +\documentclass[% +autoref, % тип документа +href, % использовать пакет hyperref для создания гиперссылок +facsimile, % отображать факсимиле диссертанта Рё ученого секретаря +colorlinks, % цветные гиперссылки +%fixint, % отключить прямые знаки интегралов +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%classified, % РіСЂРёС„ секретности +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\usepackage{tabularx} +\ifpdf\usepackage{epstopdf}\fi + +\usepackage[style=gost-numeric, + backend=biber, + language=auto, + hyperref=auto, + autolang=other, + defernumbers, + sorting=none +]{biblatex} + +\addbibresource{thesis.bib} + +% Номера страниц СЃРЅРёР·Сѓ Рё РїРѕ центру +%\pagestyle{footcenter} +%\chapterpagestyle{footcenter} + +% Точка СЃ запятой РІ качестве разделителя между номерами цитирований +%\setcitestyle{semicolon} + +% Путь Рє файлам СЃ иллюстрациями +\graphicspath{{fig/}} + +\begin{document} +% Включение файла СЃ общим текстом диссертации Рё автореферата +% (текст титульного листа Рё характеристика работы). +\input{common} + +% номер РєРѕРїРёРё для грифа секретности +%\copynum{1} +% класс доступа +%\classlabel{Для служебного пользования} + +\title{АВТОРЕФЕРАТ\\ +диссертации РЅР° соискание ученой степени\\ +доктора физико-математических наук} + +\maketitle + +% Внутренняя сторона обложки +\thispagestyle{empty} +\vspace*{-2cm} +\noindent +\begin{center} +Работа выполнена РІ \emph{название организации}. +\end{center} +\vskip1ex\noindent +\begin{tabularx}{\linewidth}{@{}lX@{}} + \textbf{Научный консультант:} & \textbf{фамилия РёРјСЏ отчество}\\ + & ученая степень, ученое звание\\[6pt] + \textbf{Официальные оппоненты:} & \textbf{фамилия РёРјСЏ отчество}\\ + & ученая степень, ученое звание\\[6pt] + & \textbf{фамилия РёРјСЏ отчество}\\ + & ученая степень, ученое звание\\[6pt] + & \textbf{фамилия РёРјСЏ отчество}\\ + & ученая степень, ученое звание\\[6pt] + \textbf{Ведущая организация:} & название организации +\end{tabularx} + +\vskip2ex\noindent +Защита состоится \datefield{} РІ \rule[0pt]{1cm}{0.5pt} часов +РЅР° заседании диссертационного совета \emph{шифр совета} РїСЂРё \emph{название +организации, РїСЂРё которой создан совет}, расположенном РїРѕ адресу: +\emph{адрес} + +\vskip1ex\noindent +РЎ диссертацией можно ознакомиться РІ библиотеке +\emph{название организации}. + +\vskip1ex\noindent +Автореферат разослан \datefield{} + +\vskip2ex\noindent +Отзывы Рё замечания РїРѕ автореферату РІ РґРІСѓС… экземплярах, заверенные +печатью, РїСЂРѕСЃСЊР±Р° высылать РїРѕ вышеуказанному адресу РЅР° РёРјСЏ ученого секретаря +диссертационного совета. + +\vfill\noindent +\begin{minipage}[b]{0.4\linewidth} + Ученый секретарь\\ + диссертационного совета,\\ + \emph{ученая степень}, \emph{ученое звание} +\end{minipage} +\hfill +% вставка файла, содержащего факсимиле ученого секретаря +\makeatletter +\ifDis@facsimile + \includegraphics[width=3cm]{sec-facsimile}\hfill +\fi% +\makeatother% +\emph{фамилия Рё. Рѕ.} + +\clearpage + +\nsection{Общая характеристика работы} + +% Актуальность работы +\actualitysection +\actualitytext + +% Степень разработанности темы исследования +\developmentsection +\developmenttext + +% Цели Рё задачи диссертационной работы +\objectivesection +\objectivetext + +% Научная РЅРѕРІРёР·РЅР° +\noveltysection +\noveltytext + +% Теоретическая Рё практическая значимость +\valuesection +\valuetext + +% Методология Рё методы исследования +\methodssection +\methodstext + +% Положения, выносимые РЅР° защиту +\resultssection +\resultstext + +% Степень достоверности Рё апробация результатов +\approbationsection +\approbationtext + +% Публикации +\pubsection +\pubtext + +% Личный вклад автора +\contribsection +\contribtext + +% Структура Рё объем диссертации +\structsection +\structtext + +\nsection{Содержание работы} + +\textbf{Р’Рѕ Введении} обоснована актуальность диссертационной работы, сформулирована цель Рё аргументирована научная РЅРѕРІРёР·РЅР° исследований, показана практическая значимость полученных результатов, представлены выносимые РЅР° защиту научные положения. + +\textbf{Р’ первой главе} ... + +Содержание первой главы. + +Результаты первой главы опубликованы РІ работе~\cite{Ivanov_1999_Journal_17_173}. + +\textbf{Р’Рѕ второй главе} ... + +Содержание второй главы. + +Результаты второй главы опубликованы РІ работе~\cite{Petrov_2001_Journal_23_12321}. + +\textbf{Р’ третьей главе} ... + +Содержание третьей главы. + +Результаты третьей главы опубликованы РІ работе~\cite{Sidorov_2002_Journal_32_1531}. + +\textbf{Р’ Заключении} + +% ---------------------------------------------------------------- +\printbibliography[keyword=own,title={Основные публикации РїРѕ теме диссертации}] +\printbibliography[notkeyword=own,title={Цитированная литература}] + +% ---------------------------------------------------------------- +% Выходные данные +\clearpage +\thispagestyle{empty} +\normalfont\selectfont +\vspace*{2cm} +\begin{center} +\textit{Научное издание}\\ +\vskip 2cm +\makeatletter +\@author +\vskip 1.5cm +\@title{} РЅР° тему:\\ +\@topic\\ +\makeatother +\end{center} +\vfill +Подписано РІ печать~25.01.2011. +Формат~$60 \times 90$~1/16. +Тираж~100~СЌРєР·. +Заказ~256.\\[2ex] +\noindent +Санкт-Петербургская издательская фирма <<Наука>> Р РђРќ. +199034, Санкт-Петербург, Менделеевская линия, 1, +\href{http://www.naukaspb.spb.ru}{http://www.naukaspb.spb.ru} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/common.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/common.tex new file mode 100644 index 00000000000..c1f53f2da95 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/common.tex @@ -0,0 +1,72 @@ +% Общие поля титульного листа диссертации Рё автореферата +\institution{Название организации} + +\topic{Тема диссертации} + +\author{Р¤РРћ автора} + +\specnum{01.04.05} +\spec{Оптика} +%\specsndnum{01.04.07} +%\specsnd{Физика конденсированного состояния} + +\scon{Р¤РРћ консультанта} +\sconstatus{Рґ.~С„.-Рј.~РЅ., РїСЂРѕС„.} +%\sconsnd{Р¤РРћ второго консультанта} +%\sconsndstatus{Рґ.~С„.-Рј.~РЅ., РїСЂРѕС„.} + +\city{Санкт-Петербург} +\date{\number\year} + +% Общие разделы автореферата Рё диссертации +\mkcommonsect{actuality}{Актуальность темы исследования.}{% +Текст РѕР± актуальности. Ссылка~\cite{Yoffe_1993_AP_42_173}. +} + +\mkcommonsect{development}{Степень разработанности темы исследования.}{ +Текст Рѕ степени разработанности темы. +} + +\mkcommonsect{objective}{Цели Рё задачи диссертационной работы:}{% +РЎРїРёСЃРѕРє целей. + +Для достижения поставленных целей были решены следующие задачи: +} + +\mkcommonsect{novelty}{Научная РЅРѕРІРёР·РЅР°.}{% +Текст Рѕ РЅРѕРІРёР·РЅРµ. +} + +\mkcommonsect{value}{Теоретическая Рё практическая значимость.}{% +Результаты, изложенные РІ диссертации, РјРѕРіСѓС‚ быть использованы для ... +} + +\mkcommonsect{methods}{Методология Рё методы исследования.}{% +Текст Рѕ методах исследования. +} + +\mkcommonsect{results}{Положения, выносимые РЅР° защиту:}{% +Текст Рѕ положениях Рё результатах. +} + +\mkcommonsect{approbation}{Степень достоверности Рё апробация результатов.}{% +Основные результаты диссертации докладывались РЅР° следующих конференциях: +} + +\mkcommonsect{pub}{Публикации.}{% +Материалы диссертации опубликованы РІ $N$ печатных работах, РёР· РЅРёС… $n_1$ +статей РІ рецензируемых журналах~\cite{Ivanov_1999_Journal_17_173, +Petrov_2001_Journal_23_12321,Sidorov_2002_Journal_32_1531}, $n_2$ статей РІ +сборниках трудов конференций Рё $n_3$ тезисов докладов. +} + +\mkcommonsect{contrib}{Личный вклад автора.}{% +Содержание диссертации Рё основные положения, выносимые РЅР° защиту, отражают персональный вклад автора РІ опубликованные работы. +Подготовка Рє публикации полученных результатов проводилась совместно СЃ соавторами, причем вклад диссертанта был определяющим. Р’СЃРµ представленные РІ диссертации результаты получены лично автором. +} + +\mkcommonsect{struct}{Структура Рё объем диссертации.}{% +Диссертация состоит РёР· введения, РѕР±Р·РѕСЂР° литературы, $n$ глав, заключения Рё библиографии. +Общий объем диссертации $P$ страниц, РёР· РЅРёС… $p_1$ страницы текста, включая $f$ СЂРёСЃСѓРЅРєРѕРІ. +Библиография включает $B$ наименований РЅР° $p_2$ страницах. +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/concl.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/concl.tex new file mode 100644 index 00000000000..cd60e4f2708 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/concl.tex @@ -0,0 +1 @@ +\conclusion diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/defs.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/defs.tex new file mode 100644 index 00000000000..827832111b1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/defs.tex @@ -0,0 +1,9 @@ +% РЎРїРёСЃРѕРє сокращений Рё условных обозначений +\defs + +\begin{longtable}{lp{0.025\textwidth}p{0.89\textwidth}} +$\vec A$ & --- & векторный потенциал\\ +$I$ & --- & интенсивность света\\ +$j_l$ & --- & сферическая функция Бесселя первого СЂРѕРґР°\\ +$Y_{lm}$ & --- & сферическая гармоника\\ +\end{longtable} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/dict.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/dict.tex new file mode 100644 index 00000000000..3a55f5b54c2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/dict.tex @@ -0,0 +1,4 @@ +% Словарь терминов +\dict + +\textbf{Термин} "--- определение. diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/Makefile new file mode 100644 index 00000000000..775b7fc3d88 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/Makefile @@ -0,0 +1 @@ +include ../../../include/latex.fig.mk
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/facsimile.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/facsimile.eps new file mode 100644 index 00000000000..9a944f547aa --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/facsimile.eps @@ -0,0 +1,260 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 7 14 78 29 +%%HiResBoundingBox: 7.818750 14.902032 77.220003 28.578282 +%........................................... +%%Creator: GPL Ghostscript 815 (epswrite) +%%CreationDate: 2008/12/01 04:15:45 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end readonly def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.12 0.12 scale +%%EndPageSetup +gsave mark +Q q +0 0 4958 0 0 7017 ^ Y +153 G +93.55 232.5 105.63 0 -0.94 -2.89 P +-4.58 -0.05 -8.05 -0.87 -10.39 -2.46 c +-2.34 -1.59 -4.82 -6.84 -7.42 -15.74 c +-17.89 -61.17 p +-2.08 -7.19 -3.12 -11.8 -3.12 -13.83 c +0 -2.45 0.79 -4.18 2.38 -5.2 c +1.59 -1.02 4.6 -1.6 9.02 -1.76 c +-1.02 -2.89 -40.86 0 0.78 2.89 p +5.31 0 9.11 1.2 11.41 3.59 c +2.29 2.4 4.56 7.37 6.8 14.92 c +23.28 79.14 -48.75 0 -22.66 -78.05 p +-1.67 -5.78 -2.5 -9.95 -2.5 -12.5 c +0 -4.74 3.98 -7.11 11.95 -7.11 c +-0.94 -2.89 -42.66 0 ^ p +3.86 0.05 6.64 0.39 8.36 1.02 c +1.72 0.63 3.31 1.9 4.77 3.83 c +1.46 1.93 2.84 5.11 4.14 9.53 c +20.55 68.98 p +1.14 3.91 1.72 6.75 1.72 8.52 c +0 3.18 -1.04 5.32 -3.12 6.45 c +-2.08 1.12 -5.47 1.73 -10.16 1.84 c +0.7 2.89 p f +259.88 172.81 m +0 -7.81 -2.07 -15.55 -6.21 -23.2 c +-4.14 -7.66 -9.91 -13.72 -17.3 -18.2 c +-7.39 -4.48 -14.58 -6.72 -21.56 -6.72 c +-7.14 0 -12.96 2.28 -17.46 6.84 c +-4.5 4.56 -6.76 10.46 -6.76 17.7 c +0 7.66 2.2 15.34 6.6 23.05 c +4.4 7.71 10.29 13.8 17.66 18.28 c +7.37 4.48 14.49 6.72 21.37 6.72 c +6.88 0 12.54 -2.27 16.99 -6.8 c +4.45 -4.53 6.68 -10.42 6.68 -17.66 c +h +246.91 178.2 m +0 4.84 -1.18 8.55 -3.55 11.13 c +-2.37 2.58 -5.43 3.87 -9.18 3.87 c +-7.66 0 -14.7 -5.48 -21.13 -16.45 c +-6.43 -10.96 -9.65 -21.86 -9.65 -32.7 c +0 -4.95 1.25 -8.76 3.75 -11.45 c +2.5 -2.68 5.65 -4.02 9.45 -4.02 c +7.34 0 14.23 5.46 20.66 16.37 c +6.43 10.91 9.65 21.99 9.65 33.24 c +f +300.03 234.68 1.56 2.97 P +12.03 -3.96 21.72 -11.2 29.06 -21.72 c +7.34 -10.52 11.02 -22.29 11.02 -35.31 c +0 -15.31 -4.68 -28.46 -14.02 -39.45 c +-9.35 -10.99 -20.4 -16.48 -33.16 -16.48 c +-7.19 0 -12.96 2.34 -17.3 7.03 c +-4.35 4.69 -6.52 10.65 -6.52 17.89 c +0 12.08 4.86 23.05 14.57 32.89 c +9.71 9.84 19.39 14.77 29.02 14.77 c +5.42 0 10.18 -1.98 14.3 -5.94 c +-1.04 22.24 -10.55 36.69 -28.52 43.36 c +h +314.09 193.12 m +-7.55 0 -14.56 -5.43 -21.02 -16.29 c +-6.46 -10.86 -9.69 -21.6 -9.69 -32.23 c +0 -5.21 1.25 -9.19 3.75 -11.95 c +2.5 -2.76 5.86 -4.14 10.08 -4.14 c +6.82 0 13.48 5.39 19.96 16.17 c +6.48 10.78 9.73 21.67 9.73 32.66 c +0 10.52 -4.27 15.78 -12.81 15.78 c +f +382.14 197.26 -10.39 -35.55 P +9.74 14.53 17.2 24.09 22.38 28.67 c +5.18 4.58 10.17 6.88 14.96 6.88 c +2.61 0 4.75 -0.86 6.45 -2.58 c +1.69 -1.72 2.54 -3.96 2.54 -6.72 c +0 -3.12 -0.75 -7.29 -2.27 -12.5 c +-9.53 -32.89 p +-1.09 -3.8 -1.64 -6.12 -1.64 -6.95 c +0 -0.73 0.21 -1.34 0.63 -1.84 c +0.42 -0.49 0.86 -0.74 1.33 -0.74 c +0.63 0 1.38 0.34 2.27 1.02 c +2.76 2.19 5.78 5.52 9.06 10 c +2.42 -1.48 p +-4.84 -6.93 -9.43 -11.87 -13.75 -14.84 c +-3.02 -2.03 -5.73 -3.05 -8.12 -3.05 c +-1.93 0 -3.46 0.59 -4.61 1.76 c +-1.14 1.17 -1.72 2.75 -1.72 4.73 c +0 2.5 0.89 6.8 2.66 12.89 c +9.06 31.41 p +1.14 3.91 1.72 6.95 1.72 9.14 c +0 1.04 -0.34 1.89 -1.02 2.54 c +-0.68 0.65 -1.51 0.98 -2.5 0.98 c +-1.46 0 -3.2 -0.62 -5.23 -1.87 c +-3.86 -2.34 -7.86 -6.21 -12.03 -11.6 c +-4.17 -5.39 -8.57 -12.28 -13.2 -20.66 c +-2.45 -4.43 -4.48 -9.27 -6.09 -14.53 c +-3.91 -12.89 -11.72 0 14.22 48.91 p +1.67 5.89 2.5 9.43 2.5 10.63 c +0 1.14 -0.46 2.15 -1.37 3.01 c +-0.91 0.86 -2.04 1.29 -3.4 1.29 c +-0.62 0 -1.72 -0.11 -3.28 -0.31 c +-2.97 -0.47 -0.47 2.81 27.03 4.84 p f +502.14 195.39 -13.59 -46.56 P +-2.03 -6.93 -3.05 -11.3 -3.05 -13.12 c +0 -0.94 0.17 -1.62 0.51 -2.07 c +0.34 -0.44 0.79 -0.66 1.37 -0.66 c +0.89 0 1.86 0.41 2.93 1.21 c +1.07 0.81 3.76 4.02 8.09 9.65 c +2.34 -1.8 p +-4.11 -6.51 -8.33 -11.3 -12.66 -14.37 c +-2.86 -1.98 -5.62 -2.97 -8.28 -2.97 c +-2.03 0 -3.62 0.57 -4.77 1.72 c +-1.14 1.15 -1.72 2.63 -1.72 4.45 c +0 1.77 0.34 4.12 1.02 7.03 c +0.83 3.86 3.2 12.24 7.11 25.16 c +-8.86 -14.53 -16.26 -24.55 -22.23 -30.08 c +-5.96 -5.52 -11.5 -8.28 -16.6 -8.28 c +-2.39 0 -4.43 0.84 -6.09 2.5 c +-1.67 1.67 -2.5 3.78 -2.5 6.33 c +0 3.91 1.14 9.89 3.44 17.97 c +6.8 24.14 p +1.67 5.78 2.5 9.38 2.5 10.78 c +0 0.63 -0.22 1.16 -0.66 1.6 c +-0.44 0.44 -0.93 0.66 -1.45 0.66 c +-1.09 0 -2.19 -0.39 -3.28 -1.17 c +-1.09 -0.78 -3.57 -3.67 -7.42 -8.67 c +-2.42 1.72 p +3.91 6.04 8.05 10.5 12.42 13.36 c +3.33 2.24 6.41 3.36 9.22 3.36 c +1.93 0 3.5 -0.61 4.73 -1.84 c +1.22 -1.22 1.84 -2.8 1.84 -4.73 c +0 -2.81 -1.04 -7.84 -3.12 -15.08 c +-7.34 -25.23 p +-2.03 -6.87 -3.05 -11.22 -3.05 -13.05 c +0 -0.99 0.32 -1.78 0.98 -2.38 c +0.65 -0.6 1.52 -0.9 2.62 -0.9 c +1.72 0 3.96 0.86 6.72 2.58 c +2.76 1.72 6.45 5.54 11.05 11.45 c +4.61 5.91 8.41 11.46 11.41 16.64 c +3 5.18 6.18 13.43 9.57 24.73 c +1.72 5.94 11.88 0 p f +568.63 143.59 m +-5.42 -6.51 -10.89 -11.29 -16.41 -14.34 c +-5.52 -3.05 -11.36 -4.57 -17.5 -4.57 c +-7.39 0 -13.16 2.09 -17.3 6.25 c +-4.14 4.17 -6.21 9.77 -6.21 16.8 c +0 7.97 2.23 15.81 6.68 23.52 c +4.45 7.71 10.44 13.97 17.97 18.79 c +7.53 4.82 14.91 7.23 22.15 7.23 c +5.68 0 9.92 -1.18 12.73 -3.55 c +2.81 -2.37 4.22 -5.27 4.22 -8.71 c +0 -3.23 -0.99 -5.99 -2.97 -8.28 c +-1.46 -1.77 -3.25 -2.66 -5.39 -2.66 c +-1.61 0 -2.96 0.52 -4.02 1.56 c +-1.07 1.04 -1.6 2.34 -1.6 3.91 c +0 0.99 0.2 1.9 0.59 2.73 c +0.39 0.83 1.2 1.84 2.42 3.01 c +1.22 1.17 1.96 2.02 2.23 2.54 c +0.26 0.52 0.39 1.07 0.39 1.64 c +0 1.09 -0.5 2 -1.48 2.73 c +-1.51 1.04 -3.64 1.56 -6.41 1.56 c +-5.11 0 -10.16 -1.8 -15.16 -5.39 c +-5 -3.59 -9.27 -8.7 -12.81 -15.31 c +-4.27 -8.02 -6.41 -16.04 -6.41 -24.06 c +0 -5.31 1.51 -9.52 4.53 -12.62 c +3.02 -3.1 7.14 -4.65 12.34 -4.65 c +4.01 0 7.98 1 11.91 3.01 c +3.93 2 8.35 5.64 13.24 10.9 c +2.27 -2.03 p f +601.59 160.07 m +7.5 7.92 15.26 11.88 23.28 11.88 c +5 0 9.27 -1.61 12.81 -4.84 c +3.54 -3.23 5.31 -7.45 5.31 -12.66 c +0 -7.81 -3.43 -14.73 -10.27 -20.74 c +-6.85 -6.02 -15.01 -9.02 -24.49 -9.02 c +-7.71 0 -13.39 1.84 -17.03 5.51 c +-3.64 3.67 -5.47 7.85 -5.47 12.54 c +0 2.34 0.75 6.07 2.27 11.17 c +8.05 26.8 p +0.68 2.34 1.02 4.38 1.02 6.09 c +0 2.55 -1.48 3.83 -4.45 3.83 c +-1.25 0 -3.46 -0.29 -6.64 -0.86 c +0.78 2.73 23.28 4.77 2.5 0 -10.94 -37.19 h +619.48 164.84 m +-5.52 0 -10.65 -2.49 -15.39 -7.46 c +-4.74 -4.97 -7.11 -10.54 -7.11 -16.68 c +0 -3.54 1.14 -6.59 3.44 -9.14 c +2.29 -2.55 5.13 -3.83 8.52 -3.83 c +5.26 0 10.03 2.63 14.3 7.89 c +4.27 5.26 6.41 11.28 6.41 18.05 c +0 3.54 -0.99 6.29 -2.97 8.24 c +-1.98 1.95 -4.37 2.93 -7.19 2.93 c +f +cleartomark end end pagesave restore showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/nomake.cmd new file mode 100644 index 00000000000..d5b89784882 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/nomake.cmd @@ -0,0 +1 @@ +@call ..\..\..\include\latex.fig.nmk.cmd %*
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/sec-facsimile.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/sec-facsimile.eps new file mode 100644 index 00000000000..9a944f547aa --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/fig/sec-facsimile.eps @@ -0,0 +1,260 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 7 14 78 29 +%%HiResBoundingBox: 7.818750 14.902032 77.220003 28.578282 +%........................................... +%%Creator: GPL Ghostscript 815 (epswrite) +%%CreationDate: 2008/12/01 04:15:45 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end readonly def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.12 0.12 scale +%%EndPageSetup +gsave mark +Q q +0 0 4958 0 0 7017 ^ Y +153 G +93.55 232.5 105.63 0 -0.94 -2.89 P +-4.58 -0.05 -8.05 -0.87 -10.39 -2.46 c +-2.34 -1.59 -4.82 -6.84 -7.42 -15.74 c +-17.89 -61.17 p +-2.08 -7.19 -3.12 -11.8 -3.12 -13.83 c +0 -2.45 0.79 -4.18 2.38 -5.2 c +1.59 -1.02 4.6 -1.6 9.02 -1.76 c +-1.02 -2.89 -40.86 0 0.78 2.89 p +5.31 0 9.11 1.2 11.41 3.59 c +2.29 2.4 4.56 7.37 6.8 14.92 c +23.28 79.14 -48.75 0 -22.66 -78.05 p +-1.67 -5.78 -2.5 -9.95 -2.5 -12.5 c +0 -4.74 3.98 -7.11 11.95 -7.11 c +-0.94 -2.89 -42.66 0 ^ p +3.86 0.05 6.64 0.39 8.36 1.02 c +1.72 0.63 3.31 1.9 4.77 3.83 c +1.46 1.93 2.84 5.11 4.14 9.53 c +20.55 68.98 p +1.14 3.91 1.72 6.75 1.72 8.52 c +0 3.18 -1.04 5.32 -3.12 6.45 c +-2.08 1.12 -5.47 1.73 -10.16 1.84 c +0.7 2.89 p f +259.88 172.81 m +0 -7.81 -2.07 -15.55 -6.21 -23.2 c +-4.14 -7.66 -9.91 -13.72 -17.3 -18.2 c +-7.39 -4.48 -14.58 -6.72 -21.56 -6.72 c +-7.14 0 -12.96 2.28 -17.46 6.84 c +-4.5 4.56 -6.76 10.46 -6.76 17.7 c +0 7.66 2.2 15.34 6.6 23.05 c +4.4 7.71 10.29 13.8 17.66 18.28 c +7.37 4.48 14.49 6.72 21.37 6.72 c +6.88 0 12.54 -2.27 16.99 -6.8 c +4.45 -4.53 6.68 -10.42 6.68 -17.66 c +h +246.91 178.2 m +0 4.84 -1.18 8.55 -3.55 11.13 c +-2.37 2.58 -5.43 3.87 -9.18 3.87 c +-7.66 0 -14.7 -5.48 -21.13 -16.45 c +-6.43 -10.96 -9.65 -21.86 -9.65 -32.7 c +0 -4.95 1.25 -8.76 3.75 -11.45 c +2.5 -2.68 5.65 -4.02 9.45 -4.02 c +7.34 0 14.23 5.46 20.66 16.37 c +6.43 10.91 9.65 21.99 9.65 33.24 c +f +300.03 234.68 1.56 2.97 P +12.03 -3.96 21.72 -11.2 29.06 -21.72 c +7.34 -10.52 11.02 -22.29 11.02 -35.31 c +0 -15.31 -4.68 -28.46 -14.02 -39.45 c +-9.35 -10.99 -20.4 -16.48 -33.16 -16.48 c +-7.19 0 -12.96 2.34 -17.3 7.03 c +-4.35 4.69 -6.52 10.65 -6.52 17.89 c +0 12.08 4.86 23.05 14.57 32.89 c +9.71 9.84 19.39 14.77 29.02 14.77 c +5.42 0 10.18 -1.98 14.3 -5.94 c +-1.04 22.24 -10.55 36.69 -28.52 43.36 c +h +314.09 193.12 m +-7.55 0 -14.56 -5.43 -21.02 -16.29 c +-6.46 -10.86 -9.69 -21.6 -9.69 -32.23 c +0 -5.21 1.25 -9.19 3.75 -11.95 c +2.5 -2.76 5.86 -4.14 10.08 -4.14 c +6.82 0 13.48 5.39 19.96 16.17 c +6.48 10.78 9.73 21.67 9.73 32.66 c +0 10.52 -4.27 15.78 -12.81 15.78 c +f +382.14 197.26 -10.39 -35.55 P +9.74 14.53 17.2 24.09 22.38 28.67 c +5.18 4.58 10.17 6.88 14.96 6.88 c +2.61 0 4.75 -0.86 6.45 -2.58 c +1.69 -1.72 2.54 -3.96 2.54 -6.72 c +0 -3.12 -0.75 -7.29 -2.27 -12.5 c +-9.53 -32.89 p +-1.09 -3.8 -1.64 -6.12 -1.64 -6.95 c +0 -0.73 0.21 -1.34 0.63 -1.84 c +0.42 -0.49 0.86 -0.74 1.33 -0.74 c +0.63 0 1.38 0.34 2.27 1.02 c +2.76 2.19 5.78 5.52 9.06 10 c +2.42 -1.48 p +-4.84 -6.93 -9.43 -11.87 -13.75 -14.84 c +-3.02 -2.03 -5.73 -3.05 -8.12 -3.05 c +-1.93 0 -3.46 0.59 -4.61 1.76 c +-1.14 1.17 -1.72 2.75 -1.72 4.73 c +0 2.5 0.89 6.8 2.66 12.89 c +9.06 31.41 p +1.14 3.91 1.72 6.95 1.72 9.14 c +0 1.04 -0.34 1.89 -1.02 2.54 c +-0.68 0.65 -1.51 0.98 -2.5 0.98 c +-1.46 0 -3.2 -0.62 -5.23 -1.87 c +-3.86 -2.34 -7.86 -6.21 -12.03 -11.6 c +-4.17 -5.39 -8.57 -12.28 -13.2 -20.66 c +-2.45 -4.43 -4.48 -9.27 -6.09 -14.53 c +-3.91 -12.89 -11.72 0 14.22 48.91 p +1.67 5.89 2.5 9.43 2.5 10.63 c +0 1.14 -0.46 2.15 -1.37 3.01 c +-0.91 0.86 -2.04 1.29 -3.4 1.29 c +-0.62 0 -1.72 -0.11 -3.28 -0.31 c +-2.97 -0.47 -0.47 2.81 27.03 4.84 p f +502.14 195.39 -13.59 -46.56 P +-2.03 -6.93 -3.05 -11.3 -3.05 -13.12 c +0 -0.94 0.17 -1.62 0.51 -2.07 c +0.34 -0.44 0.79 -0.66 1.37 -0.66 c +0.89 0 1.86 0.41 2.93 1.21 c +1.07 0.81 3.76 4.02 8.09 9.65 c +2.34 -1.8 p +-4.11 -6.51 -8.33 -11.3 -12.66 -14.37 c +-2.86 -1.98 -5.62 -2.97 -8.28 -2.97 c +-2.03 0 -3.62 0.57 -4.77 1.72 c +-1.14 1.15 -1.72 2.63 -1.72 4.45 c +0 1.77 0.34 4.12 1.02 7.03 c +0.83 3.86 3.2 12.24 7.11 25.16 c +-8.86 -14.53 -16.26 -24.55 -22.23 -30.08 c +-5.96 -5.52 -11.5 -8.28 -16.6 -8.28 c +-2.39 0 -4.43 0.84 -6.09 2.5 c +-1.67 1.67 -2.5 3.78 -2.5 6.33 c +0 3.91 1.14 9.89 3.44 17.97 c +6.8 24.14 p +1.67 5.78 2.5 9.38 2.5 10.78 c +0 0.63 -0.22 1.16 -0.66 1.6 c +-0.44 0.44 -0.93 0.66 -1.45 0.66 c +-1.09 0 -2.19 -0.39 -3.28 -1.17 c +-1.09 -0.78 -3.57 -3.67 -7.42 -8.67 c +-2.42 1.72 p +3.91 6.04 8.05 10.5 12.42 13.36 c +3.33 2.24 6.41 3.36 9.22 3.36 c +1.93 0 3.5 -0.61 4.73 -1.84 c +1.22 -1.22 1.84 -2.8 1.84 -4.73 c +0 -2.81 -1.04 -7.84 -3.12 -15.08 c +-7.34 -25.23 p +-2.03 -6.87 -3.05 -11.22 -3.05 -13.05 c +0 -0.99 0.32 -1.78 0.98 -2.38 c +0.65 -0.6 1.52 -0.9 2.62 -0.9 c +1.72 0 3.96 0.86 6.72 2.58 c +2.76 1.72 6.45 5.54 11.05 11.45 c +4.61 5.91 8.41 11.46 11.41 16.64 c +3 5.18 6.18 13.43 9.57 24.73 c +1.72 5.94 11.88 0 p f +568.63 143.59 m +-5.42 -6.51 -10.89 -11.29 -16.41 -14.34 c +-5.52 -3.05 -11.36 -4.57 -17.5 -4.57 c +-7.39 0 -13.16 2.09 -17.3 6.25 c +-4.14 4.17 -6.21 9.77 -6.21 16.8 c +0 7.97 2.23 15.81 6.68 23.52 c +4.45 7.71 10.44 13.97 17.97 18.79 c +7.53 4.82 14.91 7.23 22.15 7.23 c +5.68 0 9.92 -1.18 12.73 -3.55 c +2.81 -2.37 4.22 -5.27 4.22 -8.71 c +0 -3.23 -0.99 -5.99 -2.97 -8.28 c +-1.46 -1.77 -3.25 -2.66 -5.39 -2.66 c +-1.61 0 -2.96 0.52 -4.02 1.56 c +-1.07 1.04 -1.6 2.34 -1.6 3.91 c +0 0.99 0.2 1.9 0.59 2.73 c +0.39 0.83 1.2 1.84 2.42 3.01 c +1.22 1.17 1.96 2.02 2.23 2.54 c +0.26 0.52 0.39 1.07 0.39 1.64 c +0 1.09 -0.5 2 -1.48 2.73 c +-1.51 1.04 -3.64 1.56 -6.41 1.56 c +-5.11 0 -10.16 -1.8 -15.16 -5.39 c +-5 -3.59 -9.27 -8.7 -12.81 -15.31 c +-4.27 -8.02 -6.41 -16.04 -6.41 -24.06 c +0 -5.31 1.51 -9.52 4.53 -12.62 c +3.02 -3.1 7.14 -4.65 12.34 -4.65 c +4.01 0 7.98 1 11.91 3.01 c +3.93 2 8.35 5.64 13.24 10.9 c +2.27 -2.03 p f +601.59 160.07 m +7.5 7.92 15.26 11.88 23.28 11.88 c +5 0 9.27 -1.61 12.81 -4.84 c +3.54 -3.23 5.31 -7.45 5.31 -12.66 c +0 -7.81 -3.43 -14.73 -10.27 -20.74 c +-6.85 -6.02 -15.01 -9.02 -24.49 -9.02 c +-7.71 0 -13.39 1.84 -17.03 5.51 c +-3.64 3.67 -5.47 7.85 -5.47 12.54 c +0 2.34 0.75 6.07 2.27 11.17 c +8.05 26.8 p +0.68 2.34 1.02 4.38 1.02 6.09 c +0 2.55 -1.48 3.83 -4.45 3.83 c +-1.25 0 -3.46 -0.29 -6.64 -0.86 c +0.78 2.73 23.28 4.77 2.5 0 -10.94 -37.19 h +619.48 164.84 m +-5.52 0 -10.65 -2.49 -15.39 -7.46 c +-4.74 -4.97 -7.11 -10.54 -7.11 -16.68 c +0 -3.54 1.14 -6.59 3.44 -9.14 c +2.29 -2.55 5.13 -3.83 8.52 -3.83 c +5.26 0 10.03 2.63 14.3 7.89 c +4.27 5.26 6.41 11.28 6.41 18.05 c +0 3.54 -0.99 6.29 -2.97 8.24 c +-1.98 1.95 -4.37 2.93 -7.19 2.93 c +f +cleartomark end end pagesave restore showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/intro.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/intro.tex new file mode 100644 index 00000000000..7d6448ef196 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/intro.tex @@ -0,0 +1,49 @@ +\intro + +% +% Рспользуемые далее команды определяются РІ файле common.tex. +% + +% Актуальность работы +\actualitysection +\actualitytext + +% Степень разработанности темы исследования +\developmentsection +\developmenttext + +% Цели Рё задачи диссертационной работы +\objectivesection +\objectivetext + +% Научная РЅРѕРІРёР·РЅР° +\noveltysection +\noveltytext + +% Теоретическая Рё практическая значимость +\valuesection +\valuetext + +% Методология Рё методы исследования +\methodssection +\methodstext + +% Положения, выносимые РЅР° защиту +\resultssection +\resultstext + +% Степень достоверности Рё апробация результатов +\approbationsection +\approbationtext + +% Публикации +\pubsection +\pubtext + +% Личный вклад автора +\contribsection +\contribtext + +% Структура Рё объем диссертации +\structsection +\structtext diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/nomake.cmd new file mode 100644 index 00000000000..5e5e05f3520 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/nomake.cmd @@ -0,0 +1,45 @@ +@echo off + +rem Makefile for documents and templates +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +chcp 1251 > nul +set bibtex=biber +set bibtexflags= +set latexnmk=call ..\..\include\latex.nmk.cmd + +if "%1"=="" ( + %latexnmk% +) else ( + for %%f in (%*) do if "%%f"=="help" ( + call :%%f + ) else if "%%f"=="all" ( + call :allpdf + ) else if "%%f"=="allpdf" ( + call :%%f + ) else if "%%f"=="alldvi" ( + call :%%f + ) else ( + %latexnmk% %%f + ) +) + +exit /b + +:help + echo all build DVI of autoref and thesis + echo allpdf build PDF of autoref and thesis + %latexnmk% help +goto :eof + +:alldvi + set target=thesis & %latexnmk% dvi + set target=autoref & %latexnmk% dvi + set target= +goto :eof + +:allpdf + set target=thesis & %latexnmk% pdf + set target=autoref & %latexnmk% pdf + set target= +goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/review.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/review.tex new file mode 100644 index 00000000000..59a92856e0d --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/review.tex @@ -0,0 +1 @@ +\review diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.bib new file mode 100644 index 00000000000..ea2e0c361fe --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.bib @@ -0,0 +1,173 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {Р. Р. Рванов and Рџ. Рџ. Петров and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {Рџ. Рџ. Петров and Р. Р. Рванов and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, + keywords = {own}, +} + +@ARTICLE{Yoffe_1993_AP_42_173, + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, +} + +@ARTICLE{Efros_1982_FTP_16_7_1209, + author = {{\relax РђР»}. Р›. Рфрос and Рђ. Р›. Рфрос}, + title = {Межзонное поглощение света РІ полупроводниковом шаре}, + journal = {Физика Рё техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, +} + +@BOOK{Anselm_1978, + author = {Рђ. Р. Ансельм}, + title = {Введение РІ теорию полупроводников}, + publisher = {Наука}, + address = {РњРѕСЃРєРІР°}, + year = {1978}, + language = {russian}, +} + +@INPROCEEDINGS{Segall_1968, + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, +} + +@INBOOK{Agranovich_1983, + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, +} + +@INCOLLECTION{InP, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, + organization = {Ioffe Physico-Technical Institute}, + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Р•. Р–. Мищенко}, + title = {Неупругое рассеяние света РІ системе взаимодействующих + электронов Рё фононов}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {Рњ. Рђ. Скворцов}, + title = {Флуктуационные Рё интерференционные эффекты РІ мезоскопических системах}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. Рґ-СЂР° физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Р. Р’. Тернер}, + authortype = {РЎРЁРђ}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, РёРЅРє.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. в„– 7 (I С‡.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {РЎРЁРђ}, + pagetotal = {5 СЃ.~: РёР».}, + language = {russian}, +} + +@PATENT{patent2, + author = {Р’. Р. Чугаева}, + authortype = {Р Р¤}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} H 04 Р’ 1/38, Рќ 04 J 13/00}, + holder = {заявитель Рё патентообладатель Воронеж. науч.-ислед. РёРЅ-С‚ СЃРІСЏР·Рё.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. в„– 23 (II С‡.)}, + pagetotal = {2 СЃ.~: РёР».}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.tex new file mode 100644 index 00000000000..b6dac9d7cdb --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/doctor/thesis.tex @@ -0,0 +1,138 @@ +\documentclass[% +doctor, % тип документа +subf, % использовать пакет subcaption для вложенной нумерации СЂРёСЃСѓРЅРєРѕРІ +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%fixint, % включить прямые знаки интегралов +%classified, % РіСЂРёС„ секретности +%facsimile, % отображать факсимиле диссертанта +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\ifpdf\usepackage{epstopdf}\fi + +\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\citemy=\cite + +% Рспользовать полужирное начертание для векторов +\let\vec=\mathbf + +% Путь Рє файлам СЃ иллюстрациями +\graphicspath{{fig/}} + +\begin{document} + +% Переопределение стандартных заголовков +%\def\contentsname{Содержание} +%\def\conclusionname{Выводы} +%\def\bibname{Литература} + +% Включение файла СЃ общим текстом диссертации Рё автореферата +% (текст титульного листа Рё характеристика работы). +\input{common} + +% номер РєРѕРїРёРё для грифа секретности +%\copynum{1} +% класс доступа +%\classlabel{Для служебного пользования} + +% номер УДК +\libcatnum{12345} + +\title{Р”РССЕРТАЦРРЇ\\ +РЅР° соискание ученой степени\\ +доктора физико-математических наук} + +\maketitle + +%% +%% Titlepage in English +%% +% +%\institution{Name of Organization} +% +%\title{Doctoral Dissertation} +% +%% Topic +%\topic{Dummy Title} +% +%% Author +%\author{Author's Name} +% +%\specnum{01.04.05} +%\spec{Optics} +% +%%\specsndnum{01.04.07} +%%\specsnd{Condensed matter physics} +% +%% Scientific consultants +%\scon{B.\,B.~Baranov} +%\sconstatus{Professor} +%%\sconsnd{P.\,P.~Petrov} +%%\sconsndstatus{Professor} +% +%% City & Year +%\city{Saint Petersburg} +%\date{\number\year} +% +%\maketitle[en] + +% Содержание +\tableofcontents + +% Введение +\input{intro} + +% РћР±Р·РѕСЂ литературы +%\input{review} + +% Основная часть +%% Глава 1 +\input{1} +%% Глава 2 +%\input{2} + +% Заключение +\input{concl} + +% РЎРїРёСЃРѕРє сокращений Рё условных обозначений +%\input{defs} + +% Словарь терминов +%\input{dict} + +% РЎРїРёСЃРѕРє литературы +\printbibliography[heading=bibintoc] + +% РЎРїРёСЃРѕРє иллюстративного материала +%\listoffigures + +% Приложения +%\appendix +%\input{app-a} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/1.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/1.tex new file mode 100644 index 00000000000..d2d7f251b17 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/1.tex @@ -0,0 +1 @@ +\chapter{Название главы} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/Makefile new file mode 100644 index 00000000000..ef775e6d4f7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/Makefile @@ -0,0 +1,21 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +BIBTEX := biber +BIBTEXFLAGS := + +include ../../include/latex.mk + +all: pdf + +allpdf: pdf + +alldvi: dvi + +help: .help + @echo " all alias for pdf target" ;\ + echo " allpdf alias for pdf target" ;\ + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/app-a.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/app-a.tex new file mode 100644 index 00000000000..7e35d8529e6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/app-a.tex @@ -0,0 +1 @@ +\chapter{Заголовок приложения} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/concl.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/concl.tex new file mode 100644 index 00000000000..cd60e4f2708 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/concl.tex @@ -0,0 +1 @@ +\conclusion diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/Makefile new file mode 100644 index 00000000000..775b7fc3d88 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/Makefile @@ -0,0 +1 @@ +include ../../../include/latex.fig.mk
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/nomake.cmd new file mode 100644 index 00000000000..d5b89784882 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/fig/nomake.cmd @@ -0,0 +1 @@ +@call ..\..\..\include\latex.fig.nmk.cmd %*
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/intro.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/intro.tex new file mode 100644 index 00000000000..9266d88ac1a --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/intro.tex @@ -0,0 +1,5 @@ +\intro + +Ссылки на литературу~\cite{Yoffe_1993_AP_42_173,Efros_1982_FTP_16_7_1209,% +Anselm_1978,Segall_1968,Agranovich_1983,InP,Mishchenko_1996,Skvortsov_2008,% +Perelman_2003_math:0307245,Nielsen_2010_1006.2735,patent1,patent2}.
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/nomake.cmd new file mode 100644 index 00000000000..5bcc7c95bc2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/nomake.cmd @@ -0,0 +1,34 @@ +@echo off + +rem Makefile for documents and templates +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +chcp 1251 > nul +set bibtex=biber +set bibtexflags= +set latexnmk=call ..\..\include\latex.nmk.cmd + +if "%1"=="" ( + %latexnmk% +) else ( + for %%f in (%*) do if "%%f"=="help" ( + call :%%f + ) else if "%%f"=="all" ( + %latexnmk% pdf + ) else if "%%f"=="allpdf" ( + %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi + ) else ( + %latexnmk% %%f + ) +) + +exit /b + +:help + echo all alias for pdf target + echo allpdf alias for pdf target + echo alldvi alias for dvi target + %latexnmk% help +goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.bib new file mode 100644 index 00000000000..ea2e0c361fe --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.bib @@ -0,0 +1,173 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {Р. Р. Рванов and Рџ. Рџ. Петров and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {Рџ. Рџ. Петров and Р. Р. Рванов and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, + keywords = {own}, +} + +@ARTICLE{Yoffe_1993_AP_42_173, + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, +} + +@ARTICLE{Efros_1982_FTP_16_7_1209, + author = {{\relax РђР»}. Р›. Рфрос and Рђ. Р›. Рфрос}, + title = {Межзонное поглощение света РІ полупроводниковом шаре}, + journal = {Физика Рё техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, +} + +@BOOK{Anselm_1978, + author = {Рђ. Р. Ансельм}, + title = {Введение РІ теорию полупроводников}, + publisher = {Наука}, + address = {РњРѕСЃРєРІР°}, + year = {1978}, + language = {russian}, +} + +@INPROCEEDINGS{Segall_1968, + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, +} + +@INBOOK{Agranovich_1983, + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, +} + +@INCOLLECTION{InP, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, + organization = {Ioffe Physico-Technical Institute}, + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Р•. Р–. Мищенко}, + title = {Неупругое рассеяние света РІ системе взаимодействующих + электронов Рё фононов}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {Рњ. Рђ. Скворцов}, + title = {Флуктуационные Рё интерференционные эффекты РІ мезоскопических системах}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. Рґ-СЂР° физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Р. Р’. Тернер}, + authortype = {РЎРЁРђ}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, РёРЅРє.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. в„– 7 (I С‡.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {РЎРЁРђ}, + pagetotal = {5 СЃ.~: РёР».}, + language = {russian}, +} + +@PATENT{patent2, + author = {Р’. Р. Чугаева}, + authortype = {Р Р¤}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} H 04 Р’ 1/38, Рќ 04 J 13/00}, + holder = {заявитель Рё патентообладатель Воронеж. науч.-ислед. РёРЅ-С‚ СЃРІСЏР·Рё.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. в„– 23 (II С‡.)}, + pagetotal = {2 СЃ.~: РёР».}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.tex new file mode 100644 index 00000000000..aafac7072ec --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/master/thesis.tex @@ -0,0 +1,156 @@ +\documentclass[% +master, % тип документа +subf, % использовать пакет subcaption для вложенной нумерации СЂРёСЃСѓРЅРєРѕРІ +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%fixint, % включить прямые знаки интегралов +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\ifpdf\usepackage{epstopdf}\fi + +\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{Р”РССЕРТАЦРРЇ\\[-14pt]РЅР° соискание ученой степени\\РњРђР“РРЎРўР Рђ} + +\topic{Тема диссертации} + +% Автор +\author {Р¤РРћ автора} % Р¤РРћ +\group {1111/1} % Группа +\coursenum {111111} % Номер направления +\course {Название направления} +\masterprognum{111111} % Номер магистерской программы +\masterprog {Название программы} + +% Научный руководитель +\sa {Р¤РРћ руководителя} +\sastatus{Рґ.~С„.-Рј.~РЅ., СЃС‚.~РЅ.~СЃ.} +% Второй научный руководитель +%\sasnd {Р¤РРћ руководителя} +%\sasndstatus{Рґ.~С„.-Рј.~РЅ., СЃС‚.~РЅ.~СЃ.} + +% Рецензент +\rev {Р¤РРћ рецензента} +\revstatus{Рґ.~С„.-Рј.~РЅ., РІ.~РЅ.~СЃ.} +% Второй рецензент +%\revsnd {Р¤РРћ рецензента} +%\revsndstatus{Рґ.~С‚.~РЅ., СЃС‚.~РЅ.~СЃ.} + +% Консультант +\con{Р¤РРћ консультанта} +\conspec{вопросам\\охраны труда} +\constatus{Рє.~С‚.~РЅ., РґРѕС†.} +% Второй консультант +%\consnd{Р¤РРћ консультанта} +%\consndspec{экономическим\\вопросам} +%\consndstatus{Рє.~СЌ.~РЅ., РґРѕС†.} + +% Город Рё РіРѕРґ +\city{Санкт-Петербург} +\date{\number\year} + +\maketitle + +%% +%% Titlepage in English +%% +% +%\institution{Name of Organization} +% +%% Approved by +%\apname{Professor S.\,S.~Sidorov} +% +%\title{Master's Thesis} +% +%% Topic +%\topic{Dummy Title} +% +%% Author +%\author{Author's Name} % Full Name +%\course{Physics} % Название специальности +% +%\group{} % Study Group +%\masterprog {Title of program} +% +%% 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{app-a} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/nomake.cmd new file mode 100644 index 00000000000..a65aab97a2b --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/nomake.cmd @@ -0,0 +1,55 @@ +@echo off + +rem nomake script for LaTeX projects +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +if "%CMDEXTVERSION%"=="" ( + echo This script requires command interpreter from Windows 2000 or above. + goto :eof +) + +setlocal enabledelayedexpansion + +set target=thesis +if "!texmf!"=="" set texmf=%allusersprofile%\Application Data\MiKTeX\2.9 +if "!destdir!"=="" set destdir=!texmf! +if "!docdir!"=="" set docdir=!destdir!\doc\latex\disser +if "!subdirs!"=="" set subdirs=bachelor ..\specialist ..\master ..\candidate ..\doctor + + +if "%1"=="help" ( + call :%1 +) else if "%1"=="install" ( + call :%1 +) else if "%1"=="uninstall" ( + call :%1 +) else if "%1"=="reinstall" ( + call :%1 +) else ( + for %%i in (%subdirs%) do @cd %%i & call nomake %* +) + +exit /b + +:help + cd candidate & call nomake help & cd .. + echo install install templates to TeX tree + echo uninstall uninstall templates + echo reinstall reinstall templates +goto :eof + +:install + if not exist "!docdir!" mkdir "!docdir!" + xcopy /y /e /i /f ..\templates "!docdir!\templates" + xcopy /y /e /i /f ..\templates-utf8 "!docdir!\templates-utf8" + xcopy /y /e /i /f ..\include "!docdir!\include" +goto :eof + +:uninstall + rmdir /s /q "!docdir!" +goto :eof + +:reinstall + call :uninstall + call :install +goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/1.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/1.tex new file mode 100644 index 00000000000..d2d7f251b17 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/1.tex @@ -0,0 +1 @@ +\chapter{Название главы} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/Makefile new file mode 100644 index 00000000000..ef775e6d4f7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/Makefile @@ -0,0 +1,21 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +TARGET ?= thesis +BIBTEX := biber +BIBTEXFLAGS := + +include ../../include/latex.mk + +all: pdf + +allpdf: pdf + +alldvi: dvi + +help: .help + @echo " all alias for pdf target" ;\ + echo " allpdf alias for pdf target" ;\ + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/app-a.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/app-a.tex new file mode 100644 index 00000000000..7e35d8529e6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/app-a.tex @@ -0,0 +1 @@ +\chapter{Заголовок приложения} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/concl.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/concl.tex new file mode 100644 index 00000000000..cd60e4f2708 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/concl.tex @@ -0,0 +1 @@ +\conclusion diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/Makefile new file mode 100644 index 00000000000..775b7fc3d88 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/Makefile @@ -0,0 +1 @@ +include ../../../include/latex.fig.mk
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/fig.eps b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/fig.eps new file mode 100644 index 00000000000..9382ce4351e --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/fig.eps @@ -0,0 +1,490 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 235 371 361 470 +%%HiResBoundingBox: 236 371.521 360.901 469.38 +%................................. +%%Creator: MiKTeX GPL Ghostscript 860 (epswrite) +%%CreationDate: 2007/12/07 10:10:05 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2007 Artifex Software, Inc. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 1.001 0 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}! +/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}! +/@F{@ &2<<F}!/@C{@X &2 FX}! +/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}! +/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource +/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall +currentdict end image}! +/~{@ read {pop} if}! +end def +%%EndResource +/pagesave null def +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.1 0.1 scale +%%EndPageSetup +gsave mark +Q q +0 0 250000 250000 re +Y +20 w +4 M +K +2360 4631.09 626.66 0 S +2360 3784.43 620 0 S +255 G +2503.71 3882.92 23.24 -86.02 23.24 86.02 -46.48 0 f +2549.62 4534.78 -23.23 86.03 -23.24 -86.03 46.48 0 f +10 w +K +2526.66 4550.5 0 -683.29 S +2503.71 3882.92 23.24 -86.02 23.24 86.02 -46.48 0 f +2549.62 4534.78 -23.23 86.03 -23.24 -86.03 46.48 0 f +255 G +2806.11 4621.76 0 -754.26 f +2783.14 3883.11 23.23 -85.35 23.24 85.35 -46.48 0 f +K +2806.11 4621.76 0 -754.26 S +2783.14 3883.11 23.23 -85.35 23.24 85.35 -46.48 0 f +2947.11 4232 m +-4 -7.01 -7.66 -14.05 -10.98 -21.13 c +-3.32 -7.08 -6.26 -14.27 -8.82 -21.54 c +-0.24 -3.36 -0.66 -6.75 -1.26 -10.15 c +-0.6 -3.39 -1.34 -6.77 -2.22 -10.13 c +-0.16 -0.64 -0.42 -1.68 -0.78 -3.12 c +-0.36 -1.44 -0.82 -2.89 -1.38 -4.37 c +-0.56 -1.48 -1.26 -2.79 -2.1 -3.96 c +-0.84 -1.15 -1.79 -1.74 -2.82 -1.74 c +-1.45 0 -2.31 0.7 -2.59 2.11 c +-0.28 1.39 -0.32 2.96 -0.12 4.68 c +0.21 1.72 0.52 3.32 0.96 4.8 c +0.44 1.48 0.66 2.3 0.66 2.46 c +0.88 3.36 1.82 6.7 2.82 10.02 c +1 3.32 2.06 6.66 3.18 10.02 c +0.32 3.84 0.3 7.55 -0.06 11.16 c +-0.36 3.6 -1.1 7.08 -2.21 10.44 c +-1.28 3.76 -3.76 6.51 -7.45 8.23 c +-3.68 1.72 -7.92 2.58 -12.71 2.58 c +-2.16 0 -4.31 -0.18 -6.43 -0.54 c +-2.12 -0.36 -4.02 -0.9 -5.7 -1.62 c +-1.68 -0.72 -3.12 -1.66 -4.32 -2.82 c +-1.2 -1.16 -2 -2.54 -2.39 -4.14 c +-0.24 -0.8 -0.8 -1.2 -1.68 -1.2 c +-2.28 0 p +-1.12 0 -1.68 0.52 -1.68 1.56 c +0 0.48 p +0.72 2.96 1.98 5.73 3.78 8.33 c +1.8 2.59 3.92 4.86 6.36 6.81 c +2.44 1.95 5.1 3.48 7.98 4.59 c +2.88 1.11 5.84 1.67 8.89 1.67 c +3.27 0 6.16 -0.64 8.64 -1.91 c +2.48 -1.28 4.64 -2.93 6.48 -4.95 c +1.84 -2.03 3.4 -4.34 4.68 -6.93 c +1.28 -2.59 2.4 -5.21 3.36 -7.85 c +0.56 -1.6 1.02 -3.21 1.38 -4.86 c +0.36 -1.64 0.66 -3.3 0.9 -4.98 c +4.24 10.08 9.12 19.93 14.64 29.57 c +0.32 0.55 0.8 0.84 1.44 0.84 c +2.4 0 p +0.4 0 0.68 -0.04 0.84 -0.12 c +0.56 -0.4 0.84 -0.88 0.84 -1.44 c +0 -0.23 -0.08 -0.52 -0.24 -0.83 c +f +2947.67 4156.32 0 2.48 P +0.69 0 1.44 0 2.24 0 c +0.8 0 1.57 0.02 2.32 0.04 c +0.75 0.03 1.46 0.08 2.12 0.16 c +0.67 0.08 1.21 0.17 1.64 0.27 c +0.54 0.11 0.95 0.39 1.24 0.84 c +0.29 0.46 0.44 0.98 0.44 1.56 c +0 42.5 p +-1.54 -0.75 -3.21 -1.29 -5 -1.61 c +-1.79 -0.32 -3.61 -0.48 -5.48 -0.48 c +0 2.5 p +2.72 0 5.36 0.37 7.92 1.11 c +2.57 0.74 4.78 2.09 6.65 4.04 c +0.97 0 p +0.59 0 0.88 -0.29 0.88 -0.89 c +0 -47.17 p +0 -0.59 0.14 -1.11 0.44 -1.56 c +0.29 -0.45 0.71 -0.73 1.24 -0.84 c +0.43 -0.11 0.96 -0.2 1.61 -0.27 c +0.64 -0.09 1.34 -0.14 2.12 -0.16 c +0.77 -0.02 1.56 -0.04 2.36 -0.04 c +0.8 0 1.54 0 2.24 0 c +0 -2.48 p +-8.64 0.32 -17.29 0.32 -25.94 0 c +f +3209.61 4414.5 m +-4 -7 -7.67 -14.04 -10.98 -21.12 c +-3.32 -7.08 -6.26 -14.26 -8.82 -21.54 c +-0.23 -3.36 -0.66 -6.74 -1.26 -10.14 c +-0.6 -3.4 -1.34 -6.78 -2.22 -10.14 c +-0.16 -0.64 -0.42 -1.68 -0.78 -3.12 c +-0.36 -1.43 -0.82 -2.9 -1.39 -4.38 c +-0.55 -1.48 -1.25 -2.8 -2.09 -3.96 c +-0.84 -1.16 -1.79 -1.74 -2.82 -1.74 c +-1.45 0 -2.31 0.7 -2.59 2.1 c +-0.27 1.4 -0.31 2.96 -0.12 4.68 c +0.21 1.72 0.53 3.32 0.96 4.8 c +0.45 1.48 0.66 2.29 0.66 2.46 c +0.88 3.36 1.82 6.7 2.82 10.02 c +1 3.32 2.06 6.66 3.18 10.02 c +0.32 3.84 0.3 7.56 -0.06 11.16 c +-0.36 3.6 -1.09 7.08 -2.21 10.44 c +-1.28 3.76 -3.76 6.5 -7.45 8.22 c +-3.68 1.72 -7.92 2.58 -12.71 2.58 c +-2.16 0 -4.31 -0.18 -6.43 -0.54 c +-2.12 -0.36 -4.02 -0.9 -5.7 -1.62 c +-1.68 -0.72 -3.12 -1.66 -4.33 -2.82 c +-1.2 -1.16 -2 -2.54 -2.39 -4.14 c +-0.25 -0.8 -0.8 -1.2 -1.68 -1.2 c +-2.29 0 p +-1.12 0 -1.68 0.52 -1.68 1.56 c +0 0.48 p +0.72 2.96 1.97 5.73 3.78 8.32 c +1.8 2.59 3.92 4.86 6.36 6.81 c +2.44 1.95 5.1 3.48 7.98 4.59 c +2.88 1.11 5.84 1.67 8.89 1.67 c +3.27 0 6.16 -0.64 8.64 -1.91 c +2.48 -1.27 4.63 -2.93 6.47 -4.95 c +1.85 -2.04 3.4 -4.34 4.68 -6.93 c +1.28 -2.6 2.4 -5.21 3.36 -7.86 c +0.57 -1.6 1.02 -3.22 1.39 -4.86 c +0.35 -1.64 0.65 -3.3 0.9 -4.98 c +4.24 10.08 9.12 19.94 14.64 29.57 c +0.32 0.55 0.8 0.84 1.44 0.84 c +2.4 0 p +0.4 0 0.68 -0.04 0.84 -0.12 c +0.57 -0.4 0.84 -0.87 0.84 -1.43 c +0 -0.25 -0.08 -0.52 -0.23 -0.84 c +f +3235.98 4328.81 m +-0.59 -2.19 -0.81 -4.04 -0.64 -5.53 c +0.16 -1.5 0.91 -2.24 2.23 -2.24 c +0.65 0 1.23 0.27 1.77 0.8 c +0.53 0.53 1.01 1.28 1.43 2.23 c +0.42 0.96 0.83 2.08 1.2 3.36 c +0.37 1.28 0.74 2.7 1.11 4.24 c +0.12 0.48 0.43 0.72 0.97 0.72 c +0.88 0 p +0.54 0 0.74 -0.24 0.63 -0.72 c +-0.31 -1.23 -0.66 -2.57 -1.04 -4 c +-0.37 -1.45 -0.88 -2.78 -1.52 -4 c +-0.63 -1.23 -1.43 -2.25 -2.36 -3.1 c +-0.93 -0.84 -2.09 -1.26 -3.48 -1.26 c +-1.86 0 -3.36 0.53 -4.47 1.6 c +-1.12 1.06 -1.82 2.43 -2.09 4.07 c +-1.22 -1.49 -2.68 -2.81 -4.39 -3.95 c +-1.71 -1.15 -3.5 -1.72 -5.36 -1.72 c +-1.97 0 -3.62 0.51 -4.96 1.52 c +-1.33 1.02 -2.37 2.3 -3.12 3.86 c +-0.91 1.88 -1.39 3.91 -1.45 6.11 c +-0.05 2.2 0.21 4.42 0.8 6.67 c +0.59 2.25 1.45 4.47 2.56 6.67 c +1.13 2.2 2.59 4.23 4.41 6.11 c +1.49 1.55 3.18 2.85 5.08 3.89 c +1.89 1.05 3.8 1.57 5.72 1.57 c +1.65 0 3 -0.46 4.03 -1.36 c +1.05 -0.91 1.86 -2 2.44 -3.27 c +4.48 17.79 p +0.21 0.84 0.33 1.49 0.36 1.94 c +0.02 0.45 -0.1 0.78 -0.36 0.99 c +-0.32 0.26 -0.93 0.43 -1.84 0.51 c +-0.91 0.08 -1.93 0.12 -3.04 0.12 c +-0.59 0 -0.83 0.3 -0.72 0.9 c +0.23 0.66 p +0.11 0.49 0.46 0.79 1.04 0.9 c +7.45 0.66 2.79 0.23 p +0.26 0.06 0.46 -0.01 0.61 -0.2 c +0.13 -0.19 0.16 -0.42 0.11 -0.68 c +-11.51 -46.11 h +3234.89 4347.82 m +-0.09 0.51 -0.21 1.04 -0.36 1.57 c +-0.43 1.29 -1.05 2.38 -1.87 3.27 c +-0.83 0.89 -1.89 1.34 -3.16 1.34 c +-1.17 0 -2.32 -0.43 -3.44 -1.3 c +-1.12 -0.86 -2.14 -1.94 -3.05 -3.23 c +-1.28 -1.83 -2.24 -3.75 -2.87 -5.74 c +-0.64 -1.99 -1.23 -4.07 -1.77 -6.22 c +-0.54 -2.11 -0.97 -4.16 -1.32 -6.18 c +-0.35 -2.02 -0.33 -3.92 0.04 -5.7 c +0.27 -1.29 0.73 -2.39 1.41 -3.28 c +0.66 -0.89 1.61 -1.33 2.83 -1.33 c +1.28 0 2.55 0.45 3.81 1.37 c +1.25 0.92 2.4 2.02 3.48 3.32 c +0.42 0.54 0.82 1.05 1.19 1.54 c +0.38 0.48 0.72 1.02 1.05 1.61 c +4.32 17.38 p +-0.12 0.54 -0.2 1.06 -0.28 1.57 c +f +5.821 w +10 M +2 J +8 i +3040 4690 0 -117.65 S +3132.49 4690 24.41 -58.83 S +3156.9 4631.17 -24.41 -58.82 S +1 i +3111.7 4592.94 -45.72 0 0 2.47 P +0 0.16 0.08 0.39 0.25 0.7 c +18.68 19.89 p +2.3 2.43 4.59 4.92 6.86 7.47 c +2.27 2.55 4.32 5.14 6.13 7.76 c +1.81 2.63 3.28 5.38 4.39 8.24 c +1.12 2.86 1.67 5.86 1.67 9 c +0 2.59 -0.35 5.04 -1.05 7.36 c +-0.7 2.31 -1.73 4.36 -3.09 6.12 c +-1.36 1.77 -3.05 3.18 -5.07 4.23 c +-2.02 1.07 -4.39 1.59 -7.12 1.59 c +-3.95 0 -7.46 -1.16 -10.5 -3.47 c +-3.05 -2.32 -5.19 -5.23 -6.42 -8.77 c +0.91 0.23 1.86 0.29 2.83 0.18 c +1 -0.12 1.88 -0.43 2.66 -0.94 c +0.78 -0.51 1.43 -1.2 1.97 -2.06 c +0.53 -0.87 0.8 -1.89 0.8 -3.06 c +0 -2.04 -0.68 -3.59 -2.04 -4.65 c +-1.36 -1.06 -2.86 -1.59 -4.5 -1.59 c +-1.57 0 -3.03 0.53 -4.39 1.59 c +-1.35 1.05 -2.03 2.61 -2.03 4.65 c +0 2.98 0.59 5.8 1.78 8.47 c +1.19 2.66 2.81 4.98 4.86 6.94 c +2.04 1.95 4.45 3.5 7.25 4.62 c +2.78 1.12 5.73 1.68 8.85 1.68 c +3.85 0 7.39 -0.57 10.63 -1.71 c +3.24 -1.13 6 -2.74 8.3 -4.81 c +2.29 -2.08 4.07 -4.51 5.34 -7.3 c +1.27 -2.79 1.9 -5.82 1.9 -9.11 c +0 -3.76 -0.86 -7.19 -2.59 -10.29 c +-1.73 -3.1 -3.89 -5.98 -6.48 -8.64 c +-2.59 -2.66 -5.34 -5.17 -8.26 -7.52 c +-2.91 -2.35 -5.57 -4.63 -7.95 -6.82 c +-14.18 -13.17 12.46 0 p +1.8 0 3.9 0 6.28 0 c +2.38 0 4.62 0.02 6.72 0.06 c +2.1 0.04 3.91 0.12 5.43 0.23 c +1.52 0.12 2.36 0.25 2.53 0.41 c +0.32 0.31 0.63 0.88 0.92 1.71 c +0.29 0.82 0.55 1.74 0.8 2.77 c +0.25 1.02 0.47 2.08 0.68 3.17 c +0.2 1.11 0.39 2.12 0.55 3.06 c +3.37 0 -3.47 -20.48 p f +8 i +3488.31 4131.69 0 -117.66 S +3580.8 4131.69 24.41 -58.83 S +3605.21 4072.86 -24.41 -58.83 S +1 i +3562.3 4045.85 m +-1.36 -2.82 -3.21 -5.25 -5.59 -7.3 c +-2.54 -2.2 -5.38 -3.85 -8.55 -4.94 c +-3.15 -1.1 -6.46 -1.65 -9.91 -1.65 c +-3.12 0 -6.18 0.39 -9.19 1.16 c +-3 0.78 -5.66 1.96 -8.01 3.55 c +-2.34 1.58 -4.22 3.54 -5.61 5.85 c +-1.41 2.32 -2.1 4.96 -2.1 7.94 c +0 2.2 0.71 3.83 2.16 4.88 c +1.43 1.06 2.98 1.59 4.62 1.59 c +1.73 0 3.31 -0.53 4.75 -1.59 c +1.43 -1.05 2.16 -2.69 2.16 -4.88 c +0 -1.25 -0.24 -2.32 -0.74 -3.18 c +-0.49 -0.87 -1.12 -1.57 -1.9 -2.12 c +-0.78 -0.55 -1.67 -0.92 -2.65 -1.11 c +-1 -0.2 -1.93 -0.21 -2.84 -0.06 c +1.64 -2.83 4.23 -5.04 7.77 -6.65 c +3.54 -1.61 7.4 -2.41 11.59 -2.41 c +2.05 0 3.94 0.5 5.67 1.48 c +1.72 1 3.16 2.32 4.32 3.98 c +1.39 2.06 2.33 4.31 2.82 6.72 c +0.49 2.42 0.73 4.9 0.73 7.44 c +0 2.54 -0.24 5.02 -0.73 7.43 c +-0.49 2.42 -1.43 4.66 -2.82 6.73 c +-1.15 1.66 -2.6 3.01 -4.32 4.04 c +-1.73 1.02 -3.62 1.54 -5.67 1.54 c +-8.39 0 p +-0.73 0 -1.1 0.34 -1.1 1.02 c +0 0.34 p +-0.09 0.3 0 0.56 0.24 0.8 c +0.25 0.23 0.54 0.34 0.86 0.34 c +1.15 0.16 2.3 0.23 3.46 0.23 c +1.15 0 2.3 0.08 3.46 0.23 c +2.13 0.16 4 0.8 5.61 1.94 c +1.6 1.14 2.93 2.61 4 4.41 c +1.07 1.8 1.88 3.86 2.4 6.17 c +0.54 2.31 0.8 4.68 0.8 7.12 c +0 1.81 -0.18 3.51 -0.55 5.12 c +-0.37 1.61 -1.13 3.04 -2.29 4.29 c +-2.21 2.52 -5.04 3.77 -8.49 3.77 c +-3.61 0 -6.92 -0.66 -9.91 -2 c +-3.01 -1.33 -5.25 -3.14 -6.72 -5.41 c +1.72 0.39 3.43 0.08 5.12 -0.95 c +1.68 -1.02 2.52 -2.66 2.52 -4.93 c +0 -1.96 -0.64 -3.44 -1.95 -4.41 c +-1.31 -0.99 -2.73 -1.48 -4.3 -1.48 c +-1.54 0 -2.98 0.49 -4.29 1.48 c +-1.3 0.98 -1.96 2.45 -1.96 4.41 c +0 2.51 0.62 4.76 1.85 6.77 c +1.23 2 2.84 3.7 4.85 5.12 c +2.01 1.41 4.3 2.5 6.88 3.24 c +2.58 0.76 5.22 1.13 7.93 1.13 c +2.86 0 5.64 -0.37 8.35 -1.12 c +2.7 -0.75 5.19 -1.91 7.49 -3.47 c +1.96 -1.34 3.61 -2.99 4.91 -4.95 c +1.31 -1.96 1.96 -4.16 1.96 -6.59 c +0 -2.51 -0.45 -4.86 -1.35 -7.06 c +-0.9 -2.2 -2.1 -4.2 -3.61 -6.01 c +-1.52 -1.8 -3.32 -3.38 -5.41 -4.71 c +-2.09 -1.34 -4.36 -2.39 -6.82 -3.18 c +2.38 -0.4 4.66 -1.06 6.82 -2.01 c +2.18 -0.94 4.2 -2.19 6.09 -3.76 c +2.37 -1.96 4.23 -4.3 5.59 -7 c +1.36 -2.71 2.03 -5.56 2.03 -8.54 c +0 -3.07 -0.67 -6.01 -2.03 -8.83 c +f +8 i +3040 3836.67 0 -117.66 S +3132.49 3836.67 24.41 -58.83 S +3156.9 3777.84 -24.41 -58.83 S +1 i +3071.72 3739.66 0 3.64 P +1.06 0 2.22 0 3.45 0 c +1.23 0 2.42 0.02 3.57 0.06 c +1.16 0.04 2.24 0.12 3.27 0.23 c +1.03 0.12 1.87 0.25 2.53 0.41 c +0.82 0.16 1.45 0.57 1.9 1.24 c +0.45 0.66 0.68 1.43 0.68 2.29 c +0 62.53 p +-2.38 -1.11 -4.95 -1.91 -7.7 -2.4 c +-2.75 -0.47 -5.58 -0.71 -8.45 -0.71 c +0 3.59 p +4.19 0 8.26 0.55 12.2 1.65 c +3.93 1.1 7.34 3.1 10.2 6 c +1.47 0 p +0.9 0 1.35 -0.43 1.35 -1.29 c +0 -69.36 p +0 -0.87 0.23 -1.63 0.67 -2.29 c +0.45 -0.68 1.09 -1.09 1.91 -1.24 c +0.66 -0.16 1.48 -0.29 2.46 -0.41 c +0.99 -0.12 2.08 -0.2 3.27 -0.23 c +1.19 -0.04 2.4 -0.06 3.63 -0.06 c +1.23 0 2.38 0 3.46 0 c +0 -3.64 p +-13.3 0.47 -26.59 0.47 -39.88 0 c +f +255 G +3210.16 4148.94 87.98 -69.68 -41.36 104.34 -46.62 -34.66 f +10 w +4 M +0 J +K +2887.5 4631.09 357.5 -480.95 S +3210.16 4148.94 87.98 -69.68 -41.36 104.34 -46.62 -34.66 f +1 J +1 j +3150 4076.09 60 0 S +3262.5 4076.09 60 0 S +3375 4076.09 60 0 S +2470.47 4203 m +-0.16 -0.72 -0.6 -1.16 -1.32 -1.32 c +-1.32 0 p +-0.72 0 -1.08 0.36 -1.08 1.09 c +0.64 3.91 0.8 7.66 0.48 11.22 c +-0.32 3.55 -1.18 6.7 -2.58 9.41 c +-1.4 2.73 -3.3 4.9 -5.7 6.54 c +-2.4 1.64 -5.32 2.46 -8.76 2.46 c +-4.16 0 -8.32 -1.05 -12.48 -3.12 c +-4.16 -2.09 -7.92 -4.85 -11.28 -8.29 c +-3.93 -4.09 -6.98 -8.59 -9.19 -13.52 c +-2.2 -4.93 -3.94 -9.95 -5.22 -15.08 c +-1.36 -5.2 -2.14 -10.25 -2.34 -15.15 c +-0.2 -4.88 0.66 -9.36 2.58 -13.46 c +1.68 -3.52 4.12 -6.33 7.32 -8.41 c +3.2 -2.08 6.96 -3.12 11.28 -3.12 c +2.32 0 4.63 0.32 6.91 0.95 c +2.28 0.65 4.36 1.55 6.24 2.75 c +1.88 1.18 3.5 2.62 4.86 4.29 c +1.36 1.66 2.28 3.48 2.76 5.46 c +2.52 10.24 p +0.48 1.9 0.29 3.05 -0.59 3.46 c +-0.88 0.39 -2.36 0.63 -4.45 0.71 c +-2.08 0.08 -4.2 0.12 -6.36 0.12 c +-0.4 0 -0.7 0.13 -0.9 0.38 c +-0.21 0.25 -0.22 0.6 -0.06 1.04 c +0.24 1.15 p +0.08 0.43 0.28 0.77 0.6 1.02 c +0.32 0.24 0.68 0.37 1.08 0.37 c +5.6 -0.25 11.32 -0.36 17.16 -0.36 c +3.76 0 7.53 0.12 11.29 0.36 c +0.4 0 0.7 -0.13 0.9 -0.37 c +0.2 -0.25 0.22 -0.59 0.06 -1.02 c +-0.24 -1.15 p +-0.16 -0.95 -0.72 -1.42 -1.68 -1.42 c +-1.36 0 -2.54 -0.04 -3.54 -0.12 c +-1 -0.09 -1.75 -0.29 -2.22 -0.59 c +-0.48 -0.25 -1 -1.43 -1.56 -3.57 c +-6 -23.47 p +0 -0.23 -0.16 -0.52 -0.48 -0.83 c +-0.24 -0.24 -0.56 -0.36 -0.96 -0.36 c +-0.32 0 -0.57 0.13 -0.72 0.36 c +-0.88 1.04 -1.68 2.12 -2.4 3.27 c +-0.72 1.15 -1.28 2.4 -1.68 3.76 c +-2.64 -3.27 -6.12 -5.74 -10.44 -7.45 c +-4.32 -1.71 -8.64 -2.56 -12.96 -2.56 c +-5.28 0 -9.98 1.14 -14.1 3.42 c +-4.12 2.28 -7.46 5.42 -10.02 9.43 c +-2.63 4.32 -4.21 9.11 -4.73 14.39 c +-0.52 5.27 -0.1 10.76 1.26 16.43 c +1.43 5.68 3.76 11.16 6.96 16.44 c +3.2 5.28 7.2 10.08 12 14.4 c +4.48 3.92 9.36 7.04 14.64 9.36 c +5.28 2.32 10.56 3.48 15.84 3.48 c +4.16 0 7.7 -0.94 10.62 -2.82 c +2.92 -1.87 5.22 -4.37 6.9 -7.5 c +8.52 9.72 p +0.24 0.4 0.6 0.6 1.08 0.6 c +0.48 0 p +0.71 0 1 -0.39 0.84 -1.16 c +-8.04 -31.84 p f +cleartomark end end pagesave restore + showpage +%%PageTrailer +%%Trailer +%%Pages: 1 diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/nomake.cmd new file mode 100644 index 00000000000..d5b89784882 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/fig/nomake.cmd @@ -0,0 +1 @@ +@call ..\..\..\include\latex.fig.nmk.cmd %*
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/intro.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/intro.tex new file mode 100644 index 00000000000..9266d88ac1a --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/intro.tex @@ -0,0 +1,5 @@ +\intro + +Ссылки на литературу~\cite{Yoffe_1993_AP_42_173,Efros_1982_FTP_16_7_1209,% +Anselm_1978,Segall_1968,Agranovich_1983,InP,Mishchenko_1996,Skvortsov_2008,% +Perelman_2003_math:0307245,Nielsen_2010_1006.2735,patent1,patent2}.
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/nomake.cmd new file mode 100644 index 00000000000..b5e731397f5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/nomake.cmd @@ -0,0 +1,35 @@ +@echo off + +rem Makefile for documents and templates +rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> + +chcp 1251 > nul +set bibtex=biber +set bibtexflags= +set latexnmk=call ..\..\include\latex.nmk.cmd + +if "%1"=="" ( + %latexnmk% +) else ( + for %%f in (%*) do if "%%f"=="help" ( + call :%%f + ) else if "%%f"=="all" ( + %latexnmk% pdf + ) else if "%%f"=="allpdf" ( + %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi + ) else ( + %latexnmk% %%f + ) +) + +exit /b + +:help + echo all alias for pdf target + echo allpdf alias for pdf target + echo alldvi alias for dvi target + %latexnmk% help +goto :eof + diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.bib new file mode 100644 index 00000000000..ea2e0c361fe --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.bib @@ -0,0 +1,173 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {Р. Р. Рванов and Рџ. Рџ. Петров and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {Рџ. Рџ. Петров and Р. Р. Рванов and РЎ. РЎ. РЎРёРґРѕСЂРѕРІ}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, + keywords = {own}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, + keywords = {own}, +} + +@ARTICLE{Yoffe_1993_AP_42_173, + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, +} + +@ARTICLE{Efros_1982_FTP_16_7_1209, + author = {{\relax РђР»}. Р›. Рфрос and Рђ. Р›. Рфрос}, + title = {Межзонное поглощение света РІ полупроводниковом шаре}, + journal = {Физика Рё техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, +} + +@BOOK{Anselm_1978, + author = {Рђ. Р. Ансельм}, + title = {Введение РІ теорию полупроводников}, + publisher = {Наука}, + address = {РњРѕСЃРєРІР°}, + year = {1978}, + language = {russian}, +} + +@INPROCEEDINGS{Segall_1968, + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, +} + +@INBOOK{Agranovich_1983, + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, +} + +@INCOLLECTION{InP, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, + organization = {Ioffe Physico-Technical Institute}, + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Р•. Р–. Мищенко}, + title = {Неупругое рассеяние света РІ системе взаимодействующих + электронов Рё фононов}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {Рњ. Рђ. Скворцов}, + title = {Флуктуационные Рё интерференционные эффекты РІ мезоскопических системах}, + school = {РРўР¤ РёРј. Р›.~Р”.~Ландау}, + type = {РґРёСЃСЃ. Рґ-СЂР° физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Р. Р’. Тернер}, + authortype = {РЎРЁРђ}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, РёРЅРє.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. в„– 7 (I С‡.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {РЎРЁРђ}, + pagetotal = {5 СЃ.~: РёР».}, + language = {russian}, +} + +@PATENT{patent2, + author = {Р’. Р. Чугаева}, + authortype = {Р Р¤}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Р РѕСЃ. Федерация}, + ipc = {РњРџРљ\ensuremath{^7} H 04 Р’ 1/38, Рќ 04 J 13/00}, + holder = {заявитель Рё патентообладатель Воронеж. науч.-ислед. РёРЅ-С‚ СЃРІСЏР·Рё.}, + credits = {патент. поверенный Егорова Р“. Р‘.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. в„– 23 (II С‡.)}, + pagetotal = {2 СЃ.~: РёР».}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.tex new file mode 100644 index 00000000000..f32df4d6a45 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/specialist/thesis.tex @@ -0,0 +1,136 @@ +\documentclass[% +specialist, % тип документа +subf, % использовать пакет subcaption для вложенной нумерации СЂРёСЃСѓРЅРєРѕРІ +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как РѕСЃРЅРѕРІРЅРѕР№ +%fixint, % включить прямые знаки интегралов +]{disser} + +\usepackage[ + a4paper, mag=1000, + left=2.5cm, right=1cm, top=2cm, bottom=2cm, headsep=0.7cm, footskip=1cm +]{geometry} +\usepackage[T2A]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english,russian]{babel} +\ifpdf\usepackage{epstopdf}\fi + +\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{Рґ.\,С„.-Рј.\,РЅ., профессор РЎ.\,C.~РЎРёРґРѕСЂРѕРІ} + +\title{Дипломная работа} + +% Тема +\topic{<<Тема работы>>} + +% Группа +\group{Студента РіСЂСѓРїРїС‹} +% Автор +\author{Р¤РРћ автора} + +% Научный руководитель +\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} +% +%% City & Year +%\city{Saint Petersburg} +%\date{\number\year} +% +%\maketitle[en] + +% Содержание +\tableofcontents + +% Введение +\input{intro} + +% Глава 1 +\input{1} +% Глава 2 +%\input{2} + +% Заключение +\input{concl} + +% РЎРїРёСЃРѕРє литературы +\printbibliography[heading=bibintoc] + +\end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates/Makefile b/Master/texmf-dist/doc/latex/disser/templates/Makefile index 26d6545a84f..61f1434bfff 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/Makefile @@ -23,11 +23,10 @@ help: install:
cp -rf ../templates $(DOCDIR) ;\
+ cp -rf ../templates-utf8 $(DOCDIR) ;\
cp -rf ../include $(DOCDIR)
uninstall:
- -rm -rf $(DOCDIR)/templates
- -rm -rf $(DOCDIR)/include
- -rmdir $(DOCDIR)
+ -rm -rf $(DOCDIR)
reinstall: uninstall install
diff --git a/Master/texmf-dist/doc/latex/disser/templates/bachelor/Makefile b/Master/texmf-dist/doc/latex/disser/templates/bachelor/Makefile index 30faef4990e..105e4055c17 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/bachelor/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/bachelor/Makefile @@ -3,16 +3,19 @@ # Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> # -TARGET?=thesis - +TARGET ?= thesis +BIBTEX ?= bibtex8 +BIBTEXFLAGS ?= -H -c cp1251 include ../../include/latex.mk -all: dvi +all: pdf allpdf: pdf +alldvi: dvi + help: .help - @echo " all alias for dvi target" ;\ + @echo " all alias for pdf target" ;\ echo " allpdf alias for pdf target" ;\ - + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd index d3bc974cf93..0278f9061ba 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - %latexnmk% dvi + %latexnmk% pdf ) else if "%%f"=="allpdf" ( %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi ) else ( %latexnmk% %%f ) @@ -22,8 +26,9 @@ if "%1"=="" ( exit /b :help - echo all alias for dvi target + echo all alias for pdf target echo allpdf alias for pdf target + echo alldvi alias for dvi target %latexnmk% help goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib index 73c0c0e6620..268d9e817b8 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib +++ b/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib @@ -1,3 +1,32 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {И. И. Иванов and П. П. Петров and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {П. П. Петров and И. И. Иванов and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, +} + @ARTICLE{Yoffe_1993_AP_42_173, author = {A. D. Yoffe}, title = {Low-dimensional systems: quantum size effects and electronic @@ -54,7 +83,7 @@ } @INCOLLECTION{InP, - title = {InP Basic Parameters at 300 K}, + title = {{\relax InP} Basic Parameters at 300 K}, booktitle = {Electronic archive New Semiconductor Materials. Characteristics and Properties}, organization = {Ioffe Physico-Technical Institute}, @@ -74,10 +103,9 @@ language = {russian}, } -@PHDTHESIS{Skvortsov_2008, +@DSCITHESIS{Skvortsov_2008, author = {М. А. Скворцов}, - title = {Флуктуационные и интерференционные эффекты в мезоскопических - системах}, + title = {Флуктуационные и интерференционные эффекты в мезоскопических системах}, school = {ИТФ им. Л.~Д.~Ландау}, type = {дисс. д-ра физ.-мат. наук}, year = {2008}, diff --git a/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex index 43ea6535bf4..f21cd3a0a57 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex @@ -1,11 +1,11 @@ \documentclass[% -bachelor, % тип документа -natbib, % использовать пакет natbib для "сжатия" цитирований -subf, % использовать пакет subcaption для вложенной нумерации рисунков -href, % использовать пакет hyperref для создания гиперссылок -colorlinks=true % цветные гиперссылки -%,fixint=false % отключить прямые знаки интегралов -%,times % шрифт Times как основной +bachelor, % тип документа +natbib, % использовать пакет natbib для "сжатия" цитирований +subf, % использовать пакет subcaption для вложенной нумерации рисунков +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как основной +%fixint, % включить прямые знаки интегралов ]{disser} \usepackage[ @@ -15,7 +15,6 @@ colorlinks=true % цветные гиперссылки \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} -%\usepackage{tabularx,longtable} \ifpdf\usepackage{epstopdf}\fi % Плавающие рисунки "в оборку". @@ -116,8 +115,13 @@ colorlinks=true % цветные гиперссылки % Заключение \input{concl} +% Добавлять длинное тире в качестве разделителя +\newcommand\BibDash{"---} +% Выделять курсивом +\let\BibEmph=\emph +\bibliographystyle{gost705} + % Список литературы \bibliography{thesis} -\bibliographystyle{gost705} \end{document} diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/Makefile b/Master/texmf-dist/doc/latex/disser/templates/candidate/Makefile index cd39aa8987d..578ab2bec3e 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/candidate/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/Makefile @@ -3,8 +3,9 @@ # Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> # -TARGET?=thesis - +TARGET ?= thesis +BIBTEX ?= bibtex8 +BIBTEXFLAGS ?= -H -c cp1251 include ../../include/latex.mk @@ -18,7 +19,12 @@ allpdf: env TARGET=autoref $(MAKE) pdf ;\ eval unset TARGET +alldvi: + @env TARGET=thesis $(MAKE) dvi ;\ + env TARGET=autoref $(MAKE) dvi ;\ + eval unset TARGET + help: .help - @echo " all build DVI of autoref and thesis" ;\ + @echo " all build PDF of autoref and thesis" ;\ echo " allpdf build PDF of autoref and thesis" ;\ - + echo " alldvi build DVI of autoref and thesis" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/autoref.tex b/Master/texmf-dist/doc/latex/disser/templates/candidate/autoref.tex index e0f7b3b69bf..93822f189ce 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/candidate/autoref.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/autoref.tex @@ -182,12 +182,18 @@ colorlinks=true % цветные гиперссылки % ---------------------------------------------------------------- \renewcommand\bibsection{\nsection{Список публикаций}} -\bibliographystylemy{gost705} +% Добавлять длинное тире в качестве разделителя. +%\newcommand\BibDash{--- } +% Включить выделение курсивом. +%\newcommand\BibEmph[1]{\emph{#1}} +\bibliographystylemy{gost705} \bibliographymy{thesis} \renewcommand\bibsection{\nsection{Цитированная литература}} -\bibliographystyle{gost705} +% Не добавлять длинное тире в качестве разделителя. +%\newcommand\BibDash{} +\bibliographystyle{gost2008} \bibliography{thesis} % ---------------------------------------------------------------- % Выходные данные diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd index 39d5656ea50..9e522a8ae92 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - call :%%f + call :allpdf ) else if "%%f"=="allpdf" ( call :%%f + ) else if "%%f"=="alldvi" ( + call :%%f ) else ( %latexnmk% %%f ) @@ -22,19 +26,20 @@ if "%1"=="" ( exit /b :help - echo all build DVI of autoref and thesis - echo allpdf build PDF of autoref and thesis + echo all build PDF of autoref and thesis + echo allpdf build PDF of autoref and thesis + echo alldvi build DVI of autoref and thesis %latexnmk% help goto :eof -:all - set target=thesis & %latexnmk% dvi - set target=autoref & %latexnmk% dvi - set target= -goto :eof - :allpdf set target=thesis & %latexnmk% pdf set target=autoref & %latexnmk% pdf set target= goto :eof + +:alldvi + set target=thesis & %latexnmk% dvi + set target=autoref & %latexnmk% dvi + set target= +goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.bib index 36b74356506..268d9e817b8 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.bib +++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.bib @@ -83,7 +83,7 @@ } @INCOLLECTION{InP, - title = {InP Basic Parameters at 300 K}, + title = {{\relax InP} Basic Parameters at 300 K}, booktitle = {Electronic archive New Semiconductor Materials. Characteristics and Properties}, organization = {Ioffe Physico-Technical Institute}, @@ -98,15 +98,73 @@ title = {Неупругое рассеяние света в системе взаимодействующих электронов и фононов}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. канд. физ.-мат. наук}, year = {1996}, language = {russian}, } -@DOCDISSER{Skvortsov_2008, +@DSCITHESIS{Skvortsov_2008, author = {М. А. Скворцов}, - title = {Флуктуационные и интерференционные эффекты в мезоскопических - системах}, + title = {Флуктуационные и интерференционные эффекты в мезоскопических системах}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. д-ра физ.-мат. наук}, year = {2008}, language = {russian}, } + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Э. В. Тернер}, + authortype = {США}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, инк.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. № 7 (I ч.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {США}, + pagetotal = {5 с.~: ил.}, + language = {russian}, +} + +@PATENT{patent2, + author = {В. И. Чугаева}, + authortype = {РФ}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} H 04 В 1/38, Н 04 J 13/00}, + holder = {заявитель и патентообладатель Воронеж. науч.-ислед. ин-т связи.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. № 23 (II ч.)}, + pagetotal = {2 с.~: ил.}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.tex index 2b52725c9f7..2be40465ced 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.tex @@ -1,14 +1,13 @@ \documentclass[% -candidate, % тип документа -natbib, % использовать пакет natbib для "сжатия" цитирований -subf, % использовать пакет subcaption для вложенной нумерации рисунков -href, % использовать пакет hyperref для создания гиперссылок -colorlinks=true % цветные гиперссылки -%,times % шрифт Times как основной -%,fixint=false % отключить прямые знаки интегралов -%,classified % гриф секретности -%,libcat % номер УДК -%,facsimile % отображать факсимиле диссертанта +candidate, % тип документа +natbib, % использовать пакет natbib для "сжатия" цитирований +subf, % использовать пакет subcaption для вложенной нумерации рисунков +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как основной +%fixint, % включить прямые знаки интегралов +%classified, % гриф секретности +%facsimile, % отображать факсимиле диссертанта ]{disser} \usepackage[ @@ -18,7 +17,6 @@ colorlinks=true % цветные гиперссылки \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} -%\usepackage{tabularx,longtable} \ifpdf\usepackage{epstopdf}\fi % Номера страниц снизу и по центру @@ -54,7 +52,7 @@ colorlinks=true % цветные гиперссылки %\classlabel{Для служебного пользования} % номер УДК -%\libcatnum{12345} +\libcatnum{12345} \title{ДИССЕРТАЦИЯ\\ на соискание ученой степени\\ @@ -121,9 +119,14 @@ colorlinks=true % цветные гиперссылки % Словарь терминов %\input{dict} +% Добавлять длинное тире в качестве разделителя +\newcommand\BibDash{"---} +% Выделять курсивом +\let\BibEmph=\emph +\bibliographystyle{gost705} + % Список литературы \bibliography{thesis} -\bibliographystyle{gost705} % Список иллюстративного материала %\listoffigures diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile index cd39aa8987d..04887a49c6e 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile @@ -3,8 +3,9 @@ # Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> # -TARGET?=thesis - +TARGET ?= thesis +BIBTEX ?= bibtex8 +BIBTEXFLAGS ?= -H -c cp1251 include ../../include/latex.mk @@ -18,7 +19,12 @@ allpdf: env TARGET=autoref $(MAKE) pdf ;\ eval unset TARGET +alldvi + @env TARGET=thesis $(MAKE) dvi ;\ + env TARGET=autoref $(MAKE) dvi ;\ + eval unset TARGET + help: .help - @echo " all build DVI of autoref and thesis" ;\ + @echo " all build PDF of autoref and thesis" ;\ echo " allpdf build PDF of autoref and thesis" ;\ - + echo " alldvi build DVI of autoref and thesis" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/autoref.tex b/Master/texmf-dist/doc/latex/disser/templates/doctor/autoref.tex index 0edaf739c81..76dc6b15f3f 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/doctor/autoref.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/autoref.tex @@ -177,12 +177,16 @@ colorlinks=true % цветные гиперссылки % ---------------------------------------------------------------- \renewcommand\bibsection{\nsection{Список публикаций}} -\bibliographystylemy{gost705} +% Не добавлять длинное тире в качестве разделителя. +%\newcommand\BibDash{} +\bibliographystylemy{gost2008} \bibliographymy{thesis} \renewcommand\bibsection{\nsection{Цитированная литература}} -\bibliographystyle{gost705} +% Не добавлять длинное тире в качестве разделителя. +%\newcommand\BibDash{} +\bibliographystyle{gost2008} \bibliography{thesis} % ---------------------------------------------------------------- % Выходные данные diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd index 39d5656ea50..30d8351c6ed 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - call :%%f + call :allpdf ) else if "%%f"=="allpdf" ( call :%%f + ) else if "%%f"=="alldvi" ( + call :%%f ) else ( %latexnmk% %%f ) @@ -27,7 +31,7 @@ exit /b %latexnmk% help goto :eof -:all +:alldvi set target=thesis & %latexnmk% dvi set target=autoref & %latexnmk% dvi set target= diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.bib index 36b74356506..268d9e817b8 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.bib +++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.bib @@ -83,7 +83,7 @@ } @INCOLLECTION{InP, - title = {InP Basic Parameters at 300 K}, + title = {{\relax InP} Basic Parameters at 300 K}, booktitle = {Electronic archive New Semiconductor Materials. Characteristics and Properties}, organization = {Ioffe Physico-Technical Institute}, @@ -98,15 +98,73 @@ title = {Неупругое рассеяние света в системе взаимодействующих электронов и фононов}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. канд. физ.-мат. наук}, year = {1996}, language = {russian}, } -@DOCDISSER{Skvortsov_2008, +@DSCITHESIS{Skvortsov_2008, author = {М. А. Скворцов}, - title = {Флуктуационные и интерференционные эффекты в мезоскопических - системах}, + title = {Флуктуационные и интерференционные эффекты в мезоскопических системах}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. д-ра физ.-мат. наук}, year = {2008}, language = {russian}, } + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Э. В. Тернер}, + authortype = {США}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, инк.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. № 7 (I ч.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {США}, + pagetotal = {5 с.~: ил.}, + language = {russian}, +} + +@PATENT{patent2, + author = {В. И. Чугаева}, + authortype = {РФ}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} H 04 В 1/38, Н 04 J 13/00}, + holder = {заявитель и патентообладатель Воронеж. науч.-ислед. ин-т связи.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. № 23 (II ч.)}, + pagetotal = {2 с.~: ил.}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.tex index 8d3804aa249..1696b123c35 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.tex @@ -1,14 +1,13 @@ \documentclass[% -doctor, % тип документа -natbib, % использовать пакет natbib для "сжатия" цитирований -subf, % использовать пакет subcaption для вложенной нумерации рисунков -href, % использовать пакет hyperref для создания гиперссылок -colorlinks=true % цветные гиперссылки -%,times % шрифт Times как основной -%,fixint=false % отключить прямые знаки интегралов -%,classified % гриф секретности -%,libcat % номер УДК -%,facsimile % отображать факсимиле диссертанта +doctor, % тип документа +natbib, % использовать пакет natbib для "сжатия" цитирований +subf, % использовать пакет subcaption для вложенной нумерации рисунков +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как основной +%fixint, % включить прямые знаки интегралов +%classified, % гриф секретности +%facsimile, % отображать факсимиле диссертанта ]{disser} \usepackage[ @@ -18,7 +17,6 @@ colorlinks=true % цветные гиперссылки \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} -%\usepackage{tabularx,longtable} \ifpdf\usepackage{epstopdf}\fi % Номера страниц снизу и по центру @@ -54,7 +52,7 @@ colorlinks=true % цветные гиперссылки %\classlabel{Для служебного пользования} % номер УДК -%\libcatnum{12345} +\libcatnum{12345} \title{ДИССЕРТАЦИЯ\\ на соискание ученой степени\\ @@ -118,9 +116,14 @@ colorlinks=true % цветные гиперссылки % Словарь терминов %\input{dict} +% Добавлять длинное тире в качестве разделителя +\newcommand\BibDash{"---} +% Выделять курсивом +\let\BibEmph=\emph +\bibliographystyle{gost705} + % Список литературы \bibliography{thesis} -\bibliographystyle{gost705} % Список иллюстративного материала %\listoffigures diff --git a/Master/texmf-dist/doc/latex/disser/templates/master/Makefile b/Master/texmf-dist/doc/latex/disser/templates/master/Makefile index 30faef4990e..105e4055c17 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/master/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/master/Makefile @@ -3,16 +3,19 @@ # Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> # -TARGET?=thesis - +TARGET ?= thesis +BIBTEX ?= bibtex8 +BIBTEXFLAGS ?= -H -c cp1251 include ../../include/latex.mk -all: dvi +all: pdf allpdf: pdf +alldvi: dvi + help: .help - @echo " all alias for dvi target" ;\ + @echo " all alias for pdf target" ;\ echo " allpdf alias for pdf target" ;\ - + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd index d3bc974cf93..dbadd220a2b 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - %latexnmk% dvi + %latexnmk% pdf ) else if "%%f"=="allpdf" ( %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi ) else ( %latexnmk% %%f ) @@ -22,8 +26,8 @@ if "%1"=="" ( exit /b :help - echo all alias for dvi target + echo all alias for pdf target echo allpdf alias for pdf target + echo alldvi alias for dvi target %latexnmk% help goto :eof - diff --git a/Master/texmf-dist/doc/latex/disser/templates/master/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates/master/thesis.bib index e4c225cdc29..268d9e817b8 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/master/thesis.bib +++ b/Master/texmf-dist/doc/latex/disser/templates/master/thesis.bib @@ -1,3 +1,32 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {И. И. Иванов and П. П. Петров and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {П. П. Петров and И. И. Иванов and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, +} + @ARTICLE{Yoffe_1993_AP_42_173, author = {A. D. Yoffe}, title = {Low-dimensional systems: quantum size effects and electronic @@ -54,7 +83,7 @@ } @INCOLLECTION{InP, - title = {InP Basic Parameters at 300 K}, + title = {{\relax InP} Basic Parameters at 300 K}, booktitle = {Electronic archive New Semiconductor Materials. Characteristics and Properties}, organization = {Ioffe Physico-Technical Institute}, @@ -69,15 +98,73 @@ title = {Неупругое рассеяние света в системе взаимодействующих электронов и фононов}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. канд. физ.-мат. наук}, year = {1996}, language = {russian}, } -@DOCDISSER{Skvortsov_2008, +@DSCITHESIS{Skvortsov_2008, author = {М. А. Скворцов}, - title = {Флуктуационные и интерференционные эффекты в мезоскопических - системах}, + title = {Флуктуационные и интерференционные эффекты в мезоскопических системах}, school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. д-ра физ.-мат. наук}, year = {2008}, language = {russian}, } + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Э. В. Тернер}, + authortype = {США}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, инк.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. № 7 (I ч.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {США}, + pagetotal = {5 с.~: ил.}, + language = {russian}, +} + +@PATENT{patent2, + author = {В. И. Чугаева}, + authortype = {РФ}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} H 04 В 1/38, Н 04 J 13/00}, + holder = {заявитель и патентообладатель Воронеж. науч.-ислед. ин-т связи.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. № 23 (II ч.)}, + pagetotal = {2 с.~: ил.}, + language = {russian}, +} diff --git a/Master/texmf-dist/doc/latex/disser/templates/master/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates/master/thesis.tex index 9f31bf48d52..1460e6ca401 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/master/thesis.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/master/thesis.tex @@ -1,11 +1,11 @@ \documentclass[% -master, % тип документа -natbib, % использовать пакет natbib для "сжатия" цитирований -subf, % использовать пакет subcaption для вложенной нумерации рисунков -href, % использовать пакет hyperref для создания гиперссылок -colorlinks=true % цветные гиперссылки -%,fixint=false % отключить прямые знаки интегралов -%,times % шрифт Times как основной +master, % тип документа +natbib, % использовать пакет natbib для "сжатия" цитирований +subf, % использовать пакет subcaption для вложенной нумерации рисунков +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как основной +%fixint, % включить прямые знаки интегралов ]{disser} \usepackage[ @@ -15,7 +15,6 @@ colorlinks=true % цветные гиперссылки \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} -%\usepackage{tabularx,longtable} \ifpdf\usepackage{epstopdf}\fi % Номера страниц снизу и по центру @@ -138,9 +137,14 @@ colorlinks=true % цветные гиперссылки % Заключение \input{concl} +% Добавлять длинное тире в качестве разделителя +\newcommand\BibDash{"---} +% Выделять курсивом +\let\BibEmph=\emph +\bibliographystyle{gost705} + % Список литературы \bibliography{thesis} -\bibliographystyle{gost705} % Приложения \appendix diff --git a/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd index b3ef1b9847e..a65aab97a2b 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd @@ -41,6 +41,7 @@ goto :eof :install if not exist "!docdir!" mkdir "!docdir!" xcopy /y /e /i /f ..\templates "!docdir!\templates" + xcopy /y /e /i /f ..\templates-utf8 "!docdir!\templates-utf8" xcopy /y /e /i /f ..\include "!docdir!\include" goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates/specialist/Makefile b/Master/texmf-dist/doc/latex/disser/templates/specialist/Makefile index 30faef4990e..105e4055c17 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/specialist/Makefile +++ b/Master/texmf-dist/doc/latex/disser/templates/specialist/Makefile @@ -3,16 +3,19 @@ # Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> # -TARGET?=thesis - +TARGET ?= thesis +BIBTEX ?= bibtex8 +BIBTEXFLAGS ?= -H -c cp1251 include ../../include/latex.mk -all: dvi +all: pdf allpdf: pdf +alldvi: dvi + help: .help - @echo " all alias for dvi target" ;\ + @echo " all alias for pdf target" ;\ echo " allpdf alias for pdf target" ;\ - + echo " alldvi alias for dvi target" ;\ diff --git a/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd index d3bc974cf93..0278f9061ba 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - %latexnmk% dvi + %latexnmk% pdf ) else if "%%f"=="allpdf" ( %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi ) else ( %latexnmk% %%f ) @@ -22,8 +26,9 @@ if "%1"=="" ( exit /b :help - echo all alias for dvi target + echo all alias for pdf target echo allpdf alias for pdf target + echo alldvi alias for dvi target %latexnmk% help goto :eof diff --git a/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.bib b/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.bib index 19f2cd1c771..268d9e817b8 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.bib +++ b/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.bib @@ -1,60 +1,170 @@ +@ARTICLE{Ivanov_1999_Journal_17_173, + author = {И. И. Иванов and П. П. Петров and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {17}, + pages = {173--180}, + year = {1999}, + language = {russian}, +} + +@ARTICLE{Petrov_2001_Journal_23_12321, + author = {П. П. Петров and И. И. Иванов and С. С. Сидоров}, + title = {Название статьи}, + journal = {Название журнала}, + volume = {23}, + pages = {12321--12328}, + year = {2001}, + language = {russian}, +} + +@ARTICLE{Sidorov_2002_Journal_32_1531, + author = {S. S. Sidorov and P. P. Petrov and I. I. Ivanov}, + title = {Article Title}, + journal = {Journal Name}, + volume = {32}, + pages = {1531--1540}, + year = {2002}, +} + @ARTICLE{Yoffe_1993_AP_42_173, - author = {A. D. Yoffe}, - title = {Low-dimensional systems: quantum size effects and electronic - properties of semiconductor microcrystallites (zero-dimensional - systems) and some quasi-two-dimensional systems}, - journal = {Adv. Phys.}, - pages = {173--266}, - volume = {42}, - year = {1993} + author = {A. D. Yoffe}, + title = {Low-dimensional systems: quantum size effects and electronic + properties of semiconductor microcrystallites (zero-dimensional + systems) and some quasi-two-dimensional systems}, + journal = {Adv. Phys.}, + pages = {173--266}, + volume = {42}, + year = {1993}, + doi = {10.1080/00018739300101484}, } @ARTICLE{Efros_1982_FTP_16_7_1209, - author = {{\relax Ал}. Л. Эфрос and А. Л. Эфрос}, - title = {Межзонное поглощение света в полупроводниковом шаре}, - journal = {Физика и техника полупроводников}, - year = {1982}, - volume = {16}, - number = {7}, - pages = {1209--1214}, - language = {russian}, + author = {{\relax Ал}. Л. Эфрос and А. Л. Эфрос}, + title = {Межзонное поглощение света в полупроводниковом шаре}, + journal = {Физика и техника полупроводников}, + year = {1982}, + volume = {16}, + number = {7}, + pages = {1209--1214}, + language = {russian}, } @BOOK{Anselm_1978, - author = {А. И. Ансельм}, - title = {Введение в теорию полупроводников}, - publisher = {Наука}, - address = {Москва}, - year = {1978}, - language = {russian} + author = {А. И. Ансельм}, + title = {Введение в теорию полупроводников}, + publisher = {Наука}, + address = {Москва}, + year = {1978}, + language = {russian}, } @INPROCEEDINGS{Segall_1968, - author = {B. Segall}, - year = {1968}, - editor = {S. M. Ryvkin}, - booktitle = {Proceedings of IXth Conference on the Physics of Semiconductors, Moscow, 1968}, - pages = {425}, - address = {Leningrad}, - publisher = {Nauka} + author = {B. Segall}, + year = {1968}, + editor = {S. M. Ryvkin}, + booktitle = {Proceedings of IXth Conference on the Physics of + Semiconductors, Moscow, 1968}, + pages = {425}, + address = {Leningrad}, + publisher = {Nauka}, } @INBOOK{Agranovich_1983, - editor = {V. M. Agranovich and R. M. Hochstrasser}, - title = {Spectroscopy and Excitation Dynamics of Condensed Molecular Systems}, - chapter = {6}, - publisher = {North-Holland}, - year = {1983}, - series = {Modern Problems in Condensed Matter Sciences}, - address = {Amsterdam} + editor = {V. M. Agranovich and R. M. Hochstrasser}, + title = {Spectroscopy and Excitation Dynamics of Condensed Molecular + Systems}, + chapter = {6}, + publisher = {North-Holland}, + year = {1983}, + series = {Modern Problems in Condensed Matter Sciences}, + address = {Amsterdam}, + isbn = {0444863133}, } @INCOLLECTION{InP, - title = {InP Basic Parameters at 300 K}, - booktitle = {Electronic archive New Semiconductor Materials. Characteristics and Properties}, + title = {{\relax InP} Basic Parameters at 300 K}, + booktitle = {Electronic archive New Semiconductor Materials. + Characteristics and Properties}, organization = {Ioffe Physico-Technical Institute}, - address = {St. Petersburg}, - year = {2001}, - url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, - urldate = {01.11.2009} + address = {St. Petersburg}, + year = {2001}, + url = {http://www.ioffe.rssi.ru/SVA/NSM/Semicond/InP/basic.html}, + urldate = {01.11.2009}, +} + +@PHDTHESIS{Mishchenko_1996, + author = {Е. Ж. Мищенко}, + title = {Неупругое рассеяние света в системе взаимодействующих + электронов и фононов}, + school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. канд. физ.-мат. наук}, + year = {1996}, + language = {russian}, +} + +@DSCITHESIS{Skvortsov_2008, + author = {М. А. Скворцов}, + title = {Флуктуационные и интерференционные эффекты в мезоскопических системах}, + school = {ИТФ им. Л.~Д.~Ландау}, + type = {дисс. д-ра физ.-мат. наук}, + year = {2008}, + language = {russian}, +} + +% old-style arXiv reference +@ARTICLE{Perelman_2003_math:0307245, + author = {Grisha Perelman}, + title = {Finite extinction time for the solutions to the Ricci flow on certain three-manifolds}, + eprint = {math/0307245}, +} + +% new-style arXiv reference +@ARTICLE{Nielsen_2010_1006.2735, + title = {A configuration interaction analysis of exchange in double quantum dots}, + author = {Erik Nielsen and Richard P. Muller}, + archivePrefix = {arXiv}, + eprint = {1006.2735}, + primaryClass = {cond-mat}, +} + +@PATENT{patent1, + author = {Э. В. Тернер}, + authortype = {США}, + title = {Одноразовая ракета-носитель}, + media = {Текст}, + type = {заявка}, + number = {1095735}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} B 64 G 1/00}, + holder = {заявитель Спейс Системз/Лорал, инк.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + reqdate = {07.04.2000}, + pubdate = {10.03.2001}, + publication = {Бюл. № 7 (I ч.)}, + prdate = {09.04.1999}, + prnumber = {09/289, 037}, + prcountry = {США}, + pagetotal = {5 с.~: ил.}, + language = {russian}, +} + +@PATENT{patent2, + author = {В. И. Чугаева}, + authortype = {РФ}, + title = {Приемопередающее устройство}, + media = {Текст}, + type = {пат.}, + number = {2000131736/09}, + location = {Рос. Федерация}, + ipc = {МПК\ensuremath{^7} H 04 В 1/38, Н 04 J 13/00}, + holder = {заявитель и патентообладатель Воронеж. науч.-ислед. ин-т связи.}, + credits = {патент. поверенный Егорова Г. Б.}, + reqnumber = {000108705/28}, + date = {18.12.2000}, + publdate = {20.08.2002}, + publication = {Бюл. № 23 (II ч.)}, + pagetotal = {2 с.~: ил.}, + language = {russian}, } diff --git a/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.tex b/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.tex index 3f7410090e3..72d90bae195 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.tex +++ b/Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.tex @@ -1,11 +1,11 @@ \documentclass[% -specialist, % тип документа -natbib, % использовать пакет natbib для "сжатия" цитирований -subf, % использовать пакет subcaption для вложенной нумерации рисунков -href, % использовать пакет hyperref для создания гиперссылок -colorlinks=true % цветные гиперссылки -%,fixint=false % отключить прямые знаки интегралов -%,times % шрифт Times как основной +specialist, % тип документа +natbib, % использовать пакет natbib для "сжатия" цитирований +subf, % использовать пакет subcaption для вложенной нумерации рисунков +href, % использовать пакет hyperref для создания гиперссылок +colorlinks, % цветные гиперссылки +%times, % шрифт Times как основной +%fixint, % включить прямые знаки интегралов ]{disser} \usepackage[ @@ -15,7 +15,6 @@ colorlinks=true % цветные гиперссылки \usepackage[T2A]{fontenc} \usepackage[cp1251]{inputenc} \usepackage[english,russian]{babel} -%\usepackage{tabularx,longtable} \ifpdf\usepackage{epstopdf}\fi % Номера страниц снизу и по центру @@ -33,7 +32,6 @@ colorlinks=true % цветные гиперссылки \graphicspath{{fig/}} -%---------------------------------------------------------------- \begin{document} % Переопределение стандартных заголовков @@ -123,8 +121,13 @@ colorlinks=true % цветные гиперссылки % Заключение \input{concl} +% Добавлять длинное тире в качестве разделителя +\newcommand\BibDash{"---} +% Выделять курсивом +\let\BibEmph=\emph +\bibliographystyle{gost705} + % Список литературы \bibliography{thesis} -\bibliographystyle{gost705} \end{document} |