summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-07-05 21:39:30 +0000
committerKarl Berry <karl@freefriends.org>2016-07-05 21:39:30 +0000
commiteadac6a4b811db258d2b4d5dd4dec4fb0551ca4d (patch)
tree0ee9d092e8f52117148beabe162c1b0e6421da7a /Master/texmf-dist/doc/latex/disser/templates
parent5cf6f77f3a4d03a7ffcb78f2fef5f5172905534a (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/templates')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/Makefile5
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/bachelor/Makefile13
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd9
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib36
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex22
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/Makefile14
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/autoref.tex10
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd23
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.bib66
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/thesis.tex29
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile14
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/autoref.tex8
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd8
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.bib66
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/thesis.tex29
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/master/Makefile13
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd10
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/master/thesis.bib95
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/master/thesis.tex22
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/nomake.cmd1
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/specialist/Makefile13
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd9
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.bib194
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/specialist/thesis.tex23
24 files changed, 572 insertions, 160 deletions
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}