From c0f658f5498ff551dec3709ab78a6c5a3d866752 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 28 Aug 2017 23:41:38 +0000 Subject: hithesis (27aug17) git-svn-id: svn://tug.org/texlive/trunk@45155 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/hithesis/Makefile | 105 ++ Master/texmf-dist/doc/latex/hithesis/README.md | 44 + .../doc/latex/hithesis/back/acknowledgements.tex | 9 + Master/texmf-dist/doc/latex/hithesis/back/appA.tex | 34 + .../doc/latex/hithesis/back/appendix01.tex | 247 ++++ .../texmf-dist/doc/latex/hithesis/back/ceindex.tex | 4 + .../doc/latex/hithesis/back/conclusion.tex | 8 + .../doc/latex/hithesis/back/publications.tex | 27 + .../texmf-dist/doc/latex/hithesis/back/resume.tex | 17 + .../doc/latex/hithesis/body/introduction.tex | 371 ++++++ Master/texmf-dist/doc/latex/hithesis/dtx-style.sty | 145 ++ .../doc/latex/hithesis/figures/bthesistitle.eps | 335 +++++ .../doc/latex/hithesis/figures/golfer.eps | 1398 ++++++++++++++++++++ .../doc/latex/hithesis/figures/hitlogo.eps | 382 ++++++ .../texmf-dist/doc/latex/hithesis/front/cover.tex | 89 ++ .../doc/latex/hithesis/front/denotation.tex | 13 + Master/texmf-dist/doc/latex/hithesis/hithesis.pdf | Bin 0 -> 576905 bytes Master/texmf-dist/doc/latex/hithesis/main.pdf | Bin 0 -> 330646 bytes Master/texmf-dist/doc/latex/hithesis/main.tex | 104 ++ Master/texmf-dist/doc/latex/hithesis/reference.bib | 75 ++ Master/texmf-dist/doc/latex/hithesis/wct1.eps | 427 ++++++ Master/texmf-dist/doc/latex/hithesis/wct10.eps | 425 ++++++ Master/texmf-dist/doc/latex/hithesis/wct5.eps | 427 ++++++ Master/texmf-dist/doc/latex/hithesis/zfb.eps | 352 +++++ 24 files changed, 5038 insertions(+) create mode 100644 Master/texmf-dist/doc/latex/hithesis/Makefile create mode 100644 Master/texmf-dist/doc/latex/hithesis/README.md create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/acknowledgements.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/appA.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/appendix01.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/ceindex.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/conclusion.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/publications.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/back/resume.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/body/introduction.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/dtx-style.sty create mode 100644 Master/texmf-dist/doc/latex/hithesis/figures/bthesistitle.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/figures/golfer.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/figures/hitlogo.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/front/cover.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/front/denotation.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/hithesis.pdf create mode 100644 Master/texmf-dist/doc/latex/hithesis/main.pdf create mode 100644 Master/texmf-dist/doc/latex/hithesis/main.tex create mode 100644 Master/texmf-dist/doc/latex/hithesis/reference.bib create mode 100644 Master/texmf-dist/doc/latex/hithesis/wct1.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/wct10.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/wct5.eps create mode 100644 Master/texmf-dist/doc/latex/hithesis/zfb.eps (limited to 'Master/texmf-dist/doc/latex') diff --git a/Master/texmf-dist/doc/latex/hithesis/Makefile b/Master/texmf-dist/doc/latex/hithesis/Makefile new file mode 100644 index 00000000000..d704d30c9c6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/Makefile @@ -0,0 +1,105 @@ +# Makefile for ThuThesis + +# Compiling method: latexmk/xelatex/pdflatex +METHOD = xelatex +# Set opts for latexmk if you use it +LATEXMKOPTS = -xelatex +# Basename of thesis +THESISMAIN = main + +PACKAGE=hithesis +SOURCES=$(PACKAGE).ins $(PACKAGE).dtx +THESISCONTENTS=$(THESISMAIN).tex front/*.tex body/*.tex back/*.tex $(FIGURES) *.bst +# NOTE: update this to reflect your local file types. +FIGURES=$(wildcard figures/*.eps figures/*.pdf) +BIBFILE=*.bib +CLSFILES=dtx-style.sty $(PACKAGE).cls $(PACKAGE).ist h$(PACKAGE).cfg + +# make deletion work on Windows +ifdef SystemRoot + RM = del /Q + OPEN = start +else + RM = rm -f + OPEN = open +endif + +.PHONY: all clean distclean dist thesis viewthesis doc viewdoc cls check FORCE_MAKE + +all: doc thesis + +cls: $(CLSFILES) + +$(CLSFILES): $(SOURCES) + latex $(PACKAGE).ins + +viewdoc: doc + $(OPEN) $(PACKAGE).pdf + +doc: $(PACKAGE).pdf + +viewthesis: thesis + $(OPEN) $(THESISMAIN).pdf + +thesis: $(THESISMAIN).pdf + +ifeq ($(METHOD),latexmk) + +$(PACKAGE).pdf: $(CLSFILES) FORCE_MAKE + $(METHOD) $(LATEXMKOPTS) $(PACKAGE).dtx + +$(THESISMAIN).pdf: $(CLSFILES) FORCE_MAKE + $(METHOD) $(LATEXMKOPTS) $(THESISMAIN) + +else ifneq (,$(filter $(METHOD),xelatex pdflatex)) + +$(PACKAGE).pdf: $(CLSFILES) + $(METHOD) $(PACKAGE).dtx + makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx + makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo + $(METHOD) $(PACKAGE).dtx + $(METHOD) $(PACKAGE).dtx + +$(THESISMAIN).idx: $(THESISMAIN).bbl + $(METHOD) $(THESISMAIN) + $(METHOD) $(THESISMAIN) + + +$(THESISMAIN)_china.idx : $(CLSFILES) $(THESISMAIN).bbl $(THESISMAIN).idx + splitindex $(THESISMAIN) -- -s $(PACKAGE).ist # 自动生成索引 + +$(THESISMAIN)_english.ind $(THESISMAIN)_china.ind $(THESISMAIN)_english.idx : $(THESISMAIN)_china.idx + +$(THESISMAIN).pdf: $(CLSFILES) $(THESISCONTENTS) $(THESISMAIN)_china.ind $(THESISMAIN)_china.idx $(THESISMAIN)_english.ind $(THESISMAIN)_english.idx $(THESISMAIN).bbl + $(METHOD) $(THESISMAIN) + +$(THESISMAIN).bbl: $(BIBFILE) + $(METHOD) $(THESISMAIN) + -bibtex $(THESISMAIN) + $(RM) $(THESISMAIN).pdf + +else +$(error Unknown METHOD: $(METHOD)) + +endif + +clean: + latexmk -c $(PACKAGE).dtx $(THESISMAIN) + -@$(RM) *~ *.idx *.ind *.ilg *.thm *.toe *.bbl + +cleanall: clean + -@$(RM) $(PACKAGE).pdf $(THESISMAIN).pdf + +distclean: cleanall + -@$(RM) $(CLSFILES) + -@$(RM) -r dist + +check: FORCE_MAKE + ag 'Harbin Institute of Technology Template|\\def\\version|"version":' hithesis.dtx package.json + +dist: all + @if [ -z "$(version)" ]; then \ + echo "Usage: make dist version=[x.y.z | ctan]"; \ + else \ + npm run build -- --version=$(version); \ + fi diff --git a/Master/texmf-dist/doc/latex/hithesis/README.md b/Master/texmf-dist/doc/latex/hithesis/README.md new file mode 100644 index 00000000000..6c98bf7ebe2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/README.md @@ -0,0 +1,44 @@ +# What's hithesis? + +hithesis is a LaTeX thesis template package for Harbin Institute of Technolog +supporting bachelor, master, doctor dissertations. Since the users of this +package are supposed to be Chinese or those understand Chinese, the following of +this file and all other documents are written in Chinese only. + +# hithesis是什么? + +hithesis, 既含我工hit,也是说用的“嗨!”,读作“嗨thesis”。hithesis 旨在建立一个 +简单易用的哈尔滨工业大学学位论文LaTeX模板,包括本科论文、硕士论文、博士论文 。现 +在支持本科、硕士、博士论文,对其它格式的支持会陆续加入。 + + +# 文档 + +请[下载](https://github.com/dustincys/hithesis "下载")模板,生成具体使用说明以 +及示例文档: + + 模板使用说明 (hithesis.pdf) + 示例文档 (main.pdf) + +# 下载 + +开发版有两个下载地址: + +- [oschina 码云](https://git.oschina.net/dustincys/hithesis) +- [github](https://github.com/dustincys/hithesis) + + + +# Make­file的用法 + + make [{all|thesis|doc|clean|cleanall|distclean}] + +## 目标 + +- make all 等于 make thesis && make doc; +- make cls 生成模板文件; +- make thesis 生成论文 main.pdf; +- make doc 生成使用说明书 thuthe­sis.pdf; +- make clean 删除示例文件的中间文件(不含 main.pdf); +- make cleanall 删除示例文件的中间文件和 main.pdf; +- make distclean 删除示例文件和模板的所有中间文件和 PDF。 diff --git a/Master/texmf-dist/doc/latex/hithesis/back/acknowledgements.tex b/Master/texmf-dist/doc/latex/hithesis/back/acknowledgements.tex new file mode 100644 index 00000000000..bcf5b65913f --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/acknowledgements.tex @@ -0,0 +1,9 @@ +% !Mode:: "TeX:UTF-8" +\begin{acknowledgements} +衷心感谢导师~XXX~教授对本人的精心指导。他的言传身教将使我终生受益。 + +…… + +感谢哈工大\LaTeX\ 论文模板\hithesis\ ! + +\end{acknowledgements} diff --git a/Master/texmf-dist/doc/latex/hithesis/back/appA.tex b/Master/texmf-dist/doc/latex/hithesis/back/appA.tex new file mode 100644 index 00000000000..45cb667accb --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/appA.tex @@ -0,0 +1,34 @@ +% -*-coding: utf-8 -*- +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\chapter{带章节的附录}[Full Appendix]% +完整的附录内容,包含章节,公式,图表等 + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\section{附录节的内容}[Section in Appendix] +这是附录的节的内容 + +附录中图的示例: +\begin{figure}[htbp] +\centering +\includegraphics[width = 0.4\textwidth]{golfer} +%\bicaption[golfer5]{}{\xiaosi[0]打高尔夫球的人}{Fig.$\!$}{The person playing golf}\vspace{-1em} +\caption{\xiaosi[0]打高尔夫球的人} +\end{figure} + +附录中公式的示例: +\begin{align} +a & = b \times c \\ +E & = m c^2 +\label{eq} +\end{align} + +\chapter{这个星球上最好的免费Linux软件列表}[List of the Best Linux Software in our Planet] +\section*{系统} + +\href{http://fvwm.org/}{FVWM 星球最强大的窗口管理器}——推荐 + +\section*{其他} + +\href{https://github.com/goldendict/goldendict}{goldendict 星球最强大的桌面字典}——推荐 + +\href{http://www.mutt.org/}{mutt 星球最强大的邮件客户端}——推荐 diff --git a/Master/texmf-dist/doc/latex/hithesis/back/appendix01.tex b/Master/texmf-dist/doc/latex/hithesis/back/appendix01.tex new file mode 100644 index 00000000000..26d53f3012e --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/appendix01.tex @@ -0,0 +1,247 @@ +\chapter{外文资料原文} +\label{cha:engorg} + +\title{The title of the English paper} + +\textbf{Abstract:} As one of the most widely used techniques in operations +research, \emph{ mathematical programming} is defined as a means of maximizing a +quantity known as \emph{bjective function}, subject to a set of constraints +represented by equations and inequalities. Some known subtopics of mathematical +programming are linear programming, nonlinear programming, multiobjective +programming, goal programming, dynamic programming, and multilevel +programming$^{[1]}$. + +It is impossible to cover in a single chapter every concept of mathematical +programming. This chapter introduces only the basic concepts and techniques of +mathematical programming such that readers gain an understanding of them +throughout the book$^{[2,3]}$. + + +\section{Single-Objective Programming} +The general form of single-objective programming (SOP) is written +as follows, +\begin{equation}\tag*{(123)} % 如果附录中的公式不想让它出现在公式索引中,那就请 + % 用 \tag*{xxxx} +\left\{\begin{array}{l} +\max \,\,f(x)\\[0.1 cm] +\mbox{subject to:} \\ [0.1 cm] +\qquad g_j(x)\le 0,\quad j=1,2,\cdots,p +\end{array}\right. +\end{equation} +which maximizes a real-valued function $f$ of +$x=(x_1,x_2,\cdots,x_n)$ subject to a set of constraints. + +\newtheorem{mpdef}{Definition}[chapter] +\begin{mpdef} +In SOP, we call $x$ a decision vector, and +$x_1,x_2,\cdots,x_n$ decision variables. The function +$f$ is called the objective function. The set +\begin{equation}\tag*{(456)} % 这里同理,其它不再一一指定。 +S=\left\{x\in\Re^n\bigm|g_j(x)\le 0,\,j=1,2,\cdots,p\right\} +\end{equation} +is called the feasible set. An element $x$ in $S$ is called a +feasible solution. +\end{mpdef} + +\newtheorem{mpdefop}[mpdef]{Definition} +\begin{mpdefop} +A feasible solution $x^*$ is called the optimal +solution of SOP if and only if +\begin{equation} +f(x^*)\ge f(x) +\end{equation} +for any feasible solution $x$. +\end{mpdefop} + +One of the outstanding contributions to mathematical programming was known as +the Kuhn-Tucker conditions\ref{eq:ktc}. In order to introduce them, let us give +some definitions. An inequality constraint $g_j(x)\le 0$ is said to be active at +a point $x^*$ if $g_j(x^*)=0$. A point $x^*$ satisfying $g_j(x^*)\le 0$ is said +to be regular if the gradient vectors $\nabla g_j(x)$ of all active constraints +are linearly independent. + +Let $x^*$ be a regular point of the constraints of SOP and assume that all the +functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are differentiable. If $x^*$ is a +local optimal solution, then there exist Lagrange multipliers +$\lambda_j,j=1,2,\cdots,p$ such that the following Kuhn-Tucker conditions hold, +\begin{equation} +\label{eq:ktc} +\left\{\begin{array}{l} + \nabla f(x^*)-\sum\limits_{j=1}^p\lambda_j\nabla g_j(x^*)=0\\[0.3cm] + \lambda_jg_j(x^*)=0,\quad j=1,2,\cdots,p\\[0.2cm] + \lambda_j\ge 0,\quad j=1,2,\cdots,p. +\end{array}\right. +\end{equation} +If all the functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are convex and +differentiable, and the point $x^*$ satisfies the Kuhn-Tucker conditions +(\ref{eq:ktc}), then it has been proved that the point $x^*$ is a global optimal +solution of SOP. + +\subsection{Linear Programming} +\label{sec:lp} + +If the functions $f(x),g_j(x),j=1,2,\cdots,p$ are all linear, then SOP is called +a {\em linear programming}. + +The feasible set of linear is always convex. A point $x$ is called an extreme +point of convex set $S$ if $x\in S$ and $x$ cannot be expressed as a convex +combination of two points in $S$. It has been shown that the optimal solution to +linear programming corresponds to an extreme point of its feasible set provided +that the feasible set $S$ is bounded. This fact is the basis of the {\em simplex + algorithm} which was developed by Dantzig as a very efficient method for +solving linear programming. +\begin{table}[ht] +\centering + \centering + \caption*{Table~1\hskip1em This is an example for manually numbered table, which + would not appear in the list of tables} + \label{tab:badtabular2} + \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline + \multicolumn{2}{|c|}{Network Topology} & \# of nodes & + \multicolumn{3}{c|}{\# of clients} & Server \\\hline + GT-ITM & Waxman Transit-Stub & 600 & + \multirow{2}{2em}{2\%}& + \multirow{2}{2em}{10\%}& + \multirow{2}{2em}{50\%}& + \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} + \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline + & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline +\end{tabular} +\end{table} + +Roughly speaking, the simplex algorithm examines only the extreme points of the +feasible set, rather than all feasible points. At first, the simplex algorithm +selects an extreme point as the initial point. The successive extreme point is +selected so as to improve the objective function value. The procedure is +repeated until no improvement in objective function value can be made. The last +extreme point is the optimal solution. + +\subsection{Nonlinear Programming} + +If at least one of the functions $f(x),g_j(x),j=1,2,\cdots,p$ is nonlinear, then +SOP is called a {\em nonlinear programming}. + +A large number of classical optimization methods have been developed to treat +special-structural nonlinear programming based on the mathematical theory +concerned with analyzing the structure of problems. + +Now we consider a nonlinear programming which is confronted solely with +maximizing a real-valued function with domain $\Re^n$. Whether derivatives are +available or not, the usual strategy is first to select a point in $\Re^n$ which +is thought to be the most likely place where the maximum exists. If there is no +information available on which to base such a selection, a point is chosen at +random. From this first point an attempt is made to construct a sequence of +points, each of which yields an improved objective function value over its +predecessor. The next point to be added to the sequence is chosen by analyzing +the behavior of the function at the previous points. This construction continues +until some termination criterion is met. Methods based upon this strategy are +called {\em ascent methods}, which can be classified as {\em direct methods}, +{\em gradient methods}, and {\em Hessian methods} according to the information +about the behavior of objective function $f$. Direct methods require only that +the function can be evaluated at each point. Gradient methods require the +evaluation of first derivatives of $f$. Hessian methods require the evaluation +of second derivatives. In fact, there is no superior method for all +problems. The efficiency of a method is very much dependent upon the objective +function. + +\subsection{Integer Programming} + +{\em Integer programming} is a special mathematical programming in which all of +the variables are assumed to be only integer values. When there are not only +integer variables but also conventional continuous variables, we call it {\em + mixed integer programming}. If all the variables are assumed either 0 or 1, +then the problem is termed a {\em zero-one programming}. Although integer +programming can be solved by an {\em exhaustive enumeration} theoretically, it +is impractical to solve realistically sized integer programming problems. The +most successful algorithm so far found to solve integer programming is called +the {\em branch-and-bound enumeration} developed by Balas (1965) and Dakin +(1965). The other technique to integer programming is the {\em cutting plane + method} developed by Gomory (1959). + +\hfill\textit{Uncertain Programming\/}\quad(\textsl{BaoDing Liu, 2006.2}) + +\section*{References} +\noindent{\itshape NOTE: These references are only for demonstration. They are + not real citations in the original text.} + +\begin{translationbib} +\item Donald E. Knuth. The \TeX book. Addison-Wesley, 1984. ISBN: 0-201-13448-9 +\item Paul W. Abrahams, Karl Berry and Kathryn A. Hargreaves. \TeX\ for the + Impatient. Addison-Wesley, 1990. ISBN: 0-201-51375-7 +\item David Salomon. The advanced \TeX book. New York : Springer, 1995. ISBN:0-387-94556-3 +\end{translationbib} + +\chapter{外文资料的调研阅读报告或书面翻译} + +\title{英文资料的中文标题} + +{\heiti 摘要:} 本章为外文资料翻译内容。如果有摘要可以直接写上来,这部分好像没有 +明确的规定。 + +\section{单目标规划} +北冥有鱼,其名为鲲。鲲之大,不知其几千里也。化而为鸟,其名为鹏。鹏之背,不知其几 +千里也。怒而飞,其翼若垂天之云。是鸟也,海运则将徙于南冥。南冥者,天池也。 +\begin{equation}\tag*{(123)} + p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= +\frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} +\end{equation} + +吾生也有涯,而知也无涯。以有涯随无涯,殆已!已而为知者,殆而已矣!为善无近名,为 +恶无近刑,缘督以为经,可以保身,可以全生,可以养亲,可以尽年。 + +\subsection{线性规划} +庖丁为文惠君解牛,手之所触,肩之所倚,足之所履,膝之所倚,砉然响然,奏刀騞然,莫 +不中音,合于桑林之舞,乃中经首之会。 +\begin{table}[ht] +\centering + \centering + \caption*{表~1\hskip1em 这是手动编号但不出现在索引中的一个表格例子} + \label{tab:badtabular3} + \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline + \multicolumn{2}{|c|}{Network Topology} & \# of nodes & + \multicolumn{3}{c|}{\# of clients} & Server \\\hline + GT-ITM & Waxman Transit-Stub & 600 & + \multirow{2}{2em}{2\%}& + \multirow{2}{2em}{10\%}& + \multirow{2}{2em}{50\%}& + \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} + \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline + & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline +\end{tabular} +\end{table} + +文惠君曰:“嘻,善哉!技盖至此乎?”庖丁释刀对曰:“臣之所好者道也,进乎技矣。始臣之 +解牛之时,所见无非全牛者;三年之后,未尝见全牛也;方今之时,臣以神遇而不以目视, +官知止而神欲行。依乎天理,批大郤,导大窾,因其固然。技经肯綮之未尝,而况大坬乎! +良庖岁更刀,割也;族庖月更刀,折也;今臣之刀十九年矣,所解数千牛矣,而刀刃若新发 +于硎。彼节者有间而刀刃者无厚,以无厚入有间,恢恢乎其于游刃必有余地矣。是以十九年 +而刀刃若新发于硎。虽然,每至于族,吾见其难为,怵然为戒,视为止,行为迟,动刀甚微, +謋然已解,如土委地。提刀而立,为之而四顾,为之踌躇满志,善刀而藏之。” + +文惠君曰:“善哉!吾闻庖丁之言,得养生焉。” + + +\subsection{非线性规划} +孔子与柳下季为友,柳下季之弟名曰盗跖。盗跖从卒九千人,横行天下,侵暴诸侯。穴室枢 +户,驱人牛马,取人妇女。贪得忘亲,不顾父母兄弟,不祭先祖。所过之邑,大国守城,小 +国入保,万民苦之。孔子谓柳下季曰:“夫为人父者,必能诏其子;为人兄者,必能教其弟。 +若父不能诏其子,兄不能教其弟,则无贵父子兄弟之亲矣。今先生,世之才士也,弟为盗 +跖,为天下害,而弗能教也,丘窃为先生羞之。丘请为先生往说之。” + +柳下季曰:“先生言为人父者必能诏其子,为人兄者必能教其弟,若子不听父之诏,弟不受 +兄之教,虽今先生之辩,将奈之何哉?且跖之为人也,心如涌泉,意如飘风,强足以距敌, +辩足以饰非。顺其心则喜,逆其心则怒,易辱人以言。先生必无往。” + +孔子不听,颜回为驭,子贡为右,往见盗跖。 + +\subsection{整数规划} +盗跖乃方休卒徒大山之阳,脍人肝而餔之。孔子下车而前,见谒者曰:“鲁人孔丘,闻将军 +高义,敬再拜谒者。”谒者入通。盗跖闻之大怒,目如明星,发上指冠,曰:“此夫鲁国之 +巧伪人孔丘非邪?为我告之:尔作言造语,妄称文、武,冠枝木之冠,带死牛之胁,多辞缪 +说,不耕而食,不织而衣,摇唇鼓舌,擅生是非,以迷天下之主,使天下学士不反其本,妄 +作孝弟,而侥幸于封侯富贵者也。子之罪大极重,疾走归!不然,我将以子肝益昼餔之膳。” + + +\chapter{其它附录} +前面两个附录主要是给本科生做例子。其它附录的内容可以放到这里,当然如果你愿意,可 +以把这部分也放到独立的文件中,然后将其到主文件中。 diff --git a/Master/texmf-dist/doc/latex/hithesis/back/ceindex.tex b/Master/texmf-dist/doc/latex/hithesis/back/ceindex.tex new file mode 100644 index 00000000000..e5f8954b572 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/ceindex.tex @@ -0,0 +1,4 @@ +\begin{ceindex} + %如果想要手动加索引,注释掉以下这一样,用wordlist环境 +\printsubindex* +\end{ceindex} diff --git a/Master/texmf-dist/doc/latex/hithesis/back/conclusion.tex b/Master/texmf-dist/doc/latex/hithesis/back/conclusion.tex new file mode 100644 index 00000000000..58755f09eb5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/conclusion.tex @@ -0,0 +1,8 @@ +% !Mode:: "TeX:UTF-8" +\begin{conclusions} + +学位论文的结论作为论文正文的最后一章单独排写,但不加章标题序号。 + +结论应是作者在学位论文研究过程中所取得的创新性成果的概要总结,不能与摘要混为一谈。博士学位论文结论应包括论文的主要结果、创新点、展望三部分,在结论中应概括论文的核心观点,明确、客观地指出本研究内容的创新性成果(含新见解、新观点、方法创新、技术创新、理论创新),并指出今后进一步在本研究方向进行研究工作的展望与设想。对所取得的创新性成果应注意从定性和定量两方面给出科学、准确的评价,分(1)、(2)、(3)…条列出,宜用“提出了”、“建立了”等词叙述。 + +\end{conclusions} diff --git a/Master/texmf-dist/doc/latex/hithesis/back/publications.tex b/Master/texmf-dist/doc/latex/hithesis/back/publications.tex new file mode 100644 index 00000000000..05141cc889a --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/publications.tex @@ -0,0 +1,27 @@ +% !Mode:: "TeX:UTF-8" + +\begin{publication} +\noindent\textbf{(一)发表的学术论文} +\begin{publist} +\item XXX,XXX. Static Oxidation Model of Al-Mg/C Dissipation Thermal Protection Materials[J]. Rare Metal Materials and Engineering, 2010, 39(Suppl. 1): 520-524.(SCI~收录,IDS号为~669JS,IF=0.16) +\item XXX,XXX. 精密超声振动切削单晶铜的计算机仿真研究[J]. 系统仿真学报,2007,19(4):738-741,753.(EI~收录号:20071310514841) +\item XXX,XXX. 局部多孔质气体静压轴向轴承静态特性的数值求解[J]. 摩擦学学报,2007(1):68-72.(EI~收录号:20071510544816) +\item XXX,XXX. 硬脆光学晶体材料超精密切削理论研究综述[J]. 机械工程学报,2003,39(8):15-22.(EI~收录号:2004088028875) +\item XXX,XXX. 基于遗传算法的超精密切削加工表面粗糙度预测模型的参数辨识以及切削参数优化[J]. 机械工程学报,2005,41(11):158-162.(EI~收录号:2006039650087) +\item XXX,XXX. Discrete Sliding Mode Cintrok with Fuzzy Adaptive Reaching Law on 6-PEES Parallel Robot[C]. Intelligent System Design and Applications, Jinan, 2006: 649-652.(EI~收录号:20073210746529) +\end{publist} + +\noindent\textbf{(二)申请及已获得的专利(无专利时此项不必列出)} +\begin{publist} +\item XXX,XXX. 一种温热外敷药制备方案:中国,88105607.3[P]. 1989-07-26. +\end{publist} + +\noindent\textbf{(三)参与的科研项目及获奖情况} +\begin{publist} +\item XXX,XXX. XX~气体静压轴承技术研究, XX~省自然科学基金项目.课题编号:XXXX. +\item XXX,XXX. XX~静载下预应力混凝土房屋结构设计统一理论. 黑江省科学技术二等奖, 2007. +\end{publist} +%\vfill +%\hangafter=1\hangindent=2em\noindent +%\setlength{\parindent}{2em} +\end{publication} diff --git a/Master/texmf-dist/doc/latex/hithesis/back/resume.tex b/Master/texmf-dist/doc/latex/hithesis/back/resume.tex new file mode 100644 index 00000000000..35f0202af81 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/back/resume.tex @@ -0,0 +1,17 @@ +% !Mode:: "TeX:UTF-8" + +\begin{resume} +XXXX~年~XX~月~XX~日出生于~XXXX。 + +XXXX~年~XX~月考入~XX~大学~XX~院(系)XX~专业,XXXX~年~XX~月本科毕业并获得~XX~学学士学位。 + +XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学硕士学位。 + +XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学博士学位。 + +获奖情况:如获三好学生、优秀团干部、X~奖学金等(不含科研学术获奖)。 + +工作经历: + +\textbf{( 除全日制硕士生以外,其余学生均应增列此项。个人简历一般应包含教育经历和工作经历。)} +\end{resume} diff --git a/Master/texmf-dist/doc/latex/hithesis/body/introduction.tex b/Master/texmf-dist/doc/latex/hithesis/body/introduction.tex new file mode 100644 index 00000000000..f563169f7eb --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/body/introduction.tex @@ -0,0 +1,371 @@ +% !Mode:: "TeX:UTF-8" + +\chapter{示例文档}[Example] + +这是 \hithesis\ 的示例文档,基本上覆盖了模板中所有格式的设置。建议大家在使用模板 +之前,除了阅读《\hithesis\ 用户手册》,这个示例文档也最好能看一看。 +这个示例文档尽量使用到所有的排版格式,然而对于一些不在我工规范中规定的文档,理论 +上是由用户自由发挥,这里不给出样例。需要另行载入的宏包和自定义命令在文件 +`hithesis.sty'中有示例,这里不列举。 + +\section{索引示例}[Index] + +为便于检索文中内容,可编制索引置于论文之后(根据需要决定是否设置)。索引以论文中 +的专业词语为检索线索,指出其相关内容的所在页码。索引用中、英两种文字书写,中文在 +前。\sindex[china]{qi!乔峰}\sindex[english]{Xu Zhu}\sindex[english]{Qiao Feng} +中文按各词汉语拼音第一个字母排序,英文按该词第一个英文字母排序。 + +\section{引用}[Cite] + +\sindex[china]{du!段誉}引文标注遵照GB/T7714-2005,采用顺序编码制。正文中引用文献的标示应置于所引内容最后一个字的右上角,所引文献编号用阿拉伯数字置于方括号“[ ]”中,用小4号字体的上角标。要求: + +(1)引用单篇文献时,如“二次铣削\cite{cnproceed}”。 + +(2)同一处引用多篇文献时,各篇文献的序号在方括号内全部列出,各序号间用“,”,如 +遇连续序号,可标注讫序号。如,…形成了多种数学模型\cite{cnarticle,cnproceed}… + +(3)多次引用同一文献时,在文献序号的“[ ]”后标注引文页码。如,…间质细胞CAMP含量 +测定\cite[100-197]{cnarticle}…。…含量测定方法规定 +\cite[92]{cnarticle}…。 + +(4)当提及的参考文献为文中直接说明时,则用小4号字与正文排齐,如“由文献\inlinecite{hithesis2017}可知” + +\section{图片}[Pictures] +图应有自明性。插图应与文字紧密配合,文图相符,内容正确。选图要力求精练,插图、照 +片应完整清晰。机械工程图:采用第一角投影法,严格按照GB4457~GB131-83《机械制图》 +标准规定。数据流程图、程序流程图、系统流程图等按GB1526-89标准规定。电气图:图形 +符号、文字符号等应符合附录3所列有关标准的规定。流程图:必须采用结构化程序并正确 +运用流程框图。对无规定符号的图形应采用该行业的常用画法。坐标图的坐标线均用细实线 +,粗细不得超过图中曲线;有数字标注的坐标图,必须注明坐标单位。照片图要求主题和主 +要显示部分的轮廓鲜明,便于制版。如用放大或缩小的复制品,必须清晰,反差适中。照片 +上应有表示目的物尺寸的标度。引用文献中的图时,除在正文文字中标注参考文献序号以外 +,还必须在中、英文表题的右上角标注参考文献序号。 + +\subsection{博士毕业论文双语题注}[Doctoral picture example] +\begin{figure}[htpb] +\centering +\includegraphics[width = 0.4\textwidth]{golfer} +\bicaption[golfer1]{}{图打打高尔夫球的人打高尔夫球的人打高尔夫球的人打高尔夫球球的人高尔夫球的人球的人高尔夫球的人的人高尔夫球的人}{Fig.$\!$}{The person playing golf playing golf playing golf playing golf playing golf playing golf playing golf playing golf} +\end{figure} + +每个图均应有图题(由图序和图名组成),图题不宜有标点符号,图名在图序之后空1个半 +角字符排写。图序按章编排,如第1章第一个插图的图号为“图1-1”。图题置于图下,硕士论 +文只用中文,博士论文用中、英两种文字,居中书写,中文在上,要求中文用宋体5号字, +英文用Times New Roman 5号字。有图注或其它说明时应置于图题之上。引用图应注明出处 +,在图题右上角加引用文献号。图中若有分图时,分图题置于分图之下或图题之下,可以只 +用中文书写,分图号用a)、b)等表示。图中各部分说明应采用中文(引用的外文图除外)或 +数字符号,各项文字说明置于图题之上(有分图时,置于分图题之上)。图中文字用宋体、 +Times New Roman字体,字号尽量采用5号字(当字数较多时可用小5号字,以清晰表达为原 +则,但在一个插图内字号要统一)。同一图内使用文字应统一。图表中物理量、符号用斜体 +。 +\subsection{本硕论文题注}[Other picture example] +\begin{figure}[h] +\centering +\includegraphics[width = 0.4\textwidth]{golfer} +\caption{打高尔夫球的人} +\end{figure} + +\subsection{并排图和子图}[Abreast-picture and Sub-picture example] +\subsubsection{并排图}[Abreast-picture example] +\begin{figure}[htbp] +\centering +\begin{minipage}{0.4\textwidth} +\centering +\includegraphics[width=\textwidth]{golfer} +\bicaption[golfer2]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} +\end{minipage} +\begin{minipage}{0.4\textwidth} +\centering +\includegraphics[width=\textwidth]{golfer} +\bicaption[golfer3]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} +\end{minipage} +\end{figure} +\subsubsection{子图}[Sub-picture example] +注意:子图题注也可以只用中文。 +\begin{figure}[!h] +\setlength{\subfigcapskip}{-1bp} +\centering +\subfigure{\label{golfer41}}\addtocounter{subfigure}{-2} +\subfigure[The person playing golf]{\subfigure[打高尔夫球的人~1]{\includegraphics[width=0.4\textwidth]{golfer}}} +\subfigure{\label{golfer42}}\addtocounter{subfigure}{-2} +\subfigure[The person playing golf]{\subfigure[打高尔夫球的人~2]{\includegraphics[width=0.4\textwidth]{golfer}}} +\subfigure{\label{golfer43}}\addtocounter{subfigure}{-2} +\subfigure[The person playing golf]{\subfigure[打高尔夫球的人~3]{\includegraphics[width=0.4\textwidth]{golfer}}} +\subfigure{\label{golfer44}}\addtocounter{subfigure}{-2} +\subfigure[The person playing golf]{\subfigure[打高尔夫球的人~4]{\includegraphics[width=0.4\textwidth]{golfer}}} +\vspace{0.2em} +\bicaption[golfer4]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} +\end{figure} + +\section{表格} + +表应有自明性。表格不加左、右边线。表的编排建议采用国际通行的三线表。表中文字用宋 +体~5~号字。每个表格均应有表题(由表序和表名组成)。表序一般按章编排,如第~1~章第 +一个插表的序号为“表~1-1”等。表序与表名之间空一格,表名中不允许使用标点符号,表名 +后不加标点。表题置于表上,硕士学位论文只用中文,博士学位论文用中、英文两种文字居 +中排写,中文在上,要求中文用宋体~5~号字,英文用新罗马字体~5~号字。表头设计应简单 +明了,尽量不用斜线。表头中可采用化学符号或物理量符号。 + + +\subsection{普通表格的绘制方法}[Methods of drawing normal tables] + +表格应具有三线表格式,因此需要调用~booktabs~宏包,其标准格式如表~\ref{table1}~所示。 +\begin{table}[htbp] +\bicaption[table1]{}{符合研究生院绘图规范的表格}{Table$\!$}{Table in agreement of the standard from graduate school} +\vspace{0.5em}\centering\wuhao +\begin{tabular}{ccccc} +\toprule[1.5pt] +$D$(in) & $P_u$(lbs) & $u_u$(in) & $\beta$ & $G_f$(psi.in)\\ +\midrule[1pt] + 5 & 269.8 & 0.000674 & 1.79 & 0.04089\\ +10 & 421.0 & 0.001035 & 3.59 & 0.04089\\ +20 & 640.2 & 0.001565 & 7.18 & 0.04089\\ +\bottomrule[1.5pt] +\end{tabular} +\end{table} +全表如用同一单位,则将单位符号移至表头右上角,加圆括号。表中数据应准确无误,书写 +清楚。数字空缺的格内加横线“-”(占~2~个数字宽度)。表内文字或数字上、下或左、右 +相同时,采用通栏处理方式,不允许用“〃”、“同上”之类的写法。表内文字说明,起行空一 +格、转行顶格、句末不加标点。如某个表需要转页接排,在随后的各页上应重复表的编号。 +编号后加“(续表)”,表题可省略。续表应重复表头。 + +\subsection{长表格的绘制方法}[Methods of drawing long tables] + +长表格是当表格在当前页排不下而需要转页接排的情况下所采用的一种表格环境。若长表格 +仍按照普通表格的绘制方法来获得,其所使用的\verb|table|浮动环境无法实现表格的换页 +接排功能,表格下方过长部分会排在表格第1页的页脚以下。为了能够实现长表格的转页接 +排功能,需要调用~longtable~宏包,由于长表格是跨页的文本内容,因此只需要单独的 +\verb|longtable|环境,所绘制的长表格的格式如表~\ref{table2}~所示。 + +注意,长表格双语标题的格式。 + +\ltfontsize{\dawu[1.667]} +\dawu[1.667]\begin{longtable}{ccc}% +\longbionenumcaption{}{{\wuhao 中国省级行政单位一览 +}\label{table2}}{Table$\!$}{}{{\wuhao Overview of the provincial administrative +unit of China}}{-0.5em}{3.15bp}\\ +%\caption{\wuhao 中国省级行政单位一览}\\ +\toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] +\endfirsthead +\multicolumn{3}{r}{表~\thetable(续表)}\vspace{0.5em}\\ +\toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] +\endhead +\bottomrule[1.5pt] +\endfoot +北京市 & 京 & 北京\\ +天津市 & 津 & 天津\\ +河北省 & 冀 & 石家庄市\\ +山西省 & 晋 & 太原市\\ +内蒙古自治区 & 蒙 & 呼和浩特市\\ +辽宁省 & 辽 & 沈阳市\\ +吉林省 & 吉 & 长春市\\ +黑龙江省 & 黑 & 哈尔滨市\\ +上海市 & 沪/申 & 上海\\ +江苏省 & 苏 & 南京市\\ +浙江省 & 浙 & 杭州市\\ +安徽省 & 皖 & 合肥市\\ +福建省 & 闽 & 福州市\\ +江西省 & 赣 & 南昌市\\ +山东省 & 鲁 & 济南市\\ +河南省 & 豫 & 郑州市\\ +湖北省 & 鄂 & 武汉市\\ +湖南省 & 湘 & 长沙市\\ +广东省 & 粤 & 广州市\\ +广西壮族自治区 & 桂 & 南宁市\\ +海南省 & 琼 & 海口市\\ +重庆市 & 渝 & 重庆\\ +四川省 & 川/蜀 & 成都市\\ +贵州省 & 黔/贵 & 贵阳市\\ +云南省 & 云/滇 & 昆明市\\ +西藏自治区 & 藏 & 拉萨市\\ +陕西省 & 陕/秦 & 西安市\\ +甘肃省 & 甘/陇 & 兰州市\\ +青海省 & 青 & 西宁市\\ +宁夏回族自治区 & 宁 & 银川市\\ +新疆维吾尔自治区 & 新 & 乌鲁木齐市\\ +香港特别行政区 & 港 & 香港\\ +澳门特别行政区 & 澳 & 澳门\\ +台湾省 & 台 & 台北市\\ +\end{longtable}\normalsize + +\ltfontsize{\dawu[1.667]} +\dawu[1.667]\begin{longtable}{ccc}% + \caption{\wuhao 中国省级行政单位一览}\\[0.3em] +\toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] +\endfirsthead +\multicolumn{3}{r}{表~\thetable(续表)}\vspace{0.5em}\\ +\toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] +\endhead +\bottomrule[1.5pt] +\endfoot +北京市 & 京 & 北京\\ +天津市 & 津 & 天津\\ +河北省 & 冀 & 石家庄市\\ +山西省 & 晋 & 太原市\\ +内蒙古自治区 & 蒙 & 呼和浩特市\\ +辽宁省 & 辽 & 沈阳市\\ +吉林省 & 吉 & 长春市\\ +黑龙江省 & 黑 & 哈尔滨市\\ +上海市 & 沪/申 & 上海\\ +江苏省 & 苏 & 南京市\\ +浙江省 & 浙 & 杭州市\\ +安徽省 & 皖 & 合肥市\\ +福建省 & 闽 & 福州市\\ +江西省 & 赣 & 南昌市\\ +山东省 & 鲁 & 济南市\\ +河南省 & 豫 & 郑州市\\ +湖北省 & 鄂 & 武汉市\\ +湖南省 & 湘 & 长沙市\\ +广东省 & 粤 & 广州市\\ +广西壮族自治区 & 桂 & 南宁市\\ +海南省 & 琼 & 海口市\\ +重庆市 & 渝 & 重庆\\ +四川省 & 川/蜀 & 成都市\\ +贵州省 & 黔/贵 & 贵阳市\\ +云南省 & 云/滇 & 昆明市\\ +西藏自治区 & 藏 & 拉萨市\\ +陕西省 & 陕/秦 & 西安市\\ +甘肃省 & 甘/陇 & 兰州市\\ +青海省 & 青 & 西宁市\\ +宁夏回族自治区 & 宁 & 银川市\\ +新疆维吾尔自治区 & 新 & 乌鲁木齐市\\ +香港特别行政区 & 港 & 香港\\ +澳门特别行政区 & 澳 & 澳门\\ +台湾省 & 台 & 台北市\\ +\end{longtable}\normalsize +此长表格~\ref{table2}~第~2~页的标题“编号(续表)”和表头是通过代码自动添加上去的,无需人工添加,若表格在页面中的竖直位置发生了变化,长表格在第~2~页 +及之后各页的标题和表头位置能够始终处于各页的最顶部,也无需人工调整,\LaTeX~系统的这一优点是~word~等软件所无法比拟的。 + +\subsection{列宽可调表格的绘制方法}[Methods of drawing tables with adjustable-width columns] +论文中能用到列宽可调表格的情况共有两种,一种是当插入的表格某一单元格内容过长以至 +于一行放不下的情况,另一种是当对公式中首次出现的物理量符号进行注释的情况,这两种 +情况都需要调用~tabularx~宏包。下面将分别对这两种情况下可调表格的绘制方法进行阐述 +。 +\subsubsection{表格内某单元格内容过长的情况}[The condition when the contents in +some cells of tables are too long] +首先给出这种情况下的一个例子如表~\ref{table3}~所示。 +\begin{table}[htbp] + \centering +\bicaption[table3]{}{最小的三个正整数的英文表示法}{Table$\!$}{The English construction of the smallest three positive integral numbers}\vspace{0.5em}\wuhao +\begin{tabularx}{0.7\textwidth}{llX} +\toprule[1.5pt] +Value & Name & Alternate names, and names for sets of the given size\\\midrule[1pt] +1 & One & ace, single, singleton, unary, unit, unity\\ +2 & Two & binary, brace, couple, couplet, distich, deuce, double, doubleton, duad, duality, duet, duo, dyad, pair, snake eyes, span, twain, twosome, yoke\\ +3 & Three & deuce-ace, leash, set, tercet, ternary, ternion, terzetto, threesome, tierce, trey, triad, trine, trinity, trio, triplet, troika, hat-trick\\\bottomrule[1.5pt] +\end{tabularx} +\end{table} +tabularx环境共有两个必选参数:第1个参数用来确定表格的总宽度,第2个参数用来确定每 +列格式,其中标为X的项表示该列的宽度可调,其宽度值由表格总宽度确定。标为X的列一般 +选为单元格内容过长而无法置于一行的列,这样使得该列内容能够根据表格总宽度自动分行 +。若列格式中存在不止一个X项,则这些标为X的列的列宽相同,因此,一般不将内容较短的 +列设为X。标为X的列均为左对齐,因此其余列一般选为l(左对齐),这样可使得表格美观 +,但也可以选为c或r。 + +\subsubsection{对物理量符号进行注释的情况}[The condition when physical symbols +need to be annotated] + +为使得对公式中物理量符号注释的转行与破折号“———”后第一个字对齐,此处最好采用表格 +环境。此表格无任何线条,左对齐,且在破折号处对齐,一共有“式中”二字、物理量符号和 +注释三列,表格的总宽度可选为文本宽度,因此应该采用\verb|tabularx|环境。由 +\verb|tabularx|环境生成的对公式中物理量符号进行注释的公式如式(\ref{eq:1})所示。 +\begin{equation}\label{eq:1} +\ddot{\boldsymbol{\rho}}-\frac{\mu}{R_{t}^{3}}\left(3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)=\mathbf{a} +\end{equation} +\begin{tabularx}{\textwidth}{@{}l@{\quad}r@{———}X@{}} +式中& $\boldsymbol{\rho}$ &追踪飞行器与目标飞行器之间的相对位置矢量;\\ +& $\boldsymbol{\ddot{\rho}}$&追踪飞行器与目标飞行器之间的相对加速度;\\ +& $\mathbf{a}$ &推力所产生的加速度;\\ +& $\mathbf{R_t}$ & 目标飞行器在惯性坐标系中的位置矢量;\\ +& $\omega_{t}$ & 目标飞行器的轨道角速度;\\ +& $\mathbf{g}$ & 重力加速度,$=\frac{\mu}{R_{t}^{3}}\left( +3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)=\omega_{t}^{2}\frac{R_{t}}{p}\left( +3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)$,这里~$p$~是目标飞行器的轨道半通径。 +\end{tabularx}\vspace{3.15bp} +由此方法生成的注释内容应紧邻待注释公式并置于其下方,因此不能将代码放入 +\verb|table|浮动环境中。但此方法不能实现自动转页接排,可能会在当前页剩余空间不够 +时,全部移动到下一页而导致当前页出现很大空白。因此在需要转页处理时,还请您手动将 +需要转页的代码放入一个新的\verb|tabularx|环境中,将原来的一个\verb|tabularx|环境 +拆分为两个\verb|tabularx|环境。 + +\section{公式} +与正常\LaTeX\ 使用方法一致,此处略。关于公式中符号样式的定义在`hithesis.sty'有示 +例。 + +\section{其他杂项}[Miscellaneous] + +\subsection{算法}[Algorithms] +我工算法有以下几大特点。 + +(1)算法不再规范中要求。 + +(2)算法常常被使用(至少计算机学院)。 + +(3)格式乱,甚至出现了每个实验室的格式要求都不一样。 + +此处不给出示例,因为没法给,在 +\href{https://github.com/dustincys/PlutoThesis}{https://github.com/dustincys/PlutoThesis} +的readme文件中有不同实验室算法要求说明。 + +\subsection{脚注}[Footnotes] +不再规范\footnote{规范是指\PGR\ 和\UGR}中要求,模板默认使用清华大学的格式。 + +\subsection{源码}[Source code] +也不再规范中要求。如果有需要最好使用minted包,但在编译的时候需要添加“ +-shell-escape”选项且安装pygmentize软件,这些不在模板中默认载入,如果需要自行载入 +。 +\subsection{思源宋体}[Siyuan font] +如果要使用思源字体,需要思源字体的定义文件,此文件请到模板的开发版网址github: +\href{https://gihitb.com/dustincys/hithesis}{https://gihitb.com/dustincys/hithesis} +或者oschia: +\href{https://git.oschina.net/dustincys/hithesis}{https://git.oschina.net/dustincys/hithesis} +处下载。 + +\subsection{专业绘图工具}[Processional drawing tool] +推荐使用tikz包,使用tikz源码绘图的好处是,图片中的字体与正文中的字体一致。具体如 +何使用tikz绘图不属于模板范畴。 +tikz适合用来画不需要大量实验数据支撑示意图。但R语言等专业绘图工具具有画出各种、 +专业、复杂的数据图。R语言中有tikz包,能自动生成tikz码,这样tikz几乎无所不能。 +对于排版有极致追求的小伙伴,可以参考 +\href{http://www.texample.net/tikz/resources/}{http://www.texample.net/tikz/resources/} +中所列工具,几乎所有作图软件所作的图形都可一转成tikz,然后可以自由的在tikz中修改 +图中内容,定义字体等等。实现前文窝工规范中要求的图中字体的一致性的终极目标。 + + +\subsection{术语词汇管理}[Manage glossaries] +推荐使用glossaries包管理术语、缩略语,可以自动生成首次全写,非首次缩写。 + +\subsection{\TeX\ 源码编辑器}[\TeX editor] +推荐:(1)付费软件Winedt;(2)免费软件kile;(3)vim或emaces或sublime等神级编 +译器(需要配置)。 + +\subsection{\LaTeX\ 排版重要原则}[\LaTeX\ typesetting rules] +格式和内容分离是\LaTeX\ 最大优势,所有多次出现的内容、样式等等都可以定义为简单命 +令、环境。这样的好处是方便修改、管理。例如,如果想要把所有的表示向量的符号由粗体 +\cs{mathbf}变换到花体\cs{mathcal},只需修改该格式的命令的定义部分,不需要像MS +word那样处处修改。总而言之,使用自定义命令和环境才是正确的使用\LaTeX\ 的方式。 + +\section{关于捐助} +各位刀客和大侠如用的嗨,要解囊相助,请微信或支付宝参照图 +~\ref{wct5}~到图~\ref{zfb}~中提示操作(二维码被矢量化后之后去 +除了头像等冗余无用的部分~)。 + +\begin{figure}[!h] +\setlength{\subfigcapskip}{-1bp} +\centering +\subfigure{\label{wct5}}\addtocounter{subfigure}{-1} +\subfigure[如果用的嗨,微信扫码捐助5元~~]{\includegraphics[width=0.4\textwidth]{wct5}} +\hspace{2em} +\subfigure{\label{wct10}}\addtocounter{subfigure}{-1} +\subfigure[如果用的非常嗨,微信扫码捐助10元~~]{\includegraphics[width=0.4\textwidth]{wct10}} +\subfigure{\label{wct1}}\addtocounter{subfigure}{-1} +\subfigure[那个,看在熬夜写代码的份上,微信扫码捐助1元吧~~]{\includegraphics[width=0.4\textwidth]{wct1}} +\hspace{2em} +\subfigure{\label{zfb}}\addtocounter{subfigure}{-1} +\subfigure[或者支付宝不限额度~]{\includegraphics[width=0.4\textwidth]{zfb}} +\vspace{0.2em} +\bicaption[Donation]{}{捐助,注意此处是子图只用汉语图题的形式,我工规定可以不用 +英语图题}{Fig.$\!$}{Donation, please note that it is OK to use Chinese caption +only} +\end{figure} + diff --git a/Master/texmf-dist/doc/latex/hithesis/dtx-style.sty b/Master/texmf-dist/doc/latex/hithesis/dtx-style.sty new file mode 100644 index 00000000000..9f629224700 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/dtx-style.sty @@ -0,0 +1,145 @@ +%% +%% This is file `dtx-style.sty', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% hithesis.dtx (with options: `dtx-style') +%% +%% This is a generated file. +%% +%% Copyright (C) 2017-2017 by Chu Yanshuo +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either version 1.3a +%% of this license or (at your option) any later version. +%% The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3a or later is part of all distributions of LaTeX +%% version 2004/10/01 or later. +%% +%% To produce the documentation run the original source files ending with `.dtx' +%% through LaTeX. +%% +\ProvidesPackage{dtx-style} +\RequirePackage{hypdoc} +\RequirePackage[UTF8,scheme=chinese,fontset=windowsnew]{ctex} +\RequirePackage{newpxtext} +\RequirePackage{newpxmath} +\RequirePackage[ + top=2.5cm, bottom=2.5cm, + left=4cm, right=2cm, + headsep=3mm]{geometry} +\RequirePackage{array,longtable,booktabs} +\RequirePackage{listings} +\RequirePackage{fancyhdr} +\RequirePackage{xcolor} +\RequirePackage{enumitem} +\RequirePackage{etoolbox} +\RequirePackage{metalogo} +\RequirePackage{hyperref} + +\colorlet{hit@macro}{blue!60!black} +\colorlet{hit@env}{blue!70!black} +\colorlet{hit@option}{purple} +\patchcmd{\PrintMacroName}{\MacroFont}{\MacroFont\bfseries\color{hit@macro}}{}{} +\patchcmd{\PrintDescribeMacro}{\MacroFont}{\MacroFont\bfseries\color{hit@macro}}{}{} +\patchcmd{\PrintDescribeEnv}{\MacroFont}{\MacroFont\bfseries\color{hit@env}}{}{} +\patchcmd{\PrintEnvName}{\MacroFont}{\MacroFont\bfseries\color{hit@env}}{}{} + +\def\DescribeOption{% + \leavevmode\@bsphack\begingroup\MakePrivateLetters% + \Describe@Option} +\def\Describe@Option#1{\endgroup + \marginpar{\raggedleft\PrintDescribeOption{#1}}% + \hit@special@index{option}{#1}\@esphack\ignorespaces} +\def\PrintDescribeOption#1{\strut \MacroFont\bfseries\sffamily\color{hit@option} #1\ } +\def\hit@special@index#1#2{\@bsphack + \begingroup + \HD@target + \let\HDorg@encapchar\encapchar + \edef\encapchar usage{% + \HDorg@encapchar hdclindex{\the\c@HD@hypercount}{usage}% + }% + \index{#2\actualchar{\string\ttfamily\space#2} + (#1)\encapchar usage}% + \index{#1:\levelchar#2\actualchar + {\string\ttfamily\space#2}\encapchar usage}% + \endgroup + \@esphack} + +\lstdefinestyle{lstStyleBase}{% + basicstyle=\small\ttfamily, + aboveskip=\medskipamount, + belowskip=\medskipamount, + lineskip=0pt, + boxpos=c, + showlines=false, + extendedchars=true, + upquote=true, + tabsize=2, + showtabs=false, + showspaces=false, + showstringspaces=false, + numbers=none, + linewidth=\linewidth, + xleftmargin=4pt, + xrightmargin=0pt, + resetmargins=false, + breaklines=true, + breakatwhitespace=false, + breakindent=0pt, + breakautoindent=true, + columns=flexible, + keepspaces=true, + gobble=2, + framesep=3pt, + rulesep=1pt, + framerule=1pt, + backgroundcolor=\color{gray!5}, + stringstyle=\color{green!40!black!100}, + keywordstyle=\bfseries\color{blue!50!black}, + commentstyle=\slshape\color{black!60}} + +\lstdefinestyle{lstStyleShell}{% + style=lstStyleBase, + frame=l, + rulecolor=\color{purple}, + language=bash} + +\lstdefinestyle{lstStyleLaTeX}{% + style=lstStyleBase, + frame=l, + rulecolor=\color{violet}, + language=[LaTeX]TeX} + +\lstnewenvironment{latex}{\lstset{style=lstStyleLaTeX}}{} +\lstnewenvironment{shell}{\lstset{style=lstStyleShell}}{} + +\setlist{nosep} + +\DeclareDocumentCommand{\option}{m}{\textsf{#1}} +\DeclareDocumentCommand{\env}{m}{\texttt{#1}} +\DeclareDocumentCommand{\pkg}{s m}{% + \texttt{#2}\IfBooleanF#1{\hit@special@index{package}{#2}}} +\DeclareDocumentCommand{\file}{s m}{% + \texttt{#2}\IfBooleanF#1{\hit@special@index{file}{#2}}} +\newcommand{\myentry}[1]{% + \marginpar{\raggedleft\color{purple}\bfseries\strut #1}} +\newcommand{\note}[2][Note]{{% + \color{magenta}{\bfseries #1}\emph{#2}}} +\newcommand{\pozhehao}{——} +\def\hithesis{\textsc{hi}\-\textsc{Thesis}} +\def\hit{哈尔滨工业大学} +\def\PGR{\href{http://hitgs.hit.edu.cn/aa/fd/c3425a109309/page.htm} +{《\hit 研究生学位论文撰写规范》}} +\def\UGR{\href{http://jwc.hit.edu.cn/2566/list.htm} +{《\hit 本科生毕业论文撰写规范》}} + \NewDocumentEnvironment{hitrgu}{o o} + { \IfNoValueTF{#1}{\PGR,\UGR}{#1}\IfNoValueF{#2}{#2中}% +\color{red}规定:“}{”} +\endinput +%% +%% End of file `dtx-style.sty'. diff --git a/Master/texmf-dist/doc/latex/hithesis/figures/bthesistitle.eps b/Master/texmf-dist/doc/latex/hithesis/figures/bthesistitle.eps new file mode 100644 index 00000000000..631dc56dddc --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/figures/bthesistitle.eps @@ -0,0 +1,335 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 23:43:48 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 0 -1 422 55 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 0 -1 422 55 +%%EndPageSetup +q 0 -1 422 56 rectclip q +0 g +20.781 0.454 m 20.582 0.704 20.312 4.915 20.18 9.95 c 20.047 14.927 19.844 + 19.544 19.723 20.208 c 19.512 21.403 19.488 21.415 17.988 21.192 c 17.156 + 21.067 14.938 20.813 13.062 20.634 c 8.965 20.235 7.098 19.766 4.219 18.399 + c 0.973 16.864 0.621 16.958 0.168 19.442 c -0.25 21.751 0.102 22.798 1.293 + 22.798 c 1.676 22.798 2.816 23.032 3.828 23.317 c 5.516 23.79 6.543 24.063 + 12.273 25.559 c 13.32 25.833 15.043 26.298 16.105 26.599 c 17.168 26.895 + 18.309 27.141 18.641 27.141 c 19.082 27.141 19.242 27.466 19.242 28.388 + c 19.242 29.161 19.551 29.989 20.055 30.567 c 20.871 31.505 l 22.859 30.806 + l 23.953 30.423 25.258 29.72 25.754 29.243 c 26.66 28.376 l 32.27 28.821 + l 35.352 29.067 38.203 29.302 38.602 29.349 c 40.082 29.509 40.516 29.274 + 41.535 27.774 c 42.109 26.927 42.68 26.153 42.801 26.056 c 43.188 25.739 + 43.527 22.552 43.281 21.571 c 43.098 20.833 42.824 20.626 42.02 20.626 +c 41.457 20.626 40.902 20.778 40.789 20.962 c 40.676 21.145 39.551 21.638 + 38.293 22.056 c 36.312 22.716 35.297 22.806 30.789 22.72 c 25.574 22.618 + l 25.324 20.626 l 25.188 19.532 25.043 14.727 25 9.95 c 24.961 5.177 24.859 + 0.981 24.773 0.634 c 24.652 0.138 24.238 0.001 22.879 0.001 c 21.918 0.001 + 20.977 0.204 20.781 0.454 c h +202.465 0.454 m 202.309 0.7 202.234 4.911 202.301 9.809 c 202.375 15.247 + 202.246 20.274 201.977 22.72 c 201.535 26.731 l 200.133 26.966 l 198.18 + 27.298 196.074 26.872 194.555 25.845 c 193.848 25.364 193.043 24.97 192.766 + 24.97 c 192.152 24.97 189.68 29.513 189.68 30.641 c 189.68 31.294 189.945 + 31.493 191.039 31.681 c 191.785 31.806 192.965 32.059 193.66 32.239 c 194.359 + 32.419 195.309 32.563 195.777 32.567 c 196.242 32.567 197.746 32.907 199.117 + 33.325 c 201.609 34.083 l 201.707 41.919 l 201.805 49.759 l 203.684 49.864 + l 204.992 49.942 206.055 49.751 207.18 49.239 c 209.047 48.388 209.301 +47.942 208.66 46.665 c 208.371 46.095 208.152 43.868 208.074 40.786 c 207.957 + 35.825 l 209.273 35.825 l 209.996 35.825 211.422 36.095 212.445 36.427 +c 214.23 37.001 214.328 36.997 214.855 36.337 c 215.16 35.954 215.578 35.196 + 215.789 34.649 c 215.996 34.102 216.293 33.653 216.449 33.653 c 216.832 + 33.653 217.645 30.641 217.484 29.806 c 217.367 29.192 216.957 29.13 213.016 + 29.114 c 210.633 29.102 208.41 28.97 208.082 28.817 c 207.363 28.481 206.992 + 22.196 206.918 9.044 c 206.879 2.056 206.781 0.641 206.328 0.352 c 205.535 + -0.144 202.801 -0.077 202.465 0.454 c h +407.906 2.102 m 406.441 2.333 402.094 5.352 402.332 5.974 c 402.445 6.27 + 402.707 6.513 402.914 6.513 c 403.426 6.513 410.059 13.184 410.059 13.7 + c 410.059 13.927 410.184 14.114 410.332 14.114 c 410.895 14.122 413.797 + 19.571 414.762 22.434 c 417.156 29.536 417.203 38.747 414.895 47.946 c +414.594 49.141 414.215 50.649 414.047 51.294 c 413.758 52.427 413.781 52.462 + 414.707 52.259 c 417.59 51.634 417.832 51.333 419.203 46.681 c 422.32 36.099 + 422.586 26.45 420.016 17.052 c 419.426 14.895 416.766 9.188 415.988 8.407 + c 415.711 8.134 415.488 7.778 415.488 7.618 c 415.488 7.462 414.449 6.247 + 413.18 4.919 c 410.883 2.516 409.605 1.833 407.906 2.102 c h +262.418 2.829 m 260.957 3.532 260.273 4.263 260.258 5.145 c 260.25 5.485 + 260.02 6.302 259.746 6.954 c 257.246 12.884 256.172 26.763 257.664 33.872 + c 258.633 38.485 259.824 41.72 261.766 45.02 c 263.887 48.626 268.145 52.833 + 269.668 52.833 c 270.238 52.833 274.098 50.97 274.633 50.438 c 274.883 +50.188 275.41 49.884 275.809 49.755 c 276.207 49.63 276.531 49.407 276.531 + 49.255 c 276.531 49.001 274.07 46.681 273.797 46.681 c 273.5 46.681 270.016 + 42.997 270.016 42.684 c 270.016 42.493 269.887 42.341 269.73 42.341 c 269.445 + 42.341 266.758 38.907 266.758 38.54 c 266.758 38.434 266.391 37.735 265.934 + 36.993 c 264.969 35.411 263.863 32.599 262.914 29.313 c 262.355 27.368 +262.238 25.77 262.254 20.083 c 262.273 13.337 262.504 11.423 263.945 5.97 + c 264.887 2.403 264.906 2.169 264.277 2.196 c 263.953 2.204 263.113 2.493 + 262.418 2.829 c h +386.898 2.415 m 378.605 3.438 377.863 3.704 377.195 5.88 c 375.809 10.376 + 373.941 12.786 371.555 13.149 c 370.211 13.352 370.016 13.251 367.859 11.231 + c 365.59 9.106 365.094 8.774 361.84 7.181 c 360.895 6.716 360.121 6.227 + 360.121 6.095 c 360.121 5.661 357.707 4.341 356.914 4.341 c 354.457 4.341 + 348.902 8.356 348.902 10.134 c 348.902 10.813 349.148 10.856 353.184 10.856 + c 356.52 10.856 358 11.024 359.879 11.614 c 361.207 12.032 362.293 12.52 + 362.293 12.7 c 362.293 12.88 362.457 13.028 362.66 13.028 c 363.078 13.028 + 366.273 16.266 366.273 16.684 c 366.273 17.184 364.309 18.345 362.422 18.966 + c 360.445 19.61 360.137 20.067 360.129 22.356 c 360.121 23.665 360.91 25.829 + 361.527 26.212 c 361.746 26.345 362.91 25.876 364.117 25.169 c 365.324 +24.462 366.445 23.884 366.609 23.884 c 366.773 23.884 367.113 23.638 367.359 + 23.341 c 367.605 23.044 368.086 22.798 368.426 22.798 c 369.125 22.798 +369.891 25.466 369.891 27.891 c 369.891 29.438 369.422 29.681 367.969 28.872 + c 367.48 28.602 365.57 28.431 362.988 28.419 c 359.531 28.411 358.57 28.282 + 357.477 27.696 c 356.164 26.985 356.152 26.985 355.625 27.696 c 355.055 + 28.458 354.332 31.302 354.332 32.774 c 354.332 33.849 355.266 34.282 358.246 + 34.587 c 362.355 35.009 368.797 36.509 370.098 37.349 c 370.312 37.485 +372.266 38.192 374.441 38.919 c 376.617 39.645 378.758 40.47 379.199 40.747 + c 380.543 41.595 381.707 41.372 382.68 40.079 c 384.594 37.528 385.734 +33.751 384.637 33.587 c 384.391 33.548 383.02 33.509 381.59 33.493 c 378.305 + 33.466 377.375 32.841 375.738 29.532 c 374.648 27.325 373.168 21.665 373.152 + 19.653 c 373.148 18.552 378.91 12.809 380.75 12.087 c 381.047 11.97 381.781 + 11.649 382.379 11.38 c 382.973 11.106 384.902 10.372 386.668 9.747 c 390.215 + 8.489 392.648 7.013 393.762 5.446 c 394.797 3.997 394.684 3.372 393.324 + 2.946 c 392.031 2.548 388.324 2.239 386.898 2.415 c h +152.227 4.099 m 149.426 4.513 149.035 4.825 148.445 7.145 c 148.23 7.993 + 147.895 8.684 147.699 8.684 c 147.504 8.684 147.344 8.931 147.344 9.227 + c 147.344 9.528 147.098 9.77 146.801 9.77 c 146.5 9.77 146.258 9.931 146.258 + 10.126 c 146.258 10.52 143.5 11.942 142.73 11.942 c 142.457 11.942 141.797 + 11.481 141.262 10.923 c 138.781 8.333 136.094 6.876 133.781 6.876 c 132.195 + 6.876 129.453 7.86 128.688 8.708 c 128.082 9.376 128.082 9.442 128.707 +10.134 c 129.066 10.532 129.656 10.856 130.016 10.856 c 131.078 10.856 135.316 + 12.778 137.27 14.145 c 138.605 15.083 l 136.484 17.313 l 135.305 18.552 + 134.051 19.54 133.66 19.54 c 132.48 19.54 131.969 20.563 132 22.849 c 132.035 + 25.462 132.816 26.563 134.383 26.22 c 134.996 26.087 135.402 26.149 135.402 + 26.376 c 135.402 26.993 142.492 29.04 144.098 28.888 c 145.492 28.755 145.5 + 28.759 144.836 29.485 c 143.207 31.274 143 32.27 143 38.341 c 143 44.794 + 142.957 44.888 140.816 43.102 c 139.562 42.056 l 139.582 38.852 l 139.59 + 37.087 139.672 34.782 139.762 33.724 c 139.922 31.813 139.918 31.798 138.098 + 30.087 c 135.477 27.626 131.059 26.356 131.059 28.067 c 131.059 28.333 +131.547 29.274 132.145 30.161 c 132.742 31.044 133.23 31.907 133.23 32.079 + c 133.234 32.247 133.496 32.876 133.816 33.474 c 134.238 34.263 134.445 + 35.942 134.574 39.626 c 134.691 42.876 134.926 44.962 135.227 45.442 c +135.656 46.13 139.707 47.766 140.977 47.766 c 141.246 47.766 141.938 48.009 + 142.508 48.309 c 143.953 49.059 146.387 48.985 148.055 48.134 c 149.832 + 47.227 150.133 46.317 149.238 44.587 c 148.355 42.888 147.648 39.95 147.613 + 37.852 c 147.582 35.696 148.406 34.516 150.328 33.966 c 152.465 33.356 +152.77 33.04 152.77 31.454 c 152.77 30.411 152.527 29.841 151.801 29.165 + c 150.82 28.255 148.48 27.618 147.629 28.028 c 147.371 28.153 147.473 28.044 + 147.855 27.786 c 149.988 26.349 150.328 25.423 149.152 24.247 c 148.754 + 23.849 148.43 23.282 148.43 22.993 c 148.43 22.477 148.07 21.552 146.543 + 18.102 c 145.828 16.485 l 146.91 15.571 l 147.504 15.067 148.383 14.329 + 148.863 13.931 c 150.176 12.845 153.766 11.083 156.207 10.329 c 162.23 +8.47 164.34 7.106 163.805 5.415 c 163.562 4.653 163.234 4.54 159.645 3.985 + c 156.93 3.567 155.723 3.587 152.227 4.099 c h +142.797 24.309 m 142.523 25.177 141.594 25.141 139.391 24.181 c 137.582 + 23.391 l 141.676 19.454 l 142.344 21.552 l 142.707 22.708 142.914 23.95 + 142.797 24.309 c h +315.25 4.927 m 312.305 6.091 309.629 8.333 309.27 9.942 c 308.648 12.696 + 308.348 16.372 308.375 20.774 c 308.395 23.579 308.402 26.149 308.395 26.485 + c 308.383 26.927 307.93 26.657 306.797 25.544 c 304.602 23.38 302.277 21.86 + 300.727 21.575 c 299.773 21.399 299.355 21.11 299.219 20.528 c 299.113 +20.083 298.762 19.005 298.438 18.13 c 297.465 15.505 297.832 15.165 299.734 + 16.923 c 301.922 18.938 302.586 18.934 302.586 16.919 c 302.586 14.095 +300.703 10.075 298.281 7.72 c 297.199 6.669 296.75 6.661 295.832 7.692 c + 294.453 9.227 293.852 12.157 294.121 15.993 c 294.41 20.114 294.184 21.352 + 293.145 21.352 c 292.25 21.352 291.098 20.782 290.043 19.825 c 288.664 +18.571 287.23 19.645 286.145 22.735 c 285.496 24.583 286.012 25.618 287.711 + 25.884 c 290.102 26.255 293.352 27.255 293.762 27.743 c 293.98 28.009 294.273 + 28.227 294.41 28.227 c 294.547 28.227 295.02 28.606 295.457 29.067 c 295.895 + 29.532 296.527 30.009 296.859 30.134 c 297.781 30.47 300.223 28.536 300.621 + 27.149 c 300.957 25.985 l 302.855 28.532 l 303.902 29.934 304.758 31.239 + 304.758 31.434 c 304.758 31.63 305 32.29 305.301 32.903 c 305.598 33.516 + 306.086 34.52 306.387 35.13 c 306.684 35.743 306.93 36.528 306.93 36.868 + c 306.93 37.212 307.07 37.645 307.242 37.833 c 307.414 38.024 307.973 39.403 + 308.48 40.903 c 308.988 42.399 309.562 44.028 309.758 44.52 c 309.953 45.013 + 310.395 46.474 310.734 47.766 c 311.078 49.063 311.625 50.813 311.949 51.657 + c 312.52 53.153 312.582 53.192 314.184 53.196 c 315.09 53.196 316.027 53.001 + 316.266 52.763 c 316.848 52.177 316.793 50.329 316.156 49.216 c 315.512 + 48.091 315.449 44.372 316.066 43.724 c 316.312 43.458 316.762 42.774 317.059 + 42.196 c 317.359 41.618 318.426 40.282 319.438 39.224 c 320.445 38.165 +321.992 36.438 322.871 35.388 c 325.047 32.786 327.559 30.399 328.117 30.399 + c 328.371 30.399 328.633 30.27 328.699 30.11 c 328.766 29.954 329.719 29.364 + 330.812 28.798 c 333.949 27.177 336.176 25.614 336.363 24.899 c 336.914 + 22.786 335.586 22.224 330.949 22.61 c 325.246 23.087 323.25 23.989 323.223 + 26.099 c 323.211 27.255 321.867 30.399 321.387 30.399 c 321.195 30.399 +321.043 30.641 321.043 30.942 c 321.043 31.239 320.879 31.485 320.68 31.485 + c 320.48 31.485 320.02 31.77 319.656 32.118 c 319.293 32.466 318.602 33.083 + 318.117 33.493 c 317.637 33.903 316.508 35.059 315.613 36.067 c 314.719 + 37.075 313.648 38.075 313.234 38.29 c 312.551 38.645 312.383 38.477 311.355 + 36.438 c 309.703 33.149 309.098 31.524 309.098 30.349 c 309.098 29.337 +309.145 29.309 310.508 29.528 c 311.625 29.708 312.062 29.606 312.633 29.036 + c 313.273 28.395 313.312 28.106 312.992 26.263 c 312.797 25.13 312.723 +24.118 312.828 24.016 c 312.93 23.911 313.723 24.247 314.586 24.755 c 315.449 + 25.266 316.488 25.833 316.895 26.013 c 317.301 26.192 317.852 26.602 318.113 + 26.923 c 318.875 27.841 319.586 27.606 320.156 26.247 c 321.023 24.165 +320.57 21.712 319.312 21.712 c 319.102 21.712 318.875 21.591 318.809 21.442 + c 318.648 21.079 315.371 18.458 315.082 18.458 c 314.953 18.458 314.355 + 17.997 313.754 17.431 c 312.664 16.415 312.66 16.395 313.051 14.278 c 313.27 + 13.102 313.68 11.915 313.961 11.63 c 314.789 10.802 317.961 10.665 319.562 + 11.388 c 321.227 12.138 321.766 13.536 321.766 17.122 c 321.766 18.431 +321.93 19.602 322.129 19.724 c 322.82 20.153 323.934 19.493 324.164 18.524 + c 324.293 17.989 324.52 17.388 324.672 17.188 c 325.281 16.384 326.793 +9.849 326.809 7.962 c 326.824 6.044 326.402 5.669 323.867 5.376 c 319.918 + 4.919 315.816 4.704 315.25 4.927 c h +121.473 6.602 m 120.414 9.708 120.145 12.118 120.258 17.368 c 120.383 22.977 + l 118.77 22.856 l 117.723 22.774 116.785 22.423 116.117 21.86 c 115.547 + 21.38 114.852 20.989 114.574 20.989 c 113.812 20.989 112.613 23.634 112.512 + 25.524 c 112.426 27.153 112.453 27.2 113.789 27.669 c 114.539 27.931 115.84 + 28.251 116.684 28.376 c 119.211 28.759 122.801 30.251 124.078 31.454 c +125.223 32.532 126.121 32.388 127.402 30.927 c 128.809 29.325 128.879 27.759 + 127.621 26.056 c 127.125 25.38 126.715 24.556 126.715 24.22 c 126.715 23.888 + 126.496 22.981 126.227 22.212 c 125.562 20.298 125.199 17.368 125.625 17.368 + c 125.812 17.368 126.469 17.86 127.078 18.454 c 128.398 19.743 129.973 +19.934 129.973 18.806 c 129.973 18.403 129.73 17.485 129.43 16.77 c 129.133 + 16.056 128.887 15.208 128.887 14.884 c 128.883 14.559 128.641 13.829 128.344 + 13.259 c 128.043 12.688 127.801 12.063 127.801 11.872 c 127.801 11.454 +124.668 7.247 123.875 6.602 c 123.57 6.356 122.941 6.153 122.473 6.153 c + 122.008 6.153 121.559 6.356 121.473 6.602 c h +181.875 7.872 m 180.062 12.13 179.805 13.708 180.109 18.638 c 180.562 25.884 + 180.512 26.438 179.473 25.903 c 178.559 25.434 177.449 24.755 176.965 24.364 + c 175.574 23.251 174.926 23.434 173.891 25.224 c 173.34 26.177 172.785 +27.04 172.66 27.141 c 172.535 27.239 172.246 27.856 172.023 28.513 c 171.676 + 29.528 171.715 29.798 172.289 30.372 c 172.656 30.743 173.668 31.153 174.535 + 31.282 c 176.316 31.552 179.082 32.575 183.066 34.442 c 183.906 34.833 +184.887 35.063 185.242 34.95 c 185.996 34.712 188.086 31.653 188.43 30.282 + c 188.625 29.513 188.434 29.122 187.406 28.149 c 186.711 27.497 185.949 + 26.583 185.719 26.126 c 185.199 25.11 184.73 16.278 185.195 16.298 c 185.91 + 16.325 187.492 18.048 189.113 20.559 c 190.293 22.388 191.008 23.165 191.426 + 23.079 c 192.348 22.888 192.082 19.411 190.965 16.966 c 190.09 15.056 188.59 + 12.298 188.234 11.942 c 187.844 11.552 186.426 9.427 186.426 9.231 c 186.426 + 9.118 185.91 8.462 185.281 7.77 c 183.727 6.063 182.633 6.095 181.875 7.872 + c h +57.926 8.548 m 57.348 9.239 56.527 11.497 56.52 12.403 c 56.512 13.173 +57.469 13.575 60.133 13.915 c 62.109 14.169 63.715 14.563 68.691 16.024 +c 72.648 17.184 72.555 17.036 72.473 22.192 c 72.441 24.384 72.375 24.599 + 71.895 24.118 c 71.594 23.817 71.352 23.489 71.352 23.384 c 71.352 23.024 + 67.984 19.54 67.637 19.54 c 66.953 19.54 63.852 22.997 63.441 24.216 c +63.102 25.216 63.125 25.606 63.551 26.259 c 64.004 26.95 64.391 27.063 66.266 + 27.044 c 67.816 27.028 68.645 27.196 69.113 27.626 c 69.48 27.954 69.945 + 28.227 70.145 28.227 c 70.348 28.227 70.789 28.528 71.125 28.899 c 71.664 + 29.493 71.707 30.165 71.488 34.52 c 71.184 40.575 71.41 41.255 73.719 41.255 + c 75.59 41.255 78.469 40.032 78.758 39.114 c 78.875 38.739 78.723 37.802 + 78.41 37.028 c 77.949 35.876 77.867 34.169 77.945 27.493 c 78.043 19.36 + l 78.926 19.458 l 79.414 19.513 79.855 19.602 79.91 19.657 c 80.43 20.177 + 81.168 25.462 81.637 32.024 c 82.121 38.794 82.473 41.677 83.508 47.29 +c 83.766 48.669 84.703 49.302 86.113 49.036 c 88.926 48.509 89.969 47.001 + 88.707 45.29 c 88.18 44.583 87.824 43.364 87.617 41.571 c 87.449 40.102 + 87.145 37.763 86.938 36.368 c 86.73 34.974 86.566 32.778 86.566 31.481 +c 86.57 29.13 l 87.5 30.216 l 89.414 32.446 89.805 32.942 89.805 33.114 +c 89.805 33.212 90.051 33.579 90.352 33.927 c 90.652 34.274 91.355 35.114 + 91.918 35.79 c 93.238 37.384 94.32 37.161 96.156 34.923 c 97.621 33.134 + 97.68 31.735 96.301 31.298 c 95.895 31.165 93.906 29.446 91.887 27.47 c + 89.871 25.493 87.613 23.595 86.875 23.247 c 85.812 22.751 85.5 22.38 85.395 + 21.481 c 85.316 20.856 85.316 20.165 85.391 19.942 c 85.551 19.462 93.125 + 19.423 95.594 19.891 c 96.492 20.063 97.84 20.321 98.59 20.462 c 99.645 + 20.665 100.113 20.579 100.66 20.087 c 102.062 18.817 103.727 14.122 103.496 + 12.095 c 103.383 11.095 103.289 11.04 101.746 11.079 c 100.852 11.102 98.902 + 11.548 97.418 12.075 c 94.828 12.989 94.406 13.028 87.285 13.016 c 82.078 + 13.005 79.203 12.845 77.684 12.477 c 76.488 12.188 74.68 11.95 73.668 11.946 + c 70.68 11.938 63.766 10.274 60.375 8.747 c 58.289 7.809 58.52 7.829 57.926 + 8.548 c h +11.016 28.677 m 10.027 30.2 10.016 30.266 10.125 35.462 c 10.184 38.349 + 10.039 42.02 9.805 43.622 c 9.43 46.177 9.449 46.677 9.977 47.692 c 10.434 + 48.583 10.805 48.845 11.559 48.825 c 13.102 48.782 15.043 47.958 15.441 + 47.177 c 15.754 46.567 15.988 46.513 17.168 46.794 c 18.238 47.048 18.73 + 46.985 19.465 46.505 c 20.871 45.583 20.414 44.153 17.934 41.712 c 16.324 + 40.126 15.863 39.415 15.711 38.278 c 15.52 36.849 l 16.566 37.825 l 18.434 + 39.563 20.707 40.962 21.301 40.735 c 21.746 40.563 21.824 40.177 21.656 + 38.95 c 21.469 37.587 20.539 35.29 19.953 34.739 c 19.844 34.641 19.398 + 34.091 18.957 33.516 c 16.648 30.509 13.129 27.149 12.281 27.141 c 12.133 + 27.141 11.562 27.833 11.016 28.677 c h +25.684 31.841 m 24.75 32.653 23.625 34.032 23.191 34.907 c 22.434 36.415 + 22.41 36.766 22.676 41.681 c 22.832 44.532 22.977 48.329 23 50.118 c 23.023 + 51.911 23.172 53.579 23.332 53.829 c 23.781 54.52 25.348 54.368 26.758 +53.497 c 28.023 52.712 l 27.809 49.903 l 27.59 47.091 l 28.754 47.481 l +29.395 47.692 30.172 48.091 30.488 48.36 c 31.309 49.067 32.543 48.966 32.98 + 48.153 c 33.574 47.04 33.41 44.423 32.695 43.606 c 31.887 42.681 29.879 + 41.255 29.387 41.255 c 29.18 41.255 29.012 41.11 29.012 40.934 c 29.012 + 40.759 28.523 40.415 27.926 40.169 c 26.965 39.77 26.84 39.544 26.844 38.224 + c 26.852 36.138 27.227 35.72 29.117 35.681 c 31.188 35.634 31.945 36.306 + 32.762 38.895 c 33.109 39.993 33.586 40.888 33.824 40.88 c 35.031 40.849 + 36.609 38.337 36.609 36.45 c 36.609 35.759 36.859 34.489 37.164 33.63 c + 37.688 32.141 37.676 32.028 36.973 31.321 c 36.32 30.665 35.703 30.567 +31.809 30.474 c 27.383 30.368 l h +296.914 34.356 m 294.777 35.325 294.484 36.071 294.785 39.774 c 295.031 + 42.79 295.594 44.161 296.578 44.141 c 296.945 44.134 298.684 41.708 300.68 + 38.423 c 301.555 36.985 301.719 35.466 301.125 34.352 c 300.637 33.446 +298.918 33.446 296.914 34.356 c h +124.816 38.591 m 122.375 39.829 l 122.375 42.13 l 122.375 45.54 123.875 + 48.489 125.613 48.489 c 126.07 48.489 126.535 48.13 126.781 47.587 c 127.008 + 47.087 127.332 46.681 127.496 46.681 c 127.664 46.681 127.801 46.438 127.801 + 46.138 c 127.801 45.841 127.934 45.595 128.098 45.595 c 128.418 45.595 +129.484 43.595 130.191 41.673 c 130.938 39.638 129.73 37.259 127.984 37.321 + c 127.586 37.337 126.16 37.907 124.816 38.591 c h +185.168 39.817 m 183 40.587 182.699 41.337 183.145 44.864 c 183.723 49.47 + 185.5 51.028 186.973 48.22 c 187.363 47.474 187.773 46.782 187.879 46.681 + c 189.934 44.794 191.742 41.169 191.312 39.813 c 191.113 39.184 190.789 + 39.091 189.023 39.13 c 187.895 39.157 186.16 39.466 185.168 39.817 c h +368.988 42.251 m 365.379 44.106 364.602 48.188 367.129 52.016 c 367.988 + 53.321 369.418 53.618 369.754 52.563 c 370.152 51.298 371.145 49.028 371.375 + 48.852 c 371.504 48.755 371.977 47.817 372.426 46.77 c 374.074 42.923 372.277 + 40.559 368.988 42.251 c h +368.988 42.251 m f +Q Q +showpage +%%Trailer +end restore +%%EOF diff --git a/Master/texmf-dist/doc/latex/hithesis/figures/golfer.eps b/Master/texmf-dist/doc/latex/hithesis/figures/golfer.eps new file mode 100644 index 00000000000..4d09242de93 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/figures/golfer.eps @@ -0,0 +1,1398 @@ +%!PS-Adobe-2.0 EPSF-1.2 +%%Creator:Adobe Illustrator(TM) 1.0b2- +%%Title:golfer art+ +%%CreationDate:1/6/87 9:32 AM +%%DocumentFonts:Helvetica-Bold +%%BoundingBox: 13 37 571 720 +%%TemplateBox:0 -48 576 672 +%%EndComments +100 dict begin +/q{bind def}bind def +/Q{load def}q +/x{exch def}q +/X/def Q +/g{/_g x/p{_g setgray}X}q +/G{/_G x/P{_G setgray}X}q +/k{/_b x/_g x/_r x/p{_r _g _b setrgbcolor}X}q +/K{/_B x/_G x/_R x/P{_R _G _B setrgbcolor}X}q +/d/setdash Q +/i/setflat Q +/j/setlinejoin Q +/J/setlinecap Q +/M/setmiterlimit Q +/w/setlinewidth Q +/_C{.25 sub round .25 add}q +/_c{transform _C exch _C exch itransform}q +/c{_c curveto}q +/C/c Q +/v{currentpoint 6 2 roll _c curveto}q +/V/v Q +/y{_c 2 copy curveto}q +/Y/y Q +/l{_c lineto}q +/L/l Q +/m{_c moveto}q +/_e[]X +/_E{_e length 0 ne{gsave 1 g 0 G 1 i 0 J 0 j .5 w 10 M[]0 d +/Helvetica-Bold 24 0 0 1 z +[0.966 0.259 -0.259 0.966 +_e 0 get _e 2 get add 2 div _e 1 get _e 3 get add 2 div]a +(ERROR: can't fill a path)t T grestore}if}q +/n/newpath Q +/N/newpath Q +/F{p{fill}stopped{/_e[pathbbox]X n _E}if}q +/f{closepath F}q +/S{P stroke}q +/s{closepath S}q +/B{gsave F grestore S}q +/b{closepath B}q +/u{}q +/U{}q +/_s/ashow Q +/_S{(?)exch{2 copy 0 exch put pop dup true charpath currentpoint _m setmatrix +stroke _M setmatrix moveto 3 copy pop rmoveto}forall pop pop pop n}q +/_A{_a moveto _t exch 0 exch}q +/_L{0 _l neg translate _M currentmatrix pop}q +/_w{dup stringwidth exch 3 -1 roll length 1 sub _t mul add exch}q +/_z[{0 0}bind{dup _w exch neg 2 div exch neg 2 div}bind +{dup _w exch neg exch neg}bind]X +/z{_z exch get/_a x/_t x/_l x exch findfont exch scalefont setfont}q +/_d{matrix currentmatrix X}q +/_D{/_m _d gsave concat/_M _d}q +/e{_D p/t{_A _s _L}X}q +/r{_D P/t{_A _S _L}X}q +/a{_D/t{dup p _A _s P _A _S _L}X}q +/o{_D/t{pop _L}X}q +/T{grestore}q +/Z{findfont begin currentdict dup length dict begin +{1 index/FID ne{X}{pop pop}ifelse}forall/FontName exch X dup length 0 ne +{/Encoding Encoding 256 array copy X 0 exch{dup type/nametype eq +{Encoding 2 index 2 index put pop 1 add}{exch pop}ifelse}forall}if pop +currentdict dup end end/FontName get exch definefont pop}q +n +%%EndProlog +u +0.9 g +0 G +1 i +0 J +0 j +1 w +10 M +[]0 d +%%Note: +15.815 40.248 m +567.815 40.002 L +567.748 716.565 L +15.998 716.81 L +15.815 40.248 L +b +U +1 g +285.313 40 m +567.688 40.125 L +567.812 78.375 L +285.312 78.25 L +285.313 40 L +b +0 g +175.5 163 m +180.007 163 173.738 169.081 171.75 168.75 c +174.75 169.25 176.25 169.5 174.5 171.25 C +178 171.25 176.349 173.783 175 176.75 c +173.75 179.5 170.75 182.25 168.25 182 C +165.5 181.25 167.622 182.838 165.25 186 c +164.5 187 164.75 187.5 161.75 186.75 c +158.75 186 163.25 190 156.75 190 c +150.25 190 148.5 189 145.5 186 c +142.5 183 139.75 183.75 139.5 182.5 c +139.25 181.25 139.5 176.75 138.75 175.5 c +138 174.25 136.75 174.25 136.25 178 c +135.75 181.75 140.25 182.25 134 187 C +135.75 190.75 134.5 191.75 131 193.5 C +131 200 129.202 203.364 119.5 208.5 c +115.25 210.75 107 212.75 104.75 208.75 c +102.5 204.75 103 206.5 96.5 205.75 c +90 205 87.25 202.5 86.5 197.75 c +85.75 193 82.75 195 79 194.75 c +75.25 194.5 77 192.75 77.25 191.75 c +77.5 190.75 75.25 192.5 71.5 192 c +67.75 191.5 64.25 185.5 69.5 180.75 c +74.75 176 66.5 180.75 64.25 182.25 c +62 183.75 60.5 181.75 61 180.25 c +61.5 178.75 58.75 180.75 57.5 180.75 c +56.25 180.75 51.008 180.188 52 172.25 c +52.25 170.25 51.5 170.5 49.75 169.25 c +48 168 45.75 164.25 48.5 158.75 c +51.25 153.25 49 150 48 145.5 c +47 141 48 138.25 51.25 137.25 c +54.5 136.25 54 133.791 54 130.75 C +57 130.5 59 129.25 58.75 124.5 C +62.25 124.5 61.75 126.75 62.5 130 c +63.25 133.25 65.75 129 66.25 127 c +66.75 125 67.5 125 72 125 C +74.75 116.25 74.75 120.5 75.25 117.25 C +80 117.5 79.5 116.75 83.25 113.75 c +87 110.75 88.25 115.5 92 118.5 c +95.75 121.5 94.25 122.75 96.25 118.75 c +98.25 114.75 98.5 119 101.5 119.25 c +104.5 119.5 101 115.75 105.25 114.5 c +109.5 113.25 105 113.75 103.5 111.25 c +102 108.75 95 103.5 101.75 101.5 c +108.5 99.5 103.5 99.75 94.75 99.5 c +86 99.25 73.75 87.5 97.25 73.25 C +117.25 53.25 117.25 53.5 v +117.25 53.75 175.25 163 175.5 163 c +f +1 J +0.2 w +389.709 210.076 m +511.826 210.076 l +S +394.709 212.461 m +516.826 212.461 l +S +415.459 215.112 m +537.576 215.112 l +S +399.709 217.762 m +521.826 217.762 l +S +402.459 222.799 m +524.576 222.799 l +S +402.709 225.45 m +524.826 225.45 l +S +392.959 227.851 m +515.076 227.851 l +S +400.691 232.856 m +522.809 232.856 l +S +388.191 235.241 m +510.309 235.241 l +S +393.941 237.892 m +516.059 237.892 l +S +393.441 240.292 m +515.559 240.292 l +S +396.191 242.928 m +518.309 242.928 l +S +386.441 245.579 m +508.559 245.579 l +S +393.191 248.23 m +515.309 248.23 l +S +414.191 250.631 m +536.309 250.631 l +S +397.95 252.973 m +520.067 252.973 l +S +398.7 255.358 m +520.817 255.358 l +S +400.7 258.009 m +522.817 258.009 l +S +384.45 260.659 m +506.567 260.659 l +S +380.7 265.696 m +502.817 265.696 l +S +379.95 268.347 m +502.067 268.347 l +S +386.7 270.748 m +508.817 270.748 l +S +394.433 275.752 m +516.55 275.752 l +S +381.933 278.138 m +504.05 278.138 l +S +379.433 280.789 m +501.55 280.789 l +S +383.183 283.189 m +505.3 283.189 l +S +370.433 285.825 m +492.55 285.825 l +S +382.433 288.476 m +504.55 288.476 l +S +356.183 291.127 m +478.3 291.127 l +S +372.433 293.277 m +494.55 293.277 l +S +361.866 296.006 m +483.984 296.006 l +S +365.616 298.406 m +487.734 298.406 l +S +366.866 301.042 m +488.984 301.042 l +S +346.866 303.693 m +468.984 303.693 l +S +338.616 306.344 m +460.734 306.344 l +S +330.866 308.494 m +452.984 308.494 l +S +301.575 344.342 m +423.692 344.342 l +S +314.075 346.728 m +436.192 346.728 l +S +318.325 349.378 m +440.442 349.378 l +S +312.075 352.029 m +434.192 352.029 l +S +327.325 357.065 m +449.442 357.065 l +S +327.575 359.716 m +449.692 359.716 l +S +317.825 362.117 m +439.942 362.117 l +S +335.558 367.122 m +457.675 367.122 l +S +313.058 369.507 m +435.175 369.507 l +S +318.808 372.158 m +440.925 372.158 l +S +317.579 404.674 m +439.696 404.674 l +S +322.312 409.179 m +444.429 409.179 l +S +323.812 412.065 m +445.929 412.065 l +S +329.562 414.715 m +451.679 414.715 l +S +329.062 417.116 m +451.179 417.116 l +S +331.812 419.752 m +453.929 419.752 l +S +322.062 422.402 m +444.179 422.402 l +S +328.812 425.053 m +450.929 425.053 l +S +349.812 427.454 m +471.929 427.454 l +S +333.571 429.796 m +455.688 429.796 l +S +334.321 432.182 m +456.438 432.182 l +S +336.321 434.832 m +458.438 434.832 l +S +320.071 437.483 m +442.188 437.483 l +S +316.321 442.519 m +438.438 442.519 l +S +315.571 445.17 m +437.688 445.17 l +S +322.321 447.571 m +444.438 447.571 l +S +330.054 452.576 m +452.171 452.576 l +S +317.554 454.961 m +439.671 454.961 l +S +315.054 457.612 m +437.171 457.612 l +S +318.804 460.012 m +440.921 460.012 l +S +306.054 462.648 m +428.171 462.648 l +S +300.054 465.299 m +422.171 465.299 l +S +291.804 467.95 m +413.921 467.95 l +S +308.054 470.101 m +430.171 470.101 l +S +260.834 543.511 m +382.951 543.511 l +S +246.066 548.016 m +368.184 548.016 l +S +256.066 550.901 m +378.184 550.901 l +S +253.566 553.552 m +375.684 553.552 l +S +230.316 555.952 m +352.434 555.952 l +S +244.566 558.588 m +366.684 558.588 l +S +238.566 561.239 m +360.684 561.239 l +S +230.316 563.89 m +352.434 563.89 l +S +216.566 565.541 m +338.684 565.541 l +S +104.443 572.01 m +226.575 572.209 l +S +98.682 567.48 m +220.814 567.68 l +S +91.688 565.11 m +213.82 565.31 l +S +97.192 561.955 m +219.324 562.155 l +S +73.943 559.517 m +196.075 559.717 l +S +88.199 556.904 m +210.331 557.103 l +S +82.203 554.243 m +204.335 554.443 l +S +73.956 551.578 m +196.088 551.778 l +S +73.707 549.405 m +195.839 549.605 l +S +85.302 539.953 m +207.434 540.152 l +S +79.541 535.423 m +201.673 535.623 l +S +72.547 533.053 m +194.679 533.253 l +S +78.051 529.898 m +200.183 530.098 l +S +54.802 527.46 m +176.934 527.66 l +S +69.058 524.847 m +191.19 525.046 l +S +63.061 522.186 m +185.194 522.385 l +S +54.815 519.521 m +176.947 519.721 l +S +54.566 517.348 m +176.698 517.547 l +S +u +189.475 196.879 m +311.592 196.879 l +S +176.975 199.265 m +299.092 199.265 l +S +174.475 201.916 m +296.592 201.916 l +S +178.225 204.316 m +300.342 204.316 l +S +165.475 206.952 m +287.592 206.952 l +S +177.475 209.603 m +299.592 209.603 l +S +155.725 212.254 m +277.842 212.254 l +S +167.475 214.404 m +289.592 214.404 l +S +156.908 217.133 m +279.026 217.133 l +S +144.658 219.533 m +266.776 219.533 l +S +161.908 222.169 m +284.026 222.169 l +S +153.908 224.82 m +276.026 224.82 l +S +163.658 226.971 m +285.776 226.971 l +S +152.408 229.121 m +274.526 229.121 l +S +145.925 233.316 m +268.042 233.316 l +S +157.675 235.466 m +279.792 235.466 l +S +147.108 238.195 m +269.226 238.195 l +S +134.858 240.595 m +256.976 240.595 l +S +137.608 243.231 m +259.726 243.231 l +S +144.108 245.882 m +266.226 245.882 l +S +153.858 248.033 m +275.976 248.033 l +S +155.108 231.183 m +277.226 231.183 l +S +103.425 247.816 m +225.542 247.816 l +S +100.175 249.966 m +222.292 249.966 l +S +89.608 252.695 m +211.726 252.695 l +S +77.358 255.095 m +199.476 255.095 l +S +U +u +1 g +0 J +1 w +120.001 389.999 m +170.811 344.713 248.714 349.191 294.001 400.001 c +339.287 450.811 334.809 528.714 283.999 574.001 c +233.189 619.287 155.286 614.809 109.999 563.999 c +64.713 513.189 69.191 435.286 120.001 389.999 c +f +202 482 m +F +U +u +258 302 m +306.6 267.759 373.759 279.4 408 328 c +442.241 376.6 430.6 443.759 382 478 c +333.4 512.241 266.241 500.6 232 452 c +197.759 403.4 209.4 336.241 258 302 c +f +320 390 m +F +U +u +196 376 m +252.332 345.072 323.072 365.668 354 422 c +384.928 478.332 364.332 549.072 308 580 c +251.668 610.928 180.928 590.332 150 534 c +119.072 477.668 139.668 406.928 196 376 c +f +252 478 m +F +U +u +106 257 m +170.064 231.595 242.595 262.936 268 327 c +293.405 391.064 262.064 463.595 198 489 c +133.936 514.405 61.405 483.064 36 419 c +10.595 354.936 41.936 282.405 106 257 c +f +152 373 m +F +U +u +366.001 122 m +415.706 97.7 475.7 118.296 500 168.001 c +524.3 217.706 503.704 277.7 453.999 302 c +404.294 326.3 344.3 305.704 320 255.999 c +295.7 206.294 316.296 146.3 366.001 122 c +f +410 212 m +F +U +u +227.999 198 m +267.763 185.85 309.849 208.236 322 247.999 c +334.15 287.763 311.764 329.849 272.001 342 c +232.237 354.15 190.151 331.764 178 292.001 c +165.85 252.237 188.236 210.151 227.999 198 c +f +250 270 m +F +U +0 g +15.75 71.25 m +24.25 82.75 24.75 84.75 27.75 82.25 c +30.75 79.75 31.75 81.25 32.75 82.75 c +33.75 84.25 30.75 86.75 35.75 88.75 c +40.75 90.75 41.25 91.75 43.25 89.75 c +45.25 87.75 39.25 89.25 50.25 88.75 c +61.25 88.25 70.25 81.75 74.25 75.25 c +78.25 68.75 77.75 67.25 75.25 63.25 c +72.75 59.25 68.25 56.75 72.25 57.25 c +76.25 57.75 75.75 60.75 77.75 56.75 c +79.75 52.75 80.25 51.25 79.25 49.25 c +78.25 47.25 74.25 46.75 81.25 46.25 c +88.25 45.75 91.75 37.557 91.75 40.25 c +15.752 40.248 l +15.75 71.25 l +f +340.75 55.5 m +F +u +u +3 w +280.774 44.223 m +567.893 44.223 l +S +280.774 48.728 m +567.893 48.728 l +S +280.774 53.734 m +567.893 53.734 l +S +U +u +280.774 58.739 m +567.893 58.739 l +S +280.774 63.245 m +567.893 63.245 l +S +280.774 68.251 m +567.893 68.251 l +S +U +u +280.774 73.257 m +567.893 73.257 l +S +280.774 78.263 m +567.893 78.263 l +S +U +U +0.8 g +0.2 w +243 252 m +323 235 l +346 273 l +368 248 l +376 247 376 248 V +377 174 380.5 121 330.5 40 C +90.5 40 91.5 40 V +138.5 129 163 162 214 200 C +236 229 234.527 240.11 238 254 c +240 262 243 252 y +b +0.5 g +359.5 485 m +389.267 485 402.5 486.25 415.75 489 c +429 491.75 435 493.25 439 493.5 c +443 493.75 490.398 537.797 502.5 562 c +507 571 514.5 577 517.5 579.5 c +520.5 582 501.5 591 y +428 512 428 512.5 v +428 513 356.5 510 356 509.5 c +355.5 509 351 488 y +359 485 359.5 485 v +b +0.7 g +370 496.5 m +368 480.5 365.5 472.5 364.5 471.5 C +329.5 476.5 l +323.5 489.5 l +370 496.5 l +b +0.5 g +352.75 494 m +380 493.25 399.626 496.75 407.5 499 c +418 502 424.586 497.135 432.75 505.5 c +453 526.25 473.5 544.5 496.5 586.5 C +473.5 590 473.5 590.5 V +456 571.5 443 563.5 434 558 c +425 552.5 416 544 408.5 534.5 C +399 533 379.5 537.5 364 537.5 c +348.5 537.5 352.75 494 y +b +1 g +500 583 m +500.5 577.098 517 573.5 520.5 572 c +524 570.5 526.353 568.989 526.5 579 c +526.675 590.992 541 586 539 624 C +538.5 624 506 628 y +499.958 583.498 500 583 v +b +0 g +1 J +3 w +562 629 m +343 645 217 644 77 601 C +52 576 L +59.5 562 80.132 560.877 87 589 c +89.513 599.292 87 597 101 601 c +108.323 603.092 265 654 561 617 C +562 629 l +f +1 G +0 J +0.7 w +305 634 m +391.5 636.5 415 635 473 632 c +S +0.5 w +213 626.5 m +153.5 619 125.925 611.699 90.75 602.5 c +78.654 599.337 82.567 597.884 82.5 592 c +82.395 582.717 73.75 571 59 572.5 c +S +1 g +0 G +1 w +73 595.25 m +79.25 592.5 76.25 574.75 57.25 580 C +73 595.25 l +f +0.5 g +0.2 w +312 574.25 m +311.25 570.5 310.687 571.687 306.187 569.187 C +307.687 564.187 311.106 565.66 304.5 561.5 c +302.594 560.299 305.598 556.561 305.75 555.5 c +306.038 553.485 304.629 548.098 297 548.5 c +292.25 548.75 255.5 536 y +229.5 608.5 l +224 650 224.5 650 v +248.101 650 273.345 678.918 298 655.5 c +324.857 629.99 316.981 613.501 316.75 612.875 c +313.346 603.644 313.238 604.937 314.75 597.375 c +316.88 586.725 317.016 588.834 318.625 584.75 C +320.25 581.875 318.625 580.375 y +316.689 578.236 313.081 579.809 310.375 579 c +307.013 577.994 312 574.25 y +B +0 g +0.5 w +288.5 456 m +S +0.2 w +211 511 m +194.5 518.5 187 520.5 170.5 500 C +154.5 498.5 149.5 501 131.5 479.5 C +151 477.5 140 475 161 460 c +182 445 190.5 436.5 212 461 C +224.5 458 229 454.5 238.5 447 C +238 446.5 237 500.5 y +211 511 l +f +1 g +207.5 526.5 m +206 514.5 204 506 236 490.5 C +242.5 509.5 l +207.5 526.5 l +b +0 g +1 w +294.464 627.589 m +288.571 618.522 284.821 617.313 280 615.5 c +275.179 613.686 271.429 605.224 277.857 587.089 C +274.107 586.485 275.179 585.88 275.714 582.858 C +271.429 599.179 270.357 606.433 259.643 609.455 c +248.929 612.477 245.714 589.507 247.321 566.537 C +228.572 554.448 L +224.639 578.851 235.956 576.38 212.5 600.992 c +194.17 620.226 195.893 654.791 225.357 658.418 C +223.214 667.485 233.929 678.97 259.107 677.761 c +284.286 676.552 281.071 667.485 Y +302.5 667.485 334.964 665.942 301.429 614.895 C +306.25 639.679 303.571 643.306 296.607 646.933 C +299.286 634.239 294.464 627.589 y +f +0.7 g +0.2 w +207.5 524.5 m +214.75 519.25 241.5 509 y +239 504.5 l +232 503 214.5 508.75 206.75 519 C +207 522.5 207.5 524.5 y +b +1 g +298 546.5 m +272.625 574.625 248.5 596 195.5 568.5 C +196.26 524.417 214.492 504.333 239.5 510.5 C +298 546.5 l +b +0.8 g +351.5 542 m +367 540 L +358.5 509.5 357 489.5 357 482 C +323.5 482.5 295.5 485.5 284.5 477.5 c +298.5 468.5 l +299 457 l +270.5 451 l +238.5 483.5 l +241 513.5 l +250.5 538 252.5 547.5 282.5 550 C +306.251 550 334.454 541.702 343.687 542.187 C +342.576 538.175 346.737 538.055 351.5 542 c +b +0 g +1 w +333.25 484.75 m +343.25 458.25 371.5 466 349 418.5 C +359 348.5 378 357 363 336 C +358.5 333 359 333 v +359.5 333 353 328 359 327.5 c +365 327 371 316.5 373.5 253.5 C +381 245.5 l +371 221 371 220.5 V +360.5 247 358 253 351 261.5 C +340 238 331.5 220.5 328.5 211.5 C +301 229.5 265 250 232.5 244.5 C +247.5 287 246 299.5 275 320.5 C +270 331.5 268.689 334.634 265.75 336.25 c +255.75 341.75 261.891 340.771 251 375 c +247.5 386 249.5 384 255.5 399 C +252.5 397 253.5 401 253.5 402.5 c +253.5 404 252.057 400.023 251 402.5 c +235 440 219.5 489.5 249.5 534 C +238.5 503.5 242.102 477.13 260 463 c +269.5 455.5 278.75 453.25 291 457.25 C +297.5 461 299.549 465.787 282 476.75 C +292.5 487.5 333.25 484.75 y +f +457.25 576.25 m +454.936 574.233 453.51 595.217 479.25 583 C +495.651 573.321 495.931 560.263 482.5 560.5 C +486.25 566 491.682 565.465 478.5 575 c +463.444 585.891 460.318 578.924 457.25 576.25 c +f +1 g +460.75 581.5 m +463.387 583.699 467.528 583.937 470.5 583.375 c +473.752 582.76 473.75 581.75 Y +461.735 583.841 458.891 579.95 460.75 581.5 c +f +0 g +310.393 647.785 m +329.089 651.66 328.75 623.692 320.178 607.976 C +319.107 621.274 316.428 636.386 310.536 635.782 c +304.643 635.177 310.393 647.785 y +f +284.286 663.858 m +286.964 677.157 280.536 689.246 281.071 689.246 C +289.107 677.761 288.036 665.672 y +284.286 663.858 l +f +0.2 w +274.643 683.201 m +278.929 678.97 280 668.694 279.464 665.672 c +S +276.25 686.224 m +284.393 677.036 283.75 662.045 y +S +1 w +297.679 661.44 m +312.602 661.44 312.143 677.157 310.536 680.784 C +308.929 672.321 305.179 666.276 292.857 664.463 C +297.679 661.44 l +f +0.2 w +295 661.44 m +298.75 666.276 302.5 675.343 294.464 683.201 c +S +300.357 681.992 m +304.265 669.255 303.814 670.807 292.321 656.604 c +S +311.821 649.078 m +321.464 649.078 330.571 646.66 329.5 627.921 c +S +307.536 650.892 m +316.268 651.33 319.057 653.025 326.821 646.056 c +330.446 642.802 331.1 637.618 331.107 637.593 c +S +304.643 665.067 m +305.629 663.874 321.031 667.072 321.304 651.569 c +S +0.5 w +311.071 639.679 m +317.893 638.968 312.696 617.332 v +S +1 w +313.375 612.875 m +315.455 614.262 313.5 617.375 297.125 615.375 C +310.375 616.625 311.875 611.875 313.375 612.875 c +f +1 g +308.5 604.875 m +309.833 600.875 309.125 601.25 307.375 599 C +302.25 600.625 303.25 599.875 299 602.5 C +304.25 604.75 308.375 605.25 308.5 604.875 c +f +0 g +307.5 604.437 m +305.463 602.811 305.481 601.49 307.375 598.937 C +309.261 601.307 309.489 602.172 308.562 605.062 C +308.562 604.937 308.191 604.989 307.5 604.437 c +f +0.2 w +305.625 583.75 m +304.687 582.562 306.5 579.375 308.875 579.75 c +S +1 w +311.125 574.5 m +310.25 573.898 310 573.437 304.937 569.312 C +306.229 564.611 308.063 564.014 308.312 564.562 C +309.775 566.476 307.663 569.565 306.687 569.75 C +311.812 571.75 311.625 572.5 312 574.25 C +311.687 574.75 311.176 574.535 311.125 574.5 c +f +298.625 603 m +302 600.437 304.294 599.524 307.812 598.937 c +308.187 598.875 308.562 598.5 308.687 597.875 c +S +297.5 602.25 m +299.939 602.851 307.687 603.062 311.75 607.812 C +307.812 606 297.011 602.129 297.5 602.25 c +f +213.5 576.125 m +218.674 549.92 230.862 532.355 245.5 526.5 C +243.75 514.5 209.75 494.25 195.5 568.5 C +203.75 572.25 213.347 576.901 213.5 576.125 c +f +0.2 w +343.375 541.75 m +333.375 534.75 318.25 525.5 312 521.25 c +S +351.562 541.937 m +337.936 530.579 327.2 525.581 313.25 517.75 c +S +0.3 w +312.75 495 m +291.75 483.5 276.25 476 274.25 466 c +S +0.5 w +229 580.75 m +235.5 571 241.25 554.75 245.75 528 c +S +1 w +235 581 m +246 555.75 246.75 537.75 245.75 526 C +252.125 560.5 243.75 567.75 239.75 581.5 C +240 581.5 237 581.75 235 581 C +f +0.7 g +0.2 w +248.625 580.5 m +253.169 564.605 256.75 553.75 250.25 535.75 C +257.5 552.75 259.125 558.937 252.875 579.687 C +251.029 580.149 248.517 580.879 248.625 580.5 c +b +0 g +1 w +258.25 577.75 m +262.047 567.879 262.5 552.5 259.25 544.25 C +267.75 548.25 275 549.75 278.25 549.75 C +281.75 555.25 282.75 556.75 279.5 565.25 C +270.06 573.13 257.909 578.635 258.25 577.75 c +f +207.5 524.5 m +F +207.25 514.75 m +207.185 514.86 228.75 497.5 238 500.75 C +236 494.5 l +225 498 213.924 503.454 207.25 514.75 c +f +1 g +0.2 w +191 516 m +175.472 497.418 168.5 492 171.5 453 C +185 443.5 189 443.5 200 450.5 C +186.5 469.5 182 491 198.5 515.5 C +194.5 516 191.339 516.406 191 516 c +b +201 515 m +194 499 187 484 203.5 453 C +206.5 455 211.5 460.5 212 461 C +203.5 480.5 193.5 501.5 206 510.5 C +205 499.5 210.5 490.5 232.5 473.5 C +232.5 483 231.5 482.5 233 492 C +221 498 210 505 208 512.5 C +201 515 l +b +0 g +1 G +0.5 w +268 442.5 m +253.5 402.5 l +S +269.5 435.5 m +258.5 407 258.5 407.5 v +S +0.5 G +0.4 w +293.5 480.5 m +297.5 463.5 298.5 460.5 289 445.5 c +S +1 G +1 J +0.3 w +349.125 418.125 m +338.393 403.978 348.387 416.158 341.625 408.875 c +S +u +1 g +0 G +0 J +0.2 w +336.038 340.015 m +338.267 329.694 L +342.937 338.843 L +340.707 349.164 L +336.038 340.015 L +b +339.487 339.429 m +B +U +u +328.791 340.569 m +331.562 330.38 L +335.743 339.762 L +332.972 349.952 L +328.791 340.569 L +b +332.267 340.166 m +B +U +u +321.758 340.67 m +325.133 330.664 L +328.746 340.28 L +325.37 350.286 L +321.758 340.67 L +b +325.252 340.475 m +B +U +u +314.504 340.97 m +317.88 330.964 L +321.492 340.58 L +318.117 350.586 L +314.504 340.97 L +b +317.998 340.775 m +B +U +u +u +307.24 340.468 m +311.982 331.033 L +314.214 341.059 L +309.473 350.494 L +307.24 340.468 L +b +310.727 340.764 m +B +U +u +300.016 339.751 m +304.757 330.316 L +306.99 340.342 L +302.249 349.777 L +300.016 339.751 L +b +303.503 340.047 m +B +U +U +u +u +292.985 339.2 m +298.349 330.104 L +299.903 340.258 L +294.54 349.353 L +292.985 339.2 L +b +296.444 339.729 m +B +U +u +285.826 338 m +291.189 328.904 L +292.744 339.057 L +287.38 348.153 L +285.826 338 L +b +289.285 338.529 m +B +U +U +u +278.742 336.229 m +285.413 328.042 L +285.423 338.314 L +278.753 346.501 L +278.742 336.229 L +b +282.083 337.272 m +B +U +u +272.228 332.392 m +279.743 324.974 L +278.644 335.186 L +271.13 342.604 L +272.228 332.392 L +b +275.437 333.789 m +B +U +0 g +1 G +1 w +266.25 335.5 m +276.25 351.5 284.659 350 343 350 c +364 350 363 336 y +S +271 321 m +294 332 309 335 362 324 c +S +u +1 g +0 G +0.2 w +350.823 325.912 m +364.33 322.302 L +361.658 347.078 L +348.151 350.689 L +350.823 325.912 L +b +356.24 336.495 m +B +U +0 g +1 w +274 347.5 m +281.5 351.5 280.229 357.581 311 338 c +316.5 334.5 322.5 338 351 357.5 C +282 360 l +274 347.5 l +f +1 G +0.5 w +269.25 355.75 m +277.75 353.25 284.25 352.5 288.75 349.75 c +S +353.25 358.25 m +347.25 354 345.5 353.5 339.75 349.5 c +S +0.3 w +355.25 272.75 m +359.75 281.5 361.25 285 363.25 290.75 c +S +0.5 G +0.5 w +354 219 m +339 195 327 176 317 166 c +S +323 197 m +310 150 308 135 235 48 c +S +1 w +241 241.5 m +232 227.5 215.231 198.443 215 198 c +192.581 155 178 110 164 71 c +S +0 G +0.2 w +265.394 600.822 m +263.576 606.114 262.122 612.994 253.035 607.173 C +250.126 603.468 249.763 601.704 249.763 596.589 c +249.763 591.473 254.307 592.179 257.76 587.24 c +261.213 582.301 266.484 579.302 267.029 588.475 c +S +0.3 g +260.668 605.409 m +262.486 601.352 261.94 599.941 257.578 597.824 c +253.216 595.707 257.76 591.473 260.305 592.355 c +262.849 593.237 263.394 592.532 264.303 591.65 c +265.212 590.768 266.666 591.826 264.667 594.119 c +262.667 596.413 259.759 593.943 261.032 597.471 c +262.304 600.999 260.668 605.409 y +b +0 g +257.578 606.644 m +254.125 605.056 251.58 604.174 251.58 598.177 c +251.58 592.179 258.487 590.415 259.214 588.651 c +S +u +1 g +257.397 584.594 m +258.601 581.671 262.019 580.25 265.03 581.419 c +268.041 582.588 269.506 585.905 268.302 588.827 c +267.097 591.75 263.679 593.172 260.668 592.003 c +257.657 590.833 256.192 587.516 257.397 584.594 c +b +262.849 586.711 m +B +U +u +0.2 g +1 w +258.487 586.358 m +263.213 582.477 L +267.211 587.063 L +262.486 590.944 L +258.487 586.358 L +f +262.849 586.711 m +F +U +0 g +309.25 579.875 m +310.75 580.5 313.25 583.125 314.625 581 c +F +1 g +307.964 565.926 m +307.88 566.015 306.794 566.513 307.22 566.682 c +307.647 566.851 307.68 566.599 307.935 566.639 C +307.924 566.13 307.971 566.31 307.964 565.926 c +f +510 104 m +509.564 104.895 511.5 89 495.5 74.5 C +495.5 68 l +506 79 518.582 86.358 510 104 c +f +0 g +0.2 w +403.75 534.25 m +413.25 533.75 415.75 534.25 417.75 534.75 c +S +1 G +0.3 w +538.5 629 m +542 625 547.5 620 y +S +548.75 629.25 m +552.25 625.25 557.75 620.25 y +S +0 G +0.2 w +518.5 587.5 m +522.5 586 526 587.5 527 587.5 c +S +514 617.5 m +518 614 518.5 611.5 520 607.5 c +S +528.25 613.75 m +533.25 615.25 532.5 615.5 538.25 614.25 c +S +1 g +538 637.5 m +537.25 618 533 617.5 531.25 617.5 c +529.5 617.5 528.235 615.255 528.5 622.5 c +529.25 643 528.775 643.326 534.25 642.75 c +539 642.25 539 642.25 540.5 630.75 C +538 631 l +538 629 538 631.25 v +538 633.5 538 637.5 Y +b +0.7 g +507.5 650.75 m +510 648.5 510.25 645.75 511.75 643.25 c +513.25 640.75 508.5 638.25 508.5 638 c +508.5 637.75 507.5 650.75 y +b +1 g +529.25 639.25 m +528.5 643 527 642.75 524 642.75 c +521 642.75 519.75 644 519.5 632.25 C +519.75 638 519.75 641 v +519.75 644 518.75 644.25 515.25 644.25 c +511.75 644.25 511.75 646 509.25 641.25 c +506.75 636.5 505.75 633.25 506 633.25 c +506.25 633.25 509.75 628.25 Y +511.5 620.25 512.75 619.75 515.5 619.5 c +518.25 619.25 520.25 618.25 519.5 623.5 C +521 618.25 521 617.75 524.75 617 c +528.5 616.25 528.5 618.25 528.5 622.5 c +528.5 626.75 529.25 639.25 y +b +507.75 636.75 m +512.687 638.231 515.604 641 515.25 641 C +517.839 637.469 517.494 629.281 508.75 625.5 C +508.75 625.25 502 635 502.25 634.75 c +502.5 634.5 507.75 636.75 y +b +493.5 571.5 m +495.171 563.425 503.634 565.498 503.5 576.25 c +503.25 596.25 515.75 586.25 509 636.75 c +508.301 641.977 510 650.75 506.5 651.5 c +501.514 652.568 500.436 652.26 499.25 644.75 c +498.5 640 496.5 646.25 496 648.5 c +495.5 650.75 493.75 651 490.75 650.25 c +487.75 649.5 488.253 648.665 487.5 645.5 c +486.194 640.013 486.75 641.75 484.5 645.5 c +482.39 649.016 481.306 648.011 477.5 647.25 c +475 646.75 474.784 644.479 475.25 640.75 c +475.5 638.75 474 642.25 472.5 644.5 c +471 646.75 469.25 645.5 466.5 645.5 c +463.75 645.5 463.25 641.003 463.5 635.5 c +463.511 635.25 463 626.25 y +449.75 627.25 l +459.25 618.5 465.606 612.863 468.25 597 c +468.75 594 468 592.25 470 592.75 C +459.719 593.497 459.195 585.398 461 586 c +466.25 587.75 471.75 589.25 476.75 587 c +481.75 584.75 486.25 584.25 489.5 586.25 C +490.25 582.75 492 578.75 493.5 571.5 c +b +0 g +486.25 592.5 m +489 595.25 492.117 593.078 492.25 592.75 c +494.972 586.028 477 591.75 467.25 593 c +S +0.4 w +470 592.75 m +474.25 595.75 475 596 481.5 595.75 c +S +1 J +2.5 w +477.75 630 m +478.5 620.75 l +S +479.25 617.5 m +480 610.5 l +S +480.25 607.75 m +481 600.25 481 600.5 v +S +487.5 631.75 m +487.75 623.5 l +S +487.75 620.75 m +487.75 612.5 l +S +488 609.25 m +488.25 609.25 487.75 602.5 y +S +498 630.75 m +497.25 623.75 l +S +496.75 620.75 m +495.5 612.5 l +S +495.25 609.5 m +493.75 602 l +S +0 J +0.2 w +465.5 637.25 m +464.5 629.75 461.25 628.75 464.75 617 c +S +0.5 w +502 589.25 m +503.25 585 503.5 583.25 503.5 577 c +S +1 g +1 w +521.949 86.694 m +521.637 87.353 523.021 75.657 511.583 64.988 C +511.583 60.205 l +519.089 68.299 528.083 73.713 521.949 86.694 c +f +553.457 99.673 m +553.091 100.449 554.713 86.67 541.309 74.1 C +541.309 68.465 l +550.105 78.001 560.646 84.379 553.457 99.673 c +f +482.74 95.04 m +482.429 95.699 483.812 84.003 472.375 73.334 C +472.375 68.551 l +479.881 76.645 488.875 82.059 482.74 95.04 c +f +450.924 87.63 m +450.69 88.028 451.731 80.968 443.129 74.528 C +443.129 71.641 l +448.774 76.527 455.538 79.795 450.924 87.63 c +f +0 g +308 61.5 m +N +3 w +16.002 40.373 m +568.002 40.127 L +567.748 716.565 L +S +u +15.815 40.248 m +567.815 40.002 L +567.748 716.565 L +15.998 716.81 L +15.815 40.248 L +s +U +%%Trailer +_E end +showpage diff --git a/Master/texmf-dist/doc/latex/hithesis/figures/hitlogo.eps b/Master/texmf-dist/doc/latex/hithesis/figures/hitlogo.eps new file mode 100644 index 00000000000..251af0e1bad --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/figures/hitlogo.eps @@ -0,0 +1,382 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 21:27:21 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 98 590 565 677 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 98 590 565 677 +%%EndPageSetup +q 98 590 467 87 rectclip q +0 g +532.574 596.495 m 527.34 601.503 l 532.105 601.257 l 536.867 601.015 l +537.176 605.284 l 537.57 610.765 535.727 611.605 529.727 608.679 c 525.621 + 606.675 525.082 606.632 522.34 608.054 c 519.105 609.734 518.207 613.554 + 521.047 613.554 c 526.309 613.554 535.574 615.941 536.098 617.433 c 536.414 + 618.331 537.324 619.831 538.117 620.761 c 539.957 622.917 538.949 624.589 + 535.809 624.589 c 534.309 624.589 533.371 625.167 533.371 626.093 c 533.371 + 627.132 534.414 627.597 536.746 627.597 c 538.602 627.597 540.684 628.273 + 541.367 629.101 c 542.051 629.929 543.152 630.605 543.816 630.605 c 545.504 + 630.605 554.359 636.612 554.359 637.753 c 554.359 640.003 551.082 639.741 + 548.531 637.292 c 546.605 635.437 545.172 634.859 543.562 635.28 c 542.25 + 635.624 540.578 635.269 539.586 634.433 c 538.641 633.64 535.949 632.155 + 533.602 631.136 c 529.934 629.542 528.992 629.468 526.855 630.616 c 525.492 + 631.351 524.375 632.526 524.375 633.237 c 524.375 634.55 530.199 636.609 + 533.93 636.62 c 535.062 636.624 536.859 637.276 537.926 638.069 c 539.75 + 639.425 539.766 639.616 538.18 641.234 c 536.59 642.855 536.336 642.855 + 533.902 641.253 c 529.945 638.651 527.355 641.421 531.121 644.23 c 532.781 + 645.468 532.785 645.62 531.133 647.3 c 529.477 648.987 529.316 648.98 527.637 + 647.112 c 526.668 646.034 524.629 643.234 523.109 640.89 c 520.074 636.202 + 519.285 635.859 516.941 638.214 c 515.5 639.659 515.535 640.05 517.367 +642.632 c 519.605 645.784 519.863 648.249 518.371 652.194 c 517.082 655.597 + 517.922 657.003 520.438 655.651 c 522.004 654.812 522.375 653.526 522.375 + 648.929 c 522.375 644.753 522.672 643.542 523.488 644.362 c 525.016 645.898 + 524.98 659.335 523.438 664.03 c 522.742 666.136 522.426 668.109 522.73 +668.413 c 523.68 669.37 528.34 667.757 530.293 665.796 c 532.059 664.023 + 532.078 663.616 530.602 658.296 c 529.742 655.202 529.355 652.359 529.738 + 651.976 c 530.117 651.593 531.637 652.491 533.113 653.972 c 535.215 656.081 + 535.535 656.925 534.582 657.878 c 532.492 659.98 533.246 660.816 536.652 + 660.175 c 539.746 659.593 540.133 659.859 543.301 664.769 c 545.152 667.632 + 546.953 671.386 547.305 673.109 c 548.117 677.101 550.496 677.569 552.109 + 674.058 c 554.223 669.452 553.566 667.433 548.82 663.929 c 544.594 660.808 + 543.32 658.456 545.219 657.28 c 545.688 656.991 547.113 657.866 548.391 + 659.23 c 549.664 660.589 551.164 661.706 551.719 661.706 c 552.273 661.706 + 553.707 662.624 554.898 663.749 c 556.094 664.878 558.707 666.066 560.711 + 666.39 c 563.699 666.878 564.352 666.679 564.352 665.28 c 564.352 662.866 + 562.582 659.78 558.711 655.433 c 556.867 653.362 555.355 651.331 555.355 + 650.917 c 555.355 650.507 554.223 648.847 552.836 647.23 c 549.637 643.499 + 550.965 641.87 555.352 644.148 c 559.18 646.136 563.352 645.437 563.352 + 642.804 c 563.352 640.519 555.363 633.476 551.09 631.995 c 548.676 631.159 + 547.922 630.343 548.094 628.757 c 548.223 627.589 547.203 624.968 545.824 + 622.929 c 542.656 618.245 543.805 616.956 549.211 619.128 c 553.934 621.023 + 556.355 620.526 556.355 617.655 c 556.355 615.093 554.867 614.226 549.359 + 613.577 c 544.863 613.05 l 545.203 605.913 l 545.523 599.101 545.395 598.612 + 542.348 595.132 c 540.594 593.124 538.855 591.484 538.48 591.484 c 538.109 + 591.484 535.449 593.737 532.57 596.495 c h +545.535 641.296 m 547.727 643.284 547.891 644.651 545.934 644.651 c 544.055 + 644.651 541.191 641.734 541.914 640.558 c 542.719 639.253 543.449 639.401 + 545.535 641.296 c h +544.215 645.972 m 545.816 647.913 546.102 653.878 544.613 654.405 c 543.871 + 654.671 543.363 653.995 543.363 652.73 c 543.363 651.562 542.691 650.347 + 541.867 650.03 c 539.598 649.155 540.055 644.651 542.41 644.651 c 542.801 + 644.651 543.613 645.245 544.215 645.972 c h +551.395 649.917 m 553.59 653.487 554.887 657.499 554.098 658.288 c 553.82 + 658.566 552.422 658.499 550.988 658.136 c 548.836 657.593 548.398 656.929 + 548.488 654.327 c 548.551 652.593 548.27 650.155 547.863 648.913 c 546.742 + 645.472 549.066 646.132 551.395 649.917 c h +538.367 650.702 m 538.367 653.507 535.695 654.288 533.355 652.163 c 530.906 + 649.937 531.66 648.663 535.43 648.663 c 537.715 648.663 538.367 649.116 + 538.367 650.702 c h +282.875 600.261 m 277.797 605.624 277.324 605.894 276.215 604.112 c 272.863 + 598.734 269.059 596.937 267.828 600.155 c 267.441 601.167 267.922 602.335 + 269.066 603.175 c 270.871 604.503 270.859 604.601 268.73 606.097 c 266.473 + 607.683 265.711 612.261 267.395 614.105 c 268.73 615.566 269.637 620.386 + 268.684 620.976 c 268.219 621.265 266.312 619.921 264.449 617.987 c 262.059 + 615.511 260.328 614.562 258.594 614.765 c 255.715 615.109 254.789 612.874 + 254.629 605.21 c 254.535 600.519 253.203 596.495 251.746 596.503 c 251.355 + 596.503 249.742 598.905 248.168 601.839 c 245.32 607.136 245.312 607.202 + 247.07 610.609 c 248.27 612.944 249.082 617.749 249.594 625.585 c 250.008 + 631.933 250.805 638.308 251.363 639.753 c 252.125 641.714 251.977 643.499 + 250.781 646.843 c 249.219 651.198 249.508 654.683 251.426 654.683 c 253.09 + 654.683 258.27 649.773 258.812 647.679 c 259.164 646.339 258.359 644.612 + 256.426 642.53 c 252.633 638.456 251.941 635.39 253.887 631.269 c 255.355 + 628.167 255.328 627.573 253.5 622.737 c 252.418 619.882 251.531 616.87 +251.531 616.05 c 251.531 613.741 253.32 614.284 254.043 616.812 c 255.953 + 623.487 259.816 632.554 260.559 632.093 c 261.027 631.804 260.547 629.655 + 259.492 627.323 c 257.395 622.687 256.992 619.573 258.484 619.573 c 259.879 + 619.573 271.633 631.741 272.492 634.069 c 274.375 639.183 269.77 642.163 + 265.789 638.409 c 263.043 635.819 264.242 633.862 267.5 635.612 c 270.496 + 637.218 271.133 636.206 269.094 633.085 c 266.918 629.749 263.18 630.019 + 262.684 633.542 c 262.496 634.882 261.68 636.991 260.871 638.23 c 259.566 + 640.226 259.578 640.835 260.961 643.523 c 261.824 645.191 262.527 647.554 + 262.527 648.769 c 262.527 650.909 262.59 650.921 264.5 649.191 c 265.586 + 648.202 266.754 646.511 267.094 645.429 c 267.617 643.773 268.297 643.566 + 271.367 644.109 c 273.375 644.468 276.207 645.612 277.656 646.659 c 280.102 + 648.421 281.516 648.39 281.516 646.566 c 281.516 646.151 280.379 644.452 + 278.992 642.796 c 277.355 640.847 276.852 639.546 277.555 639.112 c 279.039 + 638.191 282.02 641.073 284.074 645.425 c 285.672 648.804 285.859 648.909 + 287.145 647.148 c 289.727 643.601 288.723 641.331 282.492 636.651 c 279.207 + 634.179 276.52 631.585 276.52 630.882 c 276.52 629.14 277.234 629.265 281.129 + 631.679 c 282.973 632.823 284.887 633.503 285.391 633.191 c 285.91 632.87 + 286.07 627.23 285.766 620.124 c 285.227 607.624 l 287.703 606.491 l 289.066 + 605.866 290.965 604.019 291.93 602.386 c 293.543 599.64 293.555 599.23 +292.07 596.952 c 291.188 595.601 289.984 594.491 289.402 594.491 c 288.816 + 594.491 285.883 597.089 282.875 600.261 c h +273.02 608.37 m 273.02 610.183 271.062 609.855 270.676 607.972 c 270.461 + 606.929 270.836 606.468 271.676 606.749 c 272.414 606.999 273.02 607.726 + 273.02 608.37 c h +282.852 607.202 m 283.219 607.569 282.781 608.691 281.883 609.687 c 280.688 + 611.011 280.215 613.609 280.133 619.3 c 280.035 625.71 279.75 627.023 278.516 + 626.687 c 277.691 626.46 276.098 626.202 274.969 626.116 c 271.961 625.882 + 270.523 624.722 270.523 622.523 c 270.523 620.179 271.371 620.081 274.23 + 622.089 c 276.879 623.952 277.211 623.409 277.312 617.042 c 277.441 609.073 + 280.066 604.405 282.852 607.202 c h +273.762 615.073 m 273.055 618.792 271.52 619.167 271.52 615.62 c 271.52 + 613.698 272.031 612.55 272.883 612.55 c 273.797 612.55 274.086 613.378 +273.762 615.073 c h +394.883 598.015 m 393.098 602.304 391.578 602.413 388.113 598.507 c 386.641 + 596.851 384.613 595.495 383.605 595.495 c 381.195 595.495 378.461 598.601 + 378.461 601.335 c 378.461 603.222 378.98 603.487 382.387 603.351 c 386.152 + 603.206 391.453 605.589 391.453 607.433 c 391.453 607.905 390.789 608.847 + 389.973 609.523 c 387.883 611.269 389.734 614.339 393.125 614.741 c 395.992 + 615.081 397.672 617.566 395.035 617.566 c 393.027 617.566 392.965 619.448 + 394.945 620.21 c 395.766 620.526 396.172 621.222 395.844 621.753 c 395.516 + 622.284 394.617 622.476 393.852 622.179 c 392.133 621.519 389.453 622.46 + 389.453 623.726 c 389.453 624.237 391.027 625.589 392.953 626.726 c 396.656 + 628.921 397.723 631.148 394.59 630.151 c 393.52 629.808 392.199 630.202 + 391.473 631.085 c 389.547 633.413 388.578 633.023 382.863 627.597 c 379.957 + 624.839 376.715 622.581 375.656 622.581 c 372.305 622.581 368.316 626.507 + 368.66 629.468 c 368.938 631.862 369.391 632.124 373.461 632.249 c 376.531 + 632.343 380.18 633.566 384.957 636.101 c 394.23 641.026 394.789 641.616 + 393.477 645.089 c 392.566 647.491 392.199 647.694 390.832 646.558 c 389.961 + 645.831 388.855 644.202 388.375 642.937 c 387.219 639.886 383.684 639.886 + 382.922 642.937 c 382.605 644.198 382.816 646.472 383.391 647.991 c 384.277 + 650.327 384.734 650.589 386.379 649.706 c 387.66 649.019 389.188 648.991 + 390.844 649.624 c 393.203 650.526 393.383 651.093 393.66 658.405 c 393.945 + 666.054 394.008 666.226 396.637 666.53 c 400.406 666.968 403.234 662.734 + 401.59 659.109 c 399.938 655.476 400.156 654.683 402.805 654.683 c 404.324 + 654.683 406.367 656.109 408.551 658.691 c 410.863 661.421 412.75 662.698 + 414.488 662.702 c 420.211 662.714 421.387 656.741 416.188 654.066 c 414.402 + 653.148 412.633 651.917 412.258 651.331 c 410.691 648.894 412.91 648.859 + 419.168 651.222 c 424.895 653.386 426.004 653.534 427.223 652.312 c 429.281 + 650.245 427.848 646.894 424.637 646.273 c 423.152 645.987 418.617 645.484 + 414.562 645.155 c 407.32 644.566 399.117 641.452 395.652 637.976 c 393.398 + 635.714 395.266 634.98 398.512 636.851 c 401.117 638.351 402.941 637.671 + 400.453 636.128 c 399.906 635.788 398.992 634.632 398.418 633.562 c 397.598 + 632.019 397.703 631.609 398.922 631.609 c 399.77 631.609 401.816 633.816 + 403.473 636.515 c 406.613 641.64 410.02 643.499 412.223 641.288 c 414.098 + 639.405 412.746 636.929 409.156 635.671 c 405.512 634.398 401.445 630.839 + 401.445 628.929 c 401.445 626.905 403.148 627.335 404.863 629.792 c 406.754 + 632.499 408.355 631.3 406.609 628.491 c 405.914 627.378 405.605 625.655 + 405.922 624.659 c 406.312 623.417 405.664 622.3 403.863 621.116 c 402.004 + 619.894 401.543 619.073 402.297 618.316 c 403.051 617.562 403.785 617.605 + 404.812 618.46 c 406.566 619.921 407.676 618.554 406.395 616.515 c 404.566 + 613.62 405.332 612.726 409.191 613.241 c 412.043 613.624 413.598 613.222 + 415.688 611.569 c 420.625 607.663 418.66 600.019 412.891 600.679 c 410.457 + 600.956 409.883 601.534 409.605 603.991 c 409.246 607.144 405.945 612.55 + 404.375 612.55 c 403.863 612.55 403.445 609.46 403.445 605.683 c 403.445 + 598.589 402.5 596.714 398.145 595.159 c 396.754 594.663 396.004 595.319 + 394.883 598.015 c h +396.797 603.276 m 397.668 604.691 396.223 609.542 394.93 609.542 c 393.551 + 609.542 391.23 604.077 392.199 603.105 c 393.039 602.261 396.246 602.382 + 396.797 603.276 c h +402.742 646.757 m 403.496 647.964 403.191 648.917 401.512 650.605 c 398.883 + 653.245 398.91 653.265 398.02 648.335 c 397.379 644.776 397.492 644.519 + 399.535 644.823 c 400.75 645.003 402.191 645.874 402.742 646.757 c h +409.371 653.312 m 410.508 654.769 411.441 656.347 411.441 656.823 c 411.441 + 658.632 408.605 657.593 407.059 655.218 c 403.922 650.417 405.852 648.823 + 409.371 653.312 c h +214.914 599.761 m 213.449 602.105 211.418 605.245 210.402 606.741 c 208.055 + 610.202 208.074 610.874 210.492 609.577 c 213.383 608.023 216.555 608.3 + 216.555 610.105 c 216.555 611.011 215.816 611.581 214.805 611.456 c 213.844 + 611.335 212.344 611.554 211.477 611.937 c 210.609 612.319 208.68 612.167 + 207.191 611.597 c 204.832 610.698 204.625 610.292 205.59 608.48 c 206.457 + 606.855 206.352 605.859 205.105 603.956 c 202.848 600.495 200.562 600.796 + 200.562 604.558 c 200.562 606.335 199.938 607.835 199.062 608.175 c 196.402 + 609.198 192.527 607.558 191.555 604.999 c 190.48 602.155 188.414 601.812 + 186.141 604.093 c 184.316 605.925 184.156 609.409 185.629 615.058 c 187.48 + 622.14 187.406 622.038 189.418 620.21 c 191.863 617.987 192.836 618.148 + 192.047 620.64 c 191.539 622.241 191.781 622.64 193.125 622.394 c 195.914 + 621.886 195.902 624.284 193.109 624.987 c 189.305 625.948 190.039 628.273 + 194.816 630.398 c 200.5 632.925 201.59 634.495 201.848 640.484 c 202.078 + 645.937 200.887 648.109 198.23 647.085 c 196.191 646.3 196.109 644.968 +197.973 643.093 c 200.273 640.784 198.648 637.792 193.09 634.089 c 187.453 + 630.335 186.836 630.151 184.598 631.573 c 183.406 632.331 183.977 633.308 + 187.598 636.706 c 191.922 640.769 191.949 642.991 187.645 640.679 c 184.664 + 639.077 180.711 640.468 179.043 643.71 c 177.273 647.14 178.188 647.987 + 184.07 648.378 c 187.996 648.64 202.82 655.359 209.664 659.976 c 223.113 + 669.05 230.449 670.456 230.531 663.98 c 230.551 662.155 220.797 657.48 +218.496 658.21 c 216.395 658.882 205.637 652.972 205.586 651.12 c 205.555 + 649.89 207.598 647.659 208.758 647.659 c 209.195 647.659 209.559 648.737 + 209.559 650.05 c 209.559 651.683 210.27 652.636 211.805 653.046 c 218.297 + 654.792 222.848 652.425 221.922 647.776 c 221.543 645.874 221.988 644.562 + 223.469 643.218 c 225.973 640.944 226.035 639.921 223.934 635.691 c 222.16 + 632.12 221.879 627.03 222.48 609.202 c 222.801 599.722 222.598 597.144 +221.469 596.425 c 218.898 594.792 217.609 595.448 214.914 599.761 c h +193.641 610.819 m 193.516 612.019 192.148 611.788 191.719 610.495 c 191.496 + 609.831 191.855 609.472 192.516 609.691 c 193.176 609.913 193.684 610.421 + 193.641 610.819 c h +207.059 616.562 m 206.574 617.347 206 617.405 205.332 616.737 c 204.785 + 616.187 204.66 615.206 205.059 614.558 c 205.543 613.773 206.117 613.714 + 206.785 614.382 c 207.332 614.933 207.457 615.913 207.059 616.562 c h +197.02 615.491 m 198.043 617.148 195.918 617.546 193.965 616.062 c 192.129 + 614.667 192.141 614.62 194.258 614.589 c 195.461 614.569 196.707 614.976 + 197.02 615.491 c h +216.555 618.511 m 216.555 620.132 216.102 621.737 215.555 622.081 c 214.957 + 622.448 214.555 621.253 214.555 619.128 c 214.555 617.167 215.004 615.558 + 215.555 615.558 c 216.102 615.558 216.555 616.886 216.555 618.511 c h +200.637 620.851 m 200.512 622.05 199.141 621.819 198.715 620.526 c 198.492 + 619.862 198.852 619.503 199.512 619.722 c 200.172 619.944 200.68 620.452 + 200.637 620.851 c h +211.555 621.577 m 211.555 623.913 211.547 623.913 207.906 622.523 c 205.68 + 621.675 205.418 621.276 206.594 620.534 c 209.141 618.917 211.555 619.425 + 211.555 621.577 c h +201.562 625.53 m 201.562 626.05 201.113 626.753 200.562 627.097 c 200.012 + 627.437 199.562 627.011 199.562 626.151 c 199.562 625.292 200.012 624.589 + 200.562 624.589 c 201.113 624.589 201.562 625.011 201.562 625.53 c h +207.559 626.593 m 207.559 627.148 207.109 627.597 206.559 627.597 c 206.008 + 627.597 205.559 627.148 205.559 626.593 c 205.559 626.042 206.008 625.593 + 206.559 625.593 c 207.109 625.593 207.559 626.042 207.559 626.593 c h +216.555 628.683 m 216.555 631.128 214.219 630.784 213.73 628.265 c 213.539 + 627.276 214.051 626.593 214.98 626.593 c 215.906 626.593 216.555 627.452 + 216.555 628.683 c h +211.555 631.609 m 211.555 632.163 210.656 632.612 209.559 632.612 c 208.457 + 632.612 207.559 632.163 207.559 631.609 c 207.559 631.058 208.457 630.609 + 209.559 630.609 c 210.656 630.609 211.555 631.058 211.555 631.609 c h +217.051 635.12 m 217.051 637.28 215.621 637.956 213.668 636.714 c 212.484 + 635.964 212.484 635.605 213.668 634.265 c 215.406 632.296 217.051 632.71 + 217.051 635.12 c h +212.828 640.71 m 217.453 644.538 217.516 645.655 213.113 645.655 c 209.266 + 645.655 209.074 645.472 208.098 640.89 c 207.23 636.835 208.102 636.804 + 212.828 640.71 c h +128.227 600.8 m 127.195 601.558 126.262 603.929 125.957 606.566 c 125.109 + 613.921 125.109 613.921 118.793 609.253 c 109.316 602.253 98.121 600.542 + 98.121 606.093 c 98.121 607.441 99.188 608.167 102.031 608.761 c 112.367 + 610.917 125.305 623.241 132.859 638.132 c 138.129 648.515 140.203 653.585 + 141.551 659.37 c 142.934 665.308 144.477 666.409 147.484 663.597 c 148.641 + 662.515 149.59 661.53 149.59 661.409 c 149.59 661.288 150.004 659.753 150.504 + 657.991 c 151.281 655.28 151.051 654.37 148.98 651.98 c 144.109 646.359 + 144.684 643.757 152.543 635.788 c 155.344 632.948 157.535 631.605 159.375 + 631.593 c 165.98 631.558 166.078 627.913 159.559 624.573 c 152.633 621.026 + 150.691 621.933 147.234 630.316 c 145.594 634.292 143.684 637.765 142.988 + 638.034 c 141.922 638.444 136.598 631.062 136.598 629.175 c 136.598 628.136 + 140.172 628.577 141.355 629.761 c 142.23 630.64 142.883 630.612 144.051 + 629.64 c 146.699 627.433 145.762 625.593 140.93 623.511 c 137.234 621.925 + 136.094 621.773 135.461 622.796 c 134.402 624.495 132.02 623.007 129.785 + 619.257 c 128.18 616.558 128.195 616.362 130.098 614.952 c 131.898 613.616 + 132.176 613.671 132.996 615.523 c 133.5 616.655 134.855 617.566 136.039 + 617.566 c 137.215 617.566 139.926 618.464 142.07 619.558 c 145.691 621.413 + 146.094 621.437 147.777 619.905 c 150.16 617.741 150.082 614.421 147.594 + 612.28 c 145.211 610.234 145.055 608.96 147.094 608.175 c 148.988 607.444 + 149.023 604.816 147.164 602.948 c 145.359 601.136 135.992 600.995 135.223 + 602.769 c 134.848 603.628 134.156 603.316 133.016 601.765 c 131.094 599.151 + 130.609 599.05 128.227 600.8 c h +137.023 608.066 m 138.883 610.909 138.379 612.55 135.648 612.55 c 133.48 + 612.55 132.523 610.558 133.285 607.632 c 134.008 604.862 135.012 604.976 + 137.023 608.066 c h +439.98 602.456 m 437.832 604.839 438.777 606.734 441.746 605.984 c 444.188 + 605.37 450.902 607.831 453.773 610.394 c 455.973 612.359 459.414 618.847 + 459.414 621.038 c 459.414 621.886 458.898 622.581 458.266 622.581 c 456.938 + 622.581 446.797 615.98 445.906 614.53 c 444.969 613.007 440.812 613.382 + 439.375 615.116 c 438.465 616.218 438.355 617.452 439.004 619.276 c 440.008 + 622.105 440.91 622.71 446.922 624.589 c 452.84 626.441 458.934 629.319 +460.223 630.878 c 461.512 632.437 463.242 651.933 462.715 658.964 c 462.426 + 662.823 462.715 663.804 464.395 664.706 c 466.066 665.605 466.859 665.355 + 468.914 663.296 c 471.898 660.3 472.152 655.714 469.926 645.151 c 467.488 + 633.605 467.926 632.933 475.637 636.347 c 478.484 637.609 479.691 638.831 + 480.098 640.862 c 480.762 644.21 480.73 644.206 484.438 641.452 c 489.152 + 637.956 488.227 633.753 482.398 632.187 c 474.547 630.077 466.41 626.163 + 466.41 624.495 c 466.41 623.519 467.297 622.433 468.379 622.089 c 469.465 + 621.745 471.961 619.573 473.934 617.261 c 478.641 611.741 480.852 610.62 + 487.148 610.581 c 490.035 610.558 492.395 610.148 492.395 609.663 c 492.395 + 609.183 490.648 606.925 488.512 604.648 c 481.785 597.48 478.121 599.12 + 471.395 612.335 c 469.086 616.866 466.902 620.573 466.539 620.573 c 466.176 + 620.573 465.102 618.378 464.152 615.691 c 462.457 610.905 455.445 602.851 + 451.664 601.347 c 447.969 599.878 441.773 600.464 439.98 602.456 c h +312.055 609.765 m 310.184 612.444 310.016 616.487 311.75 616.987 c 312.434 + 617.187 315.617 617.929 318.82 618.64 c 324.414 619.878 324.938 620.28 +332.062 628.757 c 340.41 638.687 342.074 643.023 335.305 637.206 c 330.438 + 633.023 327.645 632.718 323.895 635.952 c 321.719 637.831 321.324 638.819 + 321.867 640.999 c 322.516 643.589 322.758 643.683 327.266 643.081 c 331.402 + 642.534 332.836 642.901 338.875 646.062 c 347.543 650.601 349.062 650.609 + 351.191 646.128 c 352.871 642.589 l 345.676 635.319 l 338.238 627.804 336.664 + 624.886 340.73 626.159 c 341.969 626.546 343.867 627.48 344.953 628.234 + c 347.512 630.015 348.977 629.964 350.902 628.03 c 353.52 625.401 351.297 + 622.948 345.621 622.194 c 342.91 621.831 340.176 620.913 339.547 620.151 + c 338.918 619.39 337.34 618.499 336.039 618.171 c 334.742 617.843 331.656 + 615.316 329.184 612.554 c 324.812 607.675 324.527 607.534 319.148 607.534 + c 314.559 607.534 313.344 607.917 312.055 609.765 c h +505.375 617.816 m 504.285 619.609 503.395 621.851 503.391 622.8 c 503.391 + 624.331 511.609 634.667 513.422 635.413 c 514.961 636.046 515.297 632.331 + 513.883 630.304 c 511.719 627.202 512.027 626.288 514.98 627.03 c 516.406 + 627.39 517.395 627.327 517.176 626.89 c 516.953 626.452 516.004 624.398 + 515.062 622.323 c 512.961 617.694 510.367 614.558 508.648 614.558 c 507.938 + 614.558 506.465 616.023 505.375 617.816 c h +103.352 622.866 m 102.25 624.558 101.918 627.546 102.094 634.269 c 102.43 + 647.069 103.199 647.917 109 641.921 c 111.391 639.452 112.613 637.245 112.613 + 635.401 c 112.613 631.862 113.738 631.855 115.438 635.378 c 117.777 640.23 + 117.848 640.636 116.371 640.636 c 114.98 640.636 110.859 644.405 111.703 + 644.905 c 115.488 647.163 122.918 650.667 123.918 650.667 c 125.789 650.667 + 130.602 645.37 130.602 643.312 c 130.602 642.359 129.012 640.179 127.07 + 638.468 c 123.73 635.523 123.629 635.253 125.211 633.499 c 126.543 632.019 + 126.637 631.351 125.664 630.175 c 123.93 628.077 117.938 626.292 115.059 + 627.019 c 113.609 627.382 112.613 627.198 112.613 626.566 c 112.613 624.995 + 107.938 620.573 106.277 620.573 c 105.492 620.573 104.176 621.605 103.352 + 622.866 c h +269.172 648.128 m 267.156 649.659 267.727 651.675 270.18 651.675 c 272.613 + 651.675 278.656 654.737 283.016 658.183 c 288.625 662.62 289.121 662.843 + 291.84 662.159 c 294.371 661.523 296.98 657.269 295.91 655.526 c 295.129 + 654.257 286.891 650.671 284.758 650.671 c 283.484 650.671 283.617 651.151 + 285.414 653.073 c 288.715 656.597 286.133 657.456 282.641 653.995 c 278.672 + 650.066 273.848 646.651 272.312 646.691 c 271.602 646.706 270.188 647.355 + 269.172 648.128 c h +276.227 660.691 m 276.555 661.956 276.156 662.909 275.133 663.304 c 272.043 + 664.495 273.32 667.347 277.512 668.609 c 285.633 671.05 288.781 665.093 + 281.559 660.952 c 276.715 658.175 275.555 658.116 276.227 660.691 c h +276.227 660.691 m f +Q Q +showpage +%%Trailer +end restore +%%EOF diff --git a/Master/texmf-dist/doc/latex/hithesis/front/cover.tex b/Master/texmf-dist/doc/latex/hithesis/front/cover.tex new file mode 100644 index 00000000000..4cff7b6c06a --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/front/cover.tex @@ -0,0 +1,89 @@ +% !Mode:: "TeX:UTF-8" + +\hitsetup{ + %****************************** + % 注意: + % 1. 配置里面不要出现空行 + % 2. 不需要的配置信息可以删除 + %****************************** + % + %===== + % 秘级 + %===== + statesecrets={公开}, + natclassifiedindex={TM301.2}, + intclassifiedindex={62-5}, + % + %========= + % 中文信息 + %========= + ctitleone={局部多孔质气体静压}, + ctitletwo={轴承关键技术的研究}, + ctitle={局部多孔质气体静压轴承关键技术的研究}, + csubtitle={一条副标题}, %一般情况没有,可以注释掉 + cxueke={工学}, + csubject={机械制造及其自动化}, + caffil={机电工程学院}, + cauthor={于冬梅}, + csupervisor={某某某教授}, + cassosupervisor={某某某教授}, % 副指导老师 + ccosupervisor={某某某教授}, % 联合指导老师 + % 日期自动使用当前时间,若需指定按如下方式修改: + cdate={超新星纪元}, + cstudentid={9527}, + cstudenttype={同等学力人员}, %非全日制教育申请学位者 + %(同等学力人员)、(工程硕士)、(工商管理硕士)、 + %(高级管理人员工商管理硕士)、(公共管理硕士)、(中职教师)、(高校教师)等 + % + % + %========= + % 英文信息 + %========= + etitle={Research on key technologies of partial porous externally pressurized gas bearing}, + esubtitle={This is the sub title}, + exueke={Engineering}, + esubject={Computer Science and Technology}, + eaffil={\emultiline[t]{School of Mechatronics Engineering \\ Mechatronics Engineering}}, + eauthor={Yu Dongmei}, + esupervisor={Professor XXX}, + eassosupervisor={XXX}, + % 日期自动生成,若需指定按如下方式修改: + edate={December, 2017}, + estudenttype={Master of Art}, + % + % 关键词用“英文逗号”分割 + ckeywords={\TeX, \LaTeX, CJK, 嗨!, thesis}, + ekeywords={\TeX, \LaTeX, CJK, template, thesis}, +} + +\begin{cabstract} + +摘要的字数(以汉字计),硕士学位论文一般为500 $\sim$ 1000字,博士学位论文为1000 $\sim$ 2000字, +均以能将规定内容阐述清楚为原则,文字要精练,段落衔接要流畅。摘要页不需写出论文题目。 +英文摘要与中文摘要的内容应完全一致,在语法、用词上应准确无误,语言简练通顺。 +留学生的英文版博士学位论文中应有不少于3000字的“详细中文摘要”。 + + 关键词是为了文献标引工作、用以表示全文主要内容信息的单词或术语。关键词不超过 5 + 个,每个关键词中间用分号分隔。(模板作者注:关键词分隔符不用考虑,模板会自动处 + 理。英文关键词同理。) +\end{cabstract} + +\begin{eabstract} + An abstract of a dissertation is a summary and extraction of research work + and contributions. Included in an abstract should be description of research + topic and research objective, brief introduction to methodology and research + process, and summarization of conclusion and contributions of the + research. An abstract should be characterized by independence and clarity and + carry identical information with the dissertation. It should be such that the + general idea and major contributions of the dissertation are conveyed without + reading the dissertation. + + An abstract should be concise and to the point. It is a misunderstanding to + make an abstract an outline of the dissertation and words ``the first + chapter'', ``the second chapter'' and the like should be avoided in the + abstract. + + Key words are terms used in a dissertation for indexing, reflecting core + information of the dissertation. An abstract may contain a maximum of 5 key + words, with semi-colons used in between to separate one another. +\end{eabstract} diff --git a/Master/texmf-dist/doc/latex/hithesis/front/denotation.tex b/Master/texmf-dist/doc/latex/hithesis/front/denotation.tex new file mode 100644 index 00000000000..dae7a832c3d --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/front/denotation.tex @@ -0,0 +1,13 @@ +\begin{denotation} +\begin{table}[h]%此处最好是h +\caption{国际单位制中具有专门名称的导出单位} +\vspace{0.5em}\centering\wuhao +\begin{tabular}{ccccc} +\toprule[1.5pt] +量的名称&单位名称&单位符号&其它表示实例\\ +\midrule[1pt] +频率&赫[兹]&Hz&s-1\\ +\bottomrule[1.5pt] +\end{tabular} +\end{table} +\end{denotation} diff --git a/Master/texmf-dist/doc/latex/hithesis/hithesis.pdf b/Master/texmf-dist/doc/latex/hithesis/hithesis.pdf new file mode 100644 index 00000000000..67b06e4222c Binary files /dev/null and b/Master/texmf-dist/doc/latex/hithesis/hithesis.pdf differ diff --git a/Master/texmf-dist/doc/latex/hithesis/main.pdf b/Master/texmf-dist/doc/latex/hithesis/main.pdf new file mode 100644 index 00000000000..ab601d19c27 Binary files /dev/null and b/Master/texmf-dist/doc/latex/hithesis/main.pdf differ diff --git a/Master/texmf-dist/doc/latex/hithesis/main.tex b/Master/texmf-dist/doc/latex/hithesis/main.tex new file mode 100644 index 00000000000..1c4f17c443a --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/main.tex @@ -0,0 +1,104 @@ +% !Mode:: "TeX:UTF-8" +\documentclass[openright=true,fontset=siyuan,type=doctor]{hithesis} +% 此处选项中不要有空格 +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% 必填选项 +% type=doctor|master|bachelor +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% 选填选项(选填选项的缺省值已经尽可能满足了大多数需求,除非明确知道自己有什么 +% 需求) +% glue=true|false +% 含义:由于我工规范中要求字体行距在一个闭区间内,这个选项为true表示tex自 +% 动选择,为false表示区间内一个最接近版心要求行数的要求的默认值,缺省值为 +% false。 +% tocfour=true|false +% 含义:是否添加第四级目录,只对本科文科个别要求四级目录有效,缺省值为 +% false +% fontset=siyuan|windowsnew|windowsold +% 含义:注意这个选项视为了解决特殊问题而设置,比如用有些发行版本的linux排 +% 版时可能(大多数发行版不会)会遇到的字体无法载入的问题,以及想要解决排 +% 版如biang biang面的biang 这类中易宋体无法识别的汉字的问题。没有特殊的需 +% 要不推荐使用这个选项。 +% +% 如果是安装了windowns字体的linux系统,可以填写windowsnew(win vista以后 +% 的字体)或windowsold(vista以前)或者想用思源宋体并且是已经安装了思源宋 +% 体的任何系统,填写siyuan选项缺省值为空,自动识别系统并匹配字体。模板版 +% 中给出的思源字体定义文件定义的思源字体的版本是Adobe版,其他字体是 +% windowsnew字体。 +% tocblank=true|false +% 含义:目录中第一章之前,是否加一行空白。缺省值为true。 +% chapterhang=true|false +% 含义:目录的章标题是否悬挂居中,规范中要求章标题少于15字,所以这个选项 +% 有无没什么用, +% 除了特殊需求。缺省值为true。 +% fulltime=true|false +% 含义:是否全日制,缺省值为true。非全日制如同等学力等,要在cover中设置类 +% 型,封面中不同格式 +% subtitle=true|false +% 含义:论文题目是否含有副标题,缺省值为false,如果有要在cover中设置副标 +% 题内容 +% ,封面中显示。 +% newgeometry=true|false +% 含义:规范中的自相矛盾之处,版芯是否包含页眉页脚,旧方法是按照包含页眉 +% 页脚来设置,缺省值为false,即旧方法。 +% debug=true|false +% 含义:是否显示版芯框和行号,用来调试。默认否。 +% openright=true|false +% 含义:博士论文是否要求章节首页在偶数页,此选项不在规范要求中,按个人喜 +% 好自行决定。 默认否。 +% caplastcenter=true|false +% 含义:图题、表题是否居中对齐(我工规范要求居中,但不要求居中对齐),此 +% 选项不在规范要求中,按个人喜好自行决定。默认是。 +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\usepackage{hithesis} +\graphicspath{{figures/}} + +\begin{document} + +\frontmatter +\input{front/cover} % 封面 +\makecover +\input{front/denotation}%物理量名称表,符合规范为主,有要求添加 +\tableofcontents % 中文目录 +\tableofengcontents % 英文目录,硕本不要求 + +\mainmatter +%\linenumbers debug 选项 +%\layout debug 选项 +\include{body/introduction} + +\backmatter +%硕博书序 +\include{back/conclusion} % 结论 +\bibliographystyle{hithesis} %如果没有参考文献时候 +\bibliography{reference} +\begin{appendix}%附录 +\input{back/appA.tex} +\end{appendix} +\include{back/publications} % 所发文章 +\include{back/ceindex} % 索引, 根据自己的情况添加或者不添加,选择自动添加或者手工添加。 +\authorization %授权 +%\authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 +\include{back/acknowledgements} %致谢 +\include{back/resume} % 博士学位论文有个人简介 + +%本科书序为: +%\include{body/conclusion} % 结论 +%\bibliographystyle{hithesis} +%\bibliography{reference} +%\authorization %授权 +%%\authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 +%\include{body/acknowledgements} %致谢 +%\begin{appendix}%附录 +%\input{body/appendix01}%本科生翻译论文 +%\end{appendix} + +%% 以下有需要留下,没有需要不加 +% 插图索引 +%\listoffigures +% 表格索引 +%\listoftables +% 公式索引 +%\listofequations +\end{document} diff --git a/Master/texmf-dist/doc/latex/hithesis/reference.bib b/Master/texmf-dist/doc/latex/hithesis/reference.bib new file mode 100644 index 00000000000..5b4b2604872 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/reference.bib @@ -0,0 +1,75 @@ +% !Mode:: "TeX:UTF-8" + +@INPROCEEDINGS{cnproceed, + author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, + title = {武林高手从入门到精通}, + booktitle = {第~$N$~次华山论剑}, + year = 2006, + address = {西安, 中国}, + month = sep, + language ="zh", +} + +@ARTICLE{cnarticle, + AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", + TITLE = "论刘姥姥食量大如牛之现实意义", + JOURNAL = "红楼梦杂谈", + PAGES = "260--266", + VOLUME = "224", + YEAR = "1800", + language ="zh", +} + + +@inbook{Lin1992, + language ="zh", + AUTHOR = "林来兴", + TITLE = "空间控制技术", + PUBLISHER = "宇航出版社", + YEAR = "1992", + Pages = "25-42", + ADDRESS = "北京", +} + +@book{xin1994, + language ="zh", + title={信息技术与信息服务国际研讨会论文集}, + author={辛希孟 and 中国科学院文献信息中心 and 孟广均 and 信息学}, + year={1994}, + publisher={中国社会科学出版社}, + pages={45-49}, + address={北京}, + typeoflit={C}, +} + +@book{zhao1998, + language ="zh", + title={新时代的工业工程师}, + author={赵耀东}, + year={1998}, + citedate = {1998-09-26}, + address={台北}, + publisher={天下文化出版社}, + url={http://www.ie.nthu.edu.tw/info/ie.newie.htm(Big5)}, + typeoflit={M/OL}, +} + +@phdthesis{Chen1992, + language ="zh", + Author = {谌颖}, + Title = {空间最优交会控制理论与方法研究}, + ADDRESS = "哈尔滨", + School = {哈尔滨工业大学}, + Year = {1992}, + pages= {8-13}, +} + +@article{hithesis2017, + title={Hi!Thesis!,Harbin Institue of Technology}, + author={Yanshuo Chu}, + journal={Github}, + volume={001}, + number={0001}, + pages={000-999}, + year={2017}, +} diff --git a/Master/texmf-dist/doc/latex/hithesis/wct1.eps b/Master/texmf-dist/doc/latex/hithesis/wct1.eps new file mode 100644 index 00000000000..047cdea107f --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/wct1.eps @@ -0,0 +1,427 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 21:02:17 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 134 161 448 476 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 134 161 448 476 +%%EndPageSetup +q 134 161 314 315 rectclip q +0 g +134.121 191.71 m 134.121 221.335 l 193.371 221.335 l 193.371 162.085 l +134.121 162.085 l h +185.121 191.71 m 185.121 213.085 l 142.371 213.085 l 142.371 170.335 l +185.121 170.335 l h +151.371 191.71 m 151.371 204.085 l 176.121 204.085 l 176.121 179.335 l +151.371 179.335 l h +210.621 166.21 m 210.621 170.335 l 227.121 170.335 l 227.121 162.085 l +210.621 162.085 l h +236.121 166.21 m 236.121 170.335 l 244.371 170.335 l 244.371 179.335 l +235.371 179.335 l 235.371 171.085 l 227.871 171.085 l 227.871 195.835 l +244.371 195.835 l 244.371 221.335 l 227.871 221.335 l 227.871 229.585 l +252.621 229.585 l 252.621 221.335 l 269.047 221.335 l 269.27 217.023 l 269.496 + 212.71 l 273.809 212.484 l 278.121 212.261 l 278.121 221.335 l 269.871 +221.335 l 269.871 229.585 l 287.121 229.585 l 287.121 246.835 l 295.371 +246.835 l 295.371 255.085 l 303.621 255.085 l 303.621 246.835 l 311.871 +246.835 l 311.871 238.585 l 294.621 238.585 l 294.621 229.585 l 329.121 +229.585 l 329.121 237.835 l 337.371 237.835 l 337.371 221.335 l 320.121 +221.335 l 320.121 204.835 l 312.621 204.835 l 312.621 221.335 l 303.621 +221.335 l 303.621 213.085 l 294.621 213.085 l 294.621 195.835 l 287.121 +195.835 l 287.121 204.835 l 261.621 204.835 l 261.621 213.085 l 252.621 +213.085 l 252.621 204.085 l 260.871 204.085 l 260.871 195.835 l 269.121 +195.835 l 269.121 187.585 l 253.371 187.585 l 253.371 195.835 l 244.371 +195.835 l 244.371 186.835 l 252.621 186.835 l 252.621 170.335 l 269.871 +170.335 l 269.871 178.585 l 278.121 178.585 l 278.121 162.085 l 236.121 +162.085 l h +287.121 170.335 m 287.121 178.585 l 295.371 178.585 l 295.371 186.835 l + 320.121 186.835 l 320.121 179.335 l 303.621 179.335 l 303.621 171.159 l + 299.309 170.937 l 294.996 170.71 l 294.77 166.398 l 294.547 162.085 l 287.121 + 162.085 l h +303.621 166.21 m 303.621 170.335 l 311.871 170.335 l 311.871 162.085 l +303.621 162.085 l h +329.121 166.585 m 329.121 171.085 l 320.871 171.085 l 320.871 178.585 l + 329.121 178.585 l 329.121 187.585 l 320.871 187.585 l 320.871 204.085 l + 329.121 204.085 l 329.121 195.835 l 337.371 195.835 l 337.371 186.835 l + 345.621 186.835 l 345.621 179.335 l 337.371 179.335 l 337.371 170.335 l + 353.871 170.335 l 353.871 162.085 l 329.121 162.085 l h +362.871 166.21 m 362.871 170.335 l 371.121 170.335 l 371.121 162.085 l +362.871 162.085 l h +388.371 170.335 m 388.371 178.585 l 405.621 178.585 l 405.621 186.835 l + 413.871 186.835 l 413.871 162.085 l 388.371 162.085 l h +422.871 166.21 m 422.871 170.335 l 430.371 170.335 l 430.371 162.085 l +422.871 162.085 l h +439.371 166.21 m 439.371 170.335 l 447.621 170.335 l 447.621 162.085 l +439.371 162.085 l h +371.871 174.835 m 371.871 178.585 l 379.371 178.585 l 379.371 171.085 l + 371.871 171.085 l h +278.121 183.085 m 278.121 186.835 l 286.371 186.835 l 286.371 179.335 l + 278.121 179.335 l h +380.121 183.085 m 380.121 186.835 l 388.371 186.835 l 388.371 179.335 l + 380.121 179.335 l h +422.871 187.585 m 422.871 195.835 l 431.121 195.835 l 431.121 204.085 l + 447.621 204.085 l 447.621 179.335 l 422.871 179.335 l h +202.371 195.835 m 202.371 204.085 l 209.871 204.085 l 209.871 195.835 l + 218.871 195.835 l 218.871 187.585 l 202.371 187.585 l h +362.871 195.835 m 362.871 204.085 l 371.906 204.085 l 371.699 217.023 l + 371.496 229.96 l 358.934 230.167 l 346.371 230.37 l 346.371 237.835 l 380.121 + 237.835 l 380.121 246.835 l 388.371 246.835 l 388.371 255.085 l 396.621 + 255.085 l 396.621 246.835 l 388.371 246.835 l 388.371 237.835 l 405.621 + 237.835 l 405.621 263.335 l 413.871 263.335 l 413.871 255.085 l 422.121 + 255.085 l 422.121 238.585 l 413.871 238.585 l 413.871 229.585 l 438.621 + 229.585 l 438.621 221.335 l 413.871 221.335 l 413.871 212.335 l 422.121 + 212.335 l 422.121 204.835 l 413.871 204.835 l 413.871 195.835 l 404.871 + 195.835 l 404.871 187.585 l 397.371 187.585 l 397.371 195.835 l 371.121 + 195.835 l 371.121 187.585 l 362.871 187.585 l h +405.621 217.23 m 405.621 230.37 l 392.684 230.167 l 379.746 229.96 l 379.539 + 217.023 l 379.336 204.085 l 405.621 204.085 l h +388.371 217.21 m 388.371 221.335 l 396.621 221.335 l 396.621 213.085 l +388.371 213.085 l h +303.621 199.96 m 303.621 204.085 l 311.871 204.085 l 311.871 195.835 l +303.621 195.835 l h +218.871 208.585 m 218.871 212.335 l 227.121 212.335 l 227.121 204.835 l + 218.871 204.835 l h +354.621 208.585 m 354.621 212.335 l 362.871 212.335 l 362.871 204.835 l + 354.621 204.835 l h +202.207 221.523 m 201.996 229.96 l 189.434 230.167 l 176.871 230.37 l 176.871 + 238.585 l 167.871 238.585 l 167.871 255.835 l 159.621 255.835 l 159.621 + 271.585 l 167.871 271.585 l 167.871 280.585 l 176.871 280.585 l 176.871 + 288.835 l 201.621 288.835 l 201.621 272.335 l 193.371 272.335 l 193.371 + 280.585 l 184.297 280.585 l 184.52 276.273 l 184.746 271.96 l 189.059 271.737 + l 193.371 271.511 l 193.371 264.159 l 189.059 263.937 l 184.746 263.71 +l 184.293 255.835 l 176.121 255.835 l 176.121 246.835 l 184.297 246.835 +l 184.52 242.523 l 184.746 238.21 l 189.059 237.987 l 193.371 237.761 l +193.371 246.835 l 185.121 246.835 l 185.121 255.085 l 193.371 255.085 l +193.371 263.335 l 218.871 263.335 l 218.871 255.909 l 214.559 255.687 l +210.246 255.46 l 210.02 251.148 l 209.797 246.835 l 201.621 246.835 l 201.621 + 237.835 l 209.871 237.835 l 209.871 221.335 l 218.871 221.335 l 218.871 + 213.085 l 202.418 213.085 l h +338.121 217.21 m 338.121 221.335 l 353.871 221.335 l 353.871 213.085 l +338.121 213.085 l h +439.371 217.21 m 439.371 221.335 l 447.621 221.335 l 447.621 213.085 l +439.371 213.085 l h +134.121 259.585 m 134.121 288.835 l 158.871 288.835 l 158.871 280.585 l + 150.621 280.585 l 150.621 272.335 l 142.371 272.335 l 142.371 263.335 l + 150.621 263.335 l 150.621 255.085 l 158.871 255.085 l 158.871 238.585 l + 151.371 238.585 l 151.371 246.835 l 142.371 246.835 l 142.371 230.335 l + 134.121 230.335 l h +159.621 234.085 m 159.621 237.835 l 167.871 237.835 l 167.871 230.335 l + 159.621 230.335 l h +218.871 234.085 m 218.871 237.835 l 227.121 237.835 l 227.121 230.335 l + 218.871 230.335 l h +439.371 234.085 m 439.371 237.835 l 447.621 237.835 l 447.621 230.335 l + 439.371 230.335 l h +236.121 242.71 m 236.121 246.835 l 244.371 246.835 l 244.371 255.085 l +252.621 255.085 l 252.621 238.585 l 236.121 238.585 l h +338.121 255.085 m 338.121 271.585 l 345.621 271.585 l 345.621 263.335 l + 353.871 263.335 l 353.871 255.913 l 345.996 255.46 l 345.781 247.023 l +345.57 238.585 l 338.121 238.585 l h +227.871 255.085 m 227.871 263.335 l 244.371 263.335 l 244.371 255.909 l + 240.059 255.687 l 235.746 255.46 l 235.293 246.835 l 227.871 246.835 l +h +261.469 251.148 m 261.246 255.46 l 253.418 255.913 l 252.996 271.96 l 244.559 + 272.171 l 236.121 272.386 l 236.121 280.585 l 227.871 280.585 l 227.871 + 288.835 l 236.121 288.835 l 236.121 306.085 l 227.871 306.085 l 227.871 + 314.335 l 244.371 314.335 l 244.371 306.085 l 256.371 306.085 l 256.371 + 297.835 l 244.371 297.835 l 244.371 288.835 l 252.621 288.835 l 252.621 + 280.585 l 260.793 280.585 l 261.246 271.96 l 269.121 271.507 l 269.121 +255.085 l 278.121 255.085 l 278.121 246.835 l 261.695 246.835 l h +320.871 250.96 m 320.871 255.085 l 329.121 255.085 l 329.121 246.835 l +320.871 246.835 l h +371.871 250.96 m 371.871 255.085 l 379.371 255.085 l 379.371 246.835 l +371.871 246.835 l h +431.121 255.085 m 431.121 263.335 l 438.621 263.335 l 438.621 246.835 l + 431.121 246.835 l h +287.121 259.585 m 287.121 263.335 l 294.621 263.335 l 294.621 255.835 l + 287.121 255.835 l h +303.621 259.585 m 303.621 263.335 l 311.871 263.335 l 311.871 255.835 l + 303.621 255.835 l h +362.871 264.085 m 362.871 272.335 l 354.621 272.335 l 354.621 280.585 l + 388.371 280.585 l 388.371 288.835 l 404.871 288.835 l 404.871 272.335 l + 396.621 272.335 l 396.621 264.085 l 388.371 264.085 l 388.371 272.335 l + 379.371 272.335 l 379.371 264.085 l 371.121 264.085 l 371.121 255.835 l + 362.871 255.835 l h +380.121 259.585 m 380.121 263.335 l 388.371 263.335 l 388.371 255.835 l + 380.121 255.835 l h +312.621 268.21 m 312.621 272.335 l 278.121 272.335 l 278.121 280.585 l +273.996 280.585 l 270.094 280.585 269.871 280.687 269.871 282.46 c 269.871 + 284.234 270.094 284.335 273.996 284.335 c 277.895 284.335 278.121 284.234 + 278.121 282.46 c 278.121 280.585 l 320.871 280.585 l 320.871 282.296 l +320.871 283.507 321.527 284.253 323.121 284.855 c 324.609 285.417 325.371 + 286.222 325.371 287.241 c 325.371 288.644 325.895 288.792 331.559 288.991 + c 337.746 289.21 l 338.199 297.085 l 345.621 297.085 l 345.621 288.835 +l 353.871 288.835 l 353.871 280.585 l 329.121 280.585 l 329.121 264.085 +l 312.621 264.085 l h +413.871 280.585 m 413.871 297.085 l 438.543 297.085 l 438.996 289.21 l +443.309 288.987 l 447.621 288.761 l 447.621 264.085 l 439.371 264.085 l +439.371 272.335 l 431.121 272.335 l 431.121 289.585 l 422.074 289.585 l +422.496 271.96 l 430.371 271.507 l 430.371 264.085 l 413.871 264.085 l h +210.621 276.46 m 210.621 280.585 l 218.871 280.585 l 218.871 272.335 l +210.621 272.335 l h +159.621 293.335 m 159.621 297.085 l 176.121 297.085 l 176.121 289.585 l + 159.621 289.585 l h +218.871 293.71 m 218.871 297.835 l 210.621 297.835 l 210.621 306.085 l +227.121 306.085 l 227.121 289.585 l 218.871 289.585 l h +354.621 293.335 m 354.621 297.085 l 362.871 297.085 l 362.871 322.585 l + 371.121 322.585 l 371.121 314.335 l 388.371 314.335 l 388.371 306.085 l + 404.871 306.085 l 404.871 297.835 l 388.371 297.835 l 388.371 289.585 l + 380.121 289.585 l 380.121 306.085 l 371.121 306.085 l 371.121 289.585 l + 354.621 289.585 l h +134.121 301.96 m 134.121 306.085 l 158.871 306.085 l 158.871 297.835 l +134.121 297.835 l h +176.871 301.96 m 176.871 306.085 l 193.371 306.085 l 193.371 297.835 l +176.871 297.835 l h +329.121 301.96 m 329.121 306.085 l 337.371 306.085 l 337.371 297.835 l +329.121 297.835 l h +346.371 301.96 m 346.371 306.085 l 353.871 306.085 l 353.871 297.835 l +346.371 297.835 l h +202.371 314.335 m 202.371 322.585 l 209.871 322.585 l 209.871 306.085 l + 202.371 306.085 l h +338.121 318.835 m 338.121 331.585 l 345.621 331.585 l 345.621 322.585 l + 353.871 322.585 l 353.871 315.085 l 345.621 315.085 l 345.621 306.085 l + 338.121 306.085 l h +405.621 310.21 m 405.621 314.335 l 413.871 314.335 l 413.871 339.835 l +431.121 339.835 l 431.121 348.085 l 438.543 348.085 l 438.996 340.21 l 443.309 + 339.987 l 447.621 339.761 l 447.621 315.085 l 439.371 315.085 l 439.371 + 323.335 l 422.121 323.335 l 422.121 306.085 l 405.621 306.085 l h +151.371 319.171 m 151.371 323.335 l 143.121 323.335 l 143.121 339.835 l + 158.871 339.835 l 158.871 328.21 l 158.871 321.816 158.953 316.331 159.059 + 316.023 c 159.16 315.714 157.473 315.359 155.309 315.234 c 151.371 315.007 + l h +167.871 318.835 m 167.871 322.585 l 176.121 322.585 l 176.121 315.085 l + 167.871 315.085 l h +185.121 318.835 m 185.121 322.585 l 193.371 322.585 l 193.371 315.085 l + 185.121 315.085 l h +244.371 319.21 m 244.371 323.335 l 236.121 323.335 l 236.121 331.585 l +244.371 331.585 l 244.371 339.835 l 252.621 339.835 l 252.621 335.71 l 252.621 + 331.812 252.723 331.585 254.496 331.585 c 256.27 331.585 256.371 331.359 + 256.371 327.46 c 256.371 323.562 256.266 323.335 254.496 323.335 c 252.723 + 323.335 252.621 323.109 252.621 319.21 c 252.621 315.085 l 244.371 315.085 + l h +325.371 318.835 m 325.371 322.335 325.496 322.585 327.246 322.585 c 328.996 + 322.585 329.121 322.335 329.121 318.835 c 329.121 315.335 328.996 315.085 + 327.246 315.085 c 325.496 315.085 325.371 315.335 325.371 318.835 c h +388.371 318.835 m 388.371 322.585 l 397.371 322.585 l 397.371 331.585 l + 404.871 331.585 l 404.871 315.085 l 388.371 315.085 l h +193.371 327.46 m 193.371 331.585 l 185.121 331.585 l 185.121 339.835 l +193.371 339.835 l 193.371 331.585 l 201.621 331.585 l 201.621 323.335 l +193.371 323.335 l h +210.621 331.585 m 210.621 339.835 l 218.871 339.835 l 218.871 331.585 l + 227.121 331.585 l 227.121 323.335 l 210.621 323.335 l h +329.121 335.71 m 329.121 339.835 l 337.371 339.835 l 337.371 331.585 l +329.121 331.585 l h +362.871 335.71 m 362.871 339.835 l 379.371 339.835 l 379.371 331.585 l +362.871 331.585 l h +388.371 340.21 m 388.371 348.835 l 371.871 348.835 l 371.871 356.335 l +388.371 356.335 l 388.371 365.335 l 380.121 365.335 l 380.121 373.585 l +397.371 373.585 l 397.371 381.835 l 404.871 381.835 l 404.871 365.335 l +413.871 365.335 l 413.871 357.085 l 396.621 357.085 l 396.621 348.085 l +413.871 348.085 l 413.871 340.585 l 396.621 340.585 l 396.621 331.585 l +388.371 331.585 l h +134.121 344.335 m 134.121 348.085 l 142.371 348.085 l 142.371 340.585 l + 134.121 340.585 l h +159.621 344.335 m 159.621 348.085 l 167.871 348.085 l 167.871 340.585 l + 159.621 340.585 l h +176.871 348.46 m 176.871 356.335 l 209.871 356.335 l 209.871 348.835 l +201.621 348.835 l 201.621 340.585 l 193.371 340.585 l 193.371 348.909 l +189.059 348.687 l 184.746 348.46 l 184.293 340.585 l 176.871 340.585 l h +218.871 352.96 m 218.871 365.335 l 202.371 365.335 l 202.371 382.585 l +185.121 382.585 l 185.121 390.835 l 202.371 390.835 l 202.371 399.085 l +210.621 399.085 l 210.621 407.335 l 218.871 407.335 l 218.871 381.835 l +235.371 381.835 l 235.371 374.335 l 227.121 374.335 l 227.121 365.335 l +244.371 365.335 l 244.371 373.585 l 252.621 373.585 l 252.621 365.335 l +244.371 365.335 l 244.371 356.261 l 248.684 356.487 l 252.996 356.71 l 253.219 + 361.023 l 253.445 365.335 l 260.797 365.335 l 261.02 361.023 l 261.246 +356.71 l 278.121 356.288 l 278.121 373.585 l 286.371 373.585 l 286.371 365.335 + l 294.621 365.335 l 294.621 357.085 l 290.496 357.085 l 286.594 357.085 + 286.371 356.984 286.371 355.21 c 286.371 353.335 l 272.547 353.335 l 260.984 + 353.335 258.535 353.144 257.547 352.155 c 256.902 351.507 256.371 350.495 + 256.371 349.905 c 256.371 349.069 255.07 348.835 250.371 348.835 c 244.371 + 348.835 l 244.371 340.585 l 236.121 340.585 l 236.121 348.835 l 227.121 + 348.835 l 227.121 340.585 l 218.871 340.585 l h +338.121 344.335 m 338.121 348.085 l 345.621 348.085 l 345.621 340.585 l + 338.121 340.585 l h +354.621 348.835 m 354.621 357.085 l 329.121 357.085 l 329.121 373.585 l + 337.371 373.585 l 337.371 365.335 l 362.871 365.335 l 362.871 381.835 l + 371.121 381.835 l 371.121 357.085 l 362.871 357.085 l 362.871 340.585 l + 354.621 340.585 l h +413.871 352.585 m 413.871 356.335 l 422.121 356.335 l 422.121 348.835 l + 413.871 348.835 l h +439.371 352.96 m 439.371 357.085 l 431.121 357.085 l 431.121 365.335 l +439.371 365.335 l 439.371 374.335 l 430.371 374.335 l 430.371 365.335 l +422.945 365.335 l 422.719 369.648 l 422.496 373.96 l 418.184 374.187 l 413.871 + 374.409 l 413.871 381.835 l 431.121 381.835 l 431.121 390.835 l 413.871 + 390.835 l 413.871 382.585 l 405.621 382.585 l 405.621 390.835 l 396.621 + 390.835 l 396.621 382.585 l 388.371 382.585 l 388.371 390.835 l 379.371 + 390.835 l 379.371 382.585 l 371.871 382.585 l 371.871 399.835 l 362.871 + 399.835 l 362.871 416.335 l 354.621 416.335 l 354.621 424.585 l 362.871 + 424.585 l 362.871 416.335 l 371.121 416.335 l 371.121 407.335 l 379.371 + 407.335 l 379.371 399.085 l 413.871 399.085 l 413.871 407.335 l 430.371 + 407.335 l 430.371 399.085 l 438.57 399.085 l 438.781 390.648 l 438.996 +382.21 l 443.309 381.987 l 447.621 381.761 l 447.621 348.835 l 439.371 348.835 + l h +295.371 354.835 m 295.371 356.276 295.871 356.335 307.746 356.335 c 319.621 + 356.335 320.121 356.276 320.121 354.835 c 320.121 353.398 319.621 353.335 + 307.746 353.335 c 295.871 353.335 295.371 353.398 295.371 354.835 c h +143.121 361.21 m 143.121 365.335 l 150.621 365.335 l 150.621 357.085 l +143.121 357.085 l h +134.121 369.46 m 134.121 373.585 l 142.371 373.585 l 142.371 365.335 l +134.121 365.335 l h +168.371 365.835 m 168.094 366.109 167.871 368.136 167.871 370.335 c 167.871 + 374.335 l 159.621 374.335 l 159.621 381.835 l 167.871 381.835 l 167.871 + 399.835 l 159.621 399.835 l 159.621 407.335 l 176.121 407.335 l 176.121 + 373.585 l 193.371 373.585 l 193.371 365.335 l 181.121 365.335 l 174.383 + 365.335 168.645 365.562 168.371 365.835 c h +295.371 386.71 m 295.371 408.085 l 286.371 408.085 l 286.371 390.835 l +278.121 390.835 l 278.121 382.585 l 269.871 382.585 l 269.871 390.835 l +278.121 390.835 l 278.121 416.335 l 269.871 416.335 l 269.871 424.585 l +278.121 424.585 l 278.121 416.335 l 287.195 416.335 l 286.969 420.648 l +286.746 424.96 l 282.434 425.187 l 278.121 425.409 l 278.121 432.835 l 287.121 + 432.835 l 287.121 441.835 l 278.121 441.835 l 278.121 433.585 l 269.871 + 433.585 l 269.871 441.835 l 261.621 441.835 l 261.621 458.335 l 269.871 + 458.335 l 269.871 466.585 l 278.121 466.585 l 278.121 475.585 l 286.371 + 475.585 l 286.371 459.085 l 278.121 459.085 l 278.121 450.085 l 287.121 + 450.085 l 287.121 458.335 l 294.621 458.335 l 294.621 450.085 l 303.621 + 450.085 l 303.621 458.335 l 320.871 458.335 l 320.871 475.585 l 329.121 + 475.585 l 329.121 450.909 l 324.809 450.687 l 320.496 450.46 l 320.27 446.148 + l 320.047 441.835 l 338.121 441.835 l 338.121 450.085 l 345.621 450.085 + l 345.621 432.835 l 353.871 432.835 l 353.871 425.413 l 345.996 424.96 +l 345.77 420.648 l 345.547 416.335 l 338.195 416.335 l 337.969 420.648 l + 337.746 424.96 l 333.434 425.187 l 329.121 425.409 l 329.121 433.585 l +320.121 433.585 l 320.121 425.335 l 312.621 425.335 l 312.621 433.585 l +294.621 433.585 l 294.621 416.335 l 303.621 416.335 l 303.621 424.585 l +311.871 424.585 l 311.871 416.335 l 320.121 416.335 l 320.121 408.085 l +311.871 408.085 l 311.871 382.585 l 303.621 382.585 l 303.621 365.335 l +295.371 365.335 l h +143.121 378.085 m 143.121 381.835 l 150.621 381.835 l 150.621 374.335 l + 143.121 374.335 l h +253.371 386.71 m 253.371 399.085 l 269.121 399.085 l 269.121 390.835 l +260.871 390.835 l 260.871 374.335 l 253.371 374.335 l h +312.621 378.085 m 312.621 381.835 l 320.121 381.835 l 320.121 374.335 l + 312.621 374.335 l h +151.371 386.71 m 151.371 390.835 l 158.871 390.835 l 158.871 382.585 l +151.371 382.585 l h +320.871 386.71 m 320.871 390.835 l 337.371 390.835 l 337.371 382.585 l +320.871 382.585 l h +346.371 386.71 m 346.371 390.835 l 353.871 390.835 l 353.871 382.585 l +346.371 382.585 l h +134.121 394.96 m 134.121 399.085 l 150.621 399.085 l 150.621 390.835 l +134.121 390.835 l h +227.871 394.96 m 227.871 399.085 l 244.371 399.085 l 244.371 390.835 l +227.871 390.835 l h +354.621 394.96 m 354.621 399.085 l 362.871 399.085 l 362.871 390.835 l +354.621 390.835 l h +185.121 403.585 m 185.121 407.335 l 201.621 407.335 l 201.621 399.835 l + 185.121 399.835 l h +329.121 408.085 m 329.121 416.335 l 320.871 416.335 l 320.871 424.585 l + 329.121 424.585 l 329.121 416.335 l 337.371 416.335 l 337.371 407.335 l + 346.371 407.335 l 346.371 416.335 l 353.871 416.335 l 353.871 399.835 l + 329.121 399.835 l h +227.871 412.21 m 227.871 416.335 l 236.121 416.335 l 236.121 432.835 l +244.371 432.835 l 244.371 416.335 l 253.371 416.335 l 253.371 432.835 l +260.871 432.835 l 260.871 408.085 l 227.871 408.085 l h +134.121 445.96 m 134.121 475.585 l 193.371 475.585 l 193.371 416.335 l +134.121 416.335 l h +185.121 445.96 m 185.121 467.335 l 142.371 467.335 l 142.371 424.585 l +185.121 424.585 l h +151.371 445.96 m 151.371 458.335 l 176.121 458.335 l 176.121 433.585 l +151.371 433.585 l h +202.371 420.46 m 202.371 424.585 l 209.871 424.585 l 209.871 416.335 l +202.371 416.335 l h +218.871 424.585 m 218.871 432.835 l 227.121 432.835 l 227.121 416.335 l + 218.871 416.335 l h +371.719 420.648 m 371.496 424.96 l 367.184 425.187 l 362.871 425.409 l +362.871 432.835 l 371.871 432.835 l 371.871 441.835 l 379.371 441.835 l +379.371 416.335 l 371.945 416.335 l h +388.371 445.96 m 388.371 475.585 l 447.621 475.585 l 447.621 416.335 l +388.371 416.335 l h +439.371 445.96 m 439.371 467.335 l 396.621 467.335 l 396.621 424.585 l +439.371 424.585 l h +405.621 445.96 m 405.621 458.335 l 430.371 458.335 l 430.371 433.585 l +405.621 433.585 l h +210.621 437.71 m 210.621 441.835 l 218.871 441.835 l 218.871 450.085 l +227.871 450.085 l 227.871 467.335 l 218.871 467.335 l 218.871 475.585 l +235.371 475.585 l 235.371 458.335 l 244.371 458.335 l 244.371 441.835 l +218.871 441.835 l 218.871 433.585 l 210.621 433.585 l h +202.371 450.085 m 202.371 458.335 l 209.871 458.335 l 209.871 441.835 l + 202.371 441.835 l h +346.371 454.96 m 346.371 459.085 l 338.121 459.085 l 338.121 466.507 l +345.996 466.96 l 346.219 471.273 l 346.445 475.585 l 353.871 475.585 l 353.871 + 450.835 l 346.371 450.835 l h +362.871 454.585 m 362.871 458.335 l 371.121 458.335 l 371.121 450.835 l + 362.871 450.835 l h +210.621 462.835 m 210.621 466.585 l 218.871 466.585 l 218.871 459.085 l + 210.621 459.085 l h +295.371 462.835 m 295.371 466.585 l 303.621 466.585 l 303.621 459.085 l + 295.371 459.085 l h +244.371 471.46 m 244.371 475.585 l 252.621 475.585 l 252.621 467.335 l +244.371 467.335 l h +303.621 471.46 m 303.621 475.585 l 311.871 475.585 l 311.871 467.335 l +303.621 467.335 l h +303.621 471.46 m f +Q Q +showpage +%%Trailer +end restore +%%EOF diff --git a/Master/texmf-dist/doc/latex/hithesis/wct10.eps b/Master/texmf-dist/doc/latex/hithesis/wct10.eps new file mode 100644 index 00000000000..6507a6cbbac --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/wct10.eps @@ -0,0 +1,425 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 21:04:42 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 153 208 467 523 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 153 208 467 523 +%%EndPageSetup +q 153 208 314 315 rectclip q +0 g +153.113 238.859 m 153.113 268.484 l 212.363 268.484 l 212.363 209.234 l + 153.113 209.234 l h +204.113 238.859 m 204.113 260.234 l 161.363 260.234 l 161.363 217.484 l + 204.113 217.484 l h +170.363 238.859 m 170.363 251.234 l 195.113 251.234 l 195.113 226.484 l + 170.363 226.484 l h +229.613 217.484 m 229.613 225.734 l 246.113 225.734 l 246.113 218.234 l + 237.863 218.234 l 237.863 209.234 l 229.613 209.234 l h +246.863 213.359 m 246.863 217.484 l 255.113 217.484 l 255.113 234.734 l + 237.863 234.734 l 237.863 242.984 l 228.863 242.984 l 228.863 226.484 l + 221.363 226.484 l 221.363 251.234 l 237.863 251.234 l 237.863 242.984 l + 263.363 242.984 l 263.363 225.734 l 279.863 225.734 l 279.863 218.312 l + 271.988 217.859 l 271.766 213.546 l 271.539 209.234 l 246.863 209.234 l + h +297.113 217.484 m 297.113 225.734 l 314.363 225.734 l 314.363 233.984 l + 322.613 233.984 l 322.613 242.984 l 313.613 242.984 l 313.613 234.734 l + 306.113 234.734 l 306.113 251.234 l 314.363 251.234 l 314.363 259.484 l + 322.613 259.484 l 322.613 268.484 l 306.113 268.484 l 306.113 276.734 l + 322.613 276.734 l 322.613 285.734 l 297.113 285.734 l 297.113 310.484 l + 305.363 310.484 l 305.363 293.984 l 314.363 293.984 l 314.363 310.484 l + 339.113 310.484 l 339.113 302.984 l 330.863 302.984 l 330.863 294.03 l +347.738 293.609 l 348.191 285.734 l 330.863 285.734 l 330.863 276.734 l +339.113 276.734 l 339.113 251.234 l 348.113 251.234 l 348.113 242.984 l +356.363 242.984 l 356.363 233.984 l 364.613 233.984 l 364.613 226.484 l +356.363 226.484 l 356.363 222.171 l 356.367 217.859 l 352.238 218.116 l +348.113 218.37 l 348.113 226.484 l 339.113 226.484 l 339.113 217.484 l 348.113 + 217.484 l 348.113 209.234 l 297.113 209.234 l h +331.465 247.296 m 331.238 251.609 l 326.926 251.831 l 322.613 252.058 l + 322.613 242.984 l 331.688 242.984 l h +365.363 217.484 m 365.363 225.734 l 372.863 225.734 l 372.863 217.484 l + 381.863 217.484 l 381.863 209.234 l 365.363 209.234 l h +390.863 217.484 m 390.863 225.734 l 415.613 225.734 l 415.613 218.28 l +398.738 217.859 l 398.516 213.546 l 398.289 209.234 l 390.863 209.234 l +h +416.363 213.359 m 416.363 217.484 l 423.863 217.484 l 423.863 209.234 l + 416.363 209.234 l h +432.863 213.359 m 432.863 217.484 l 441.113 217.484 l 441.113 209.234 l + 432.863 209.234 l h +450.113 217.484 m 450.113 225.734 l 457.535 225.734 l 457.988 217.859 l + 462.301 217.632 l 466.613 217.409 l 466.613 209.234 l 450.113 209.234 l + h +280.613 230.234 m 280.613 233.984 l 288.863 233.984 l 288.863 242.984 l + 297.113 242.984 l 297.113 226.484 l 280.613 226.484 l h +373.613 234.734 m 373.613 242.984 l 381.863 242.984 l 381.863 226.484 l + 373.613 226.484 l h +416.363 230.234 m 416.363 233.984 l 423.863 233.984 l 423.863 226.484 l + 416.363 226.484 l h +432.863 230.234 m 432.863 233.984 l 449.363 233.984 l 449.363 226.484 l + 432.863 226.484 l h +458.363 230.609 m 458.363 234.734 l 450.113 234.734 l 450.113 242.984 l + 441.863 242.984 l 441.863 251.234 l 466.613 251.234 l 466.613 226.484 l + 458.363 226.484 l h +272.363 242.984 m 272.363 251.234 l 280.613 251.234 l 280.613 260.234 l + 263.363 260.234 l 263.363 268.484 l 255.113 268.484 l 255.113 276.734 l + 263.363 276.734 l 263.363 268.484 l 288.113 268.484 l 288.113 242.984 l + 279.863 242.984 l 279.863 234.734 l 272.363 234.734 l h +424.613 238.859 m 424.613 242.984 l 390.863 242.984 l 390.863 251.984 l + 373.613 251.984 l 373.613 268.484 l 390.938 268.484 l 390.715 272.796 l + 390.488 277.109 l 386.176 277.331 l 381.863 277.558 l 381.863 284.984 l + 390.863 284.984 l 390.863 293.984 l 381.863 293.984 l 381.863 285.734 l + 373.613 285.734 l 373.613 293.984 l 381.863 293.984 l 381.863 302.234 l + 390.863 302.234 l 390.863 310.484 l 398.363 310.484 l 398.363 293.984 l + 407.363 293.984 l 407.363 302.234 l 441.113 302.234 l 441.113 293.984 l + 458.363 293.984 l 458.363 302.984 l 450.113 302.984 l 450.113 318.655 l + 457.988 319.109 l 458.215 323.421 l 458.438 327.734 l 466.613 327.734 l + 466.613 277.484 l 432.863 277.484 l 432.863 234.734 l 424.613 234.734 l + h +424.613 264.374 m 424.613 277.519 l 411.676 277.312 l 398.738 277.109 l + 398.535 264.171 l 398.328 251.234 l 424.613 251.234 l h +407.363 264.359 m 407.363 268.484 l 415.613 268.484 l 415.613 260.234 l + 407.363 260.234 l h +416.363 289.484 m 416.363 293.984 l 407.363 293.984 l 407.363 284.984 l + 416.363 284.984 l h +432.863 289.484 m 432.863 293.984 l 423.863 293.984 l 423.863 284.984 l + 432.863 284.984 l h +357.113 247.109 m 357.113 251.234 l 372.863 251.234 l 372.863 242.984 l + 357.113 242.984 l h +237.863 272.984 m 237.863 293.984 l 229.613 293.984 l 229.613 302.234 l + 237.863 302.234 l 237.863 293.984 l 246.113 293.984 l 246.113 284.984 l + 254.363 284.984 l 254.363 277.484 l 246.113 277.484 l 246.113 268.484 l + 254.363 268.484 l 254.363 260.234 l 246.113 260.234 l 246.113 251.984 l + 237.863 251.984 l h +297.113 264.359 m 297.113 268.484 l 288.863 268.484 l 288.863 277.484 l + 272.441 277.484 l 271.988 285.359 l 263.551 285.569 l 255.113 285.784 l + 255.113 293.984 l 288.039 293.984 l 288.266 289.671 l 288.488 285.359 l + 292.801 285.132 l 297.113 284.909 l 297.113 268.484 l 305.363 268.484 l + 305.363 260.234 l 297.113 260.234 l h +348.113 268.484 m 348.113 276.734 l 356.363 276.734 l 356.363 268.484 l + 364.613 268.484 l 364.613 260.234 l 348.113 260.234 l h +441.863 264.359 m 441.863 268.484 l 466.613 268.484 l 466.613 260.234 l + 441.863 260.234 l h +221.363 272.609 m 221.363 276.734 l 228.863 276.734 l 228.863 268.484 l + 221.363 268.484 l h +153.113 298.109 m 153.113 318.734 l 161.363 318.734 l 161.363 310.484 l + 170.363 310.484 l 170.363 318.734 l 177.812 318.734 l 178.027 310.671 l + 178.238 302.609 l 182.551 302.382 l 186.863 302.159 l 186.863 285.808 l + 182.551 285.585 l 178.238 285.359 l 177.785 277.484 l 170.363 277.484 l + 170.363 302.984 l 161.363 302.984 l 161.363 277.484 l 153.113 277.484 l + h +186.863 281.234 m 186.863 284.984 l 195.91 284.984 l 195.488 302.609 l +191.176 302.835 l 186.863 303.058 l 186.863 310.484 l 203.363 310.484 l +203.363 302.234 l 212.363 302.234 l 212.363 310.484 l 220.613 310.484 l +220.613 293.984 l 228.863 293.984 l 228.863 285.734 l 212.363 285.734 l +212.363 293.984 l 203.289 293.984 l 203.516 289.671 l 203.738 285.359 l +208.051 285.132 l 212.363 284.909 l 212.363 277.484 l 186.863 277.484 l +h +356.941 294.171 m 356.738 310.859 l 352.426 311.085 l 348.113 311.308 l + 348.113 327.734 l 356.289 327.734 l 356.516 323.421 l 356.738 319.109 l + 364.613 318.655 l 364.613 302.234 l 372.863 302.234 l 372.863 293.984 l + 364.613 293.984 l 364.613 284.984 l 372.863 284.984 l 372.863 277.484 l + 357.145 277.484 l h +246.863 310.859 m 246.863 318.734 l 254.363 318.734 l 254.363 302.984 l + 246.863 302.984 l h +263.363 306.734 m 263.363 310.484 l 271.613 310.484 l 271.613 302.984 l + 263.363 302.984 l h +373.613 310.859 m 373.613 318.734 l 390.113 318.734 l 390.113 311.234 l + 381.863 311.234 l 381.863 302.984 l 373.613 302.984 l h +204.113 314.984 m 204.113 318.734 l 212.363 318.734 l 212.363 311.234 l + 204.113 311.234 l h +229.613 314.984 m 229.613 318.734 l 237.863 318.734 l 237.863 311.234 l + 229.613 311.234 l h +280.613 319.484 m 280.613 327.734 l 284.738 327.734 l 288.641 327.734 288.863 + 327.835 288.863 329.609 c 288.863 331.382 289.09 331.484 292.988 331.484 + c 297.113 331.484 l 297.113 311.234 l 280.613 311.234 l h +407.363 314.944 m 407.363 318.659 l 411.676 318.882 l 415.988 319.109 l + 416.215 323.421 l 416.438 327.734 l 407.363 327.734 l 407.363 319.484 l + 399.113 319.484 l 399.113 327.734 l 407.363 327.734 l 407.363 335.984 l + 424.613 335.984 l 424.613 344.234 l 432.863 344.234 l 432.863 335.984 l + 449.363 335.984 l 449.363 327.734 l 441.113 327.734 l 441.113 319.484 l + 432.863 319.484 l 432.863 327.734 l 423.863 327.734 l 423.863 311.234 l + 407.363 311.234 l h +178.613 323.609 m 178.613 327.734 l 186.863 327.734 l 186.863 319.484 l + 178.613 319.484 l h +195.863 323.609 m 195.863 327.734 l 203.363 327.734 l 203.363 319.484 l + 195.863 319.484 l h +212.363 323.609 m 212.363 327.734 l 204.113 327.734 l 204.113 335.984 l + 212.363 335.984 l 212.363 344.984 l 195.113 344.984 l 195.113 336.734 l + 186.863 336.734 l 186.863 353.234 l 220.613 353.234 l 220.613 319.484 l + 212.363 319.484 l h +237.863 323.609 m 237.863 327.734 l 229.613 327.734 l 229.613 361.484 l + 237.863 361.484 l 237.863 335.984 l 255.113 335.984 l 255.113 344.234 l + 263.414 344.234 l 263.203 336.171 l 262.988 328.109 l 254.551 327.898 l + 246.113 327.683 l 246.113 319.484 l 237.863 319.484 l h +306.113 325.484 m 306.113 331.484 l 313.613 331.484 l 313.613 319.484 l + 306.113 319.484 l h +322.613 325.484 m 322.613 331.484 l 326.738 331.484 l 330.641 331.484 330.863 + 331.382 330.863 329.609 c 330.863 327.835 331.09 327.734 334.988 327.734 + c 339.113 327.734 l 339.113 319.484 l 322.613 319.484 l h +365.363 323.609 m 365.363 327.734 l 357.113 327.734 l 357.113 344.234 l + 364.613 344.234 l 364.613 335.984 l 372.863 335.984 l 372.863 319.484 l + 365.363 319.484 l h +153.113 331.859 m 153.113 335.984 l 162.113 335.984 l 162.113 353.234 l + 153.113 353.234 l 153.113 369.659 l 157.426 369.882 l 161.738 370.109 l + 161.965 374.421 l 162.188 378.734 l 186.863 378.734 l 186.863 386.984 l + 195.113 386.984 l 195.113 370.484 l 169.613 370.484 l 169.613 361.484 l + 177.863 361.484 l 177.863 353.234 l 169.613 353.234 l 169.613 344.234 l + 177.863 344.234 l 177.863 336.734 l 169.613 336.734 l 169.613 327.734 l + 153.113 327.734 l h +272.363 335.984 m 272.363 343.734 272.457 344.234 273.863 344.234 c 275.219 + 344.234 275.363 343.734 275.363 339.038 c 275.363 333.73 276.383 331.484 + 278.793 331.484 c 279.438 331.484 279.863 330.734 279.863 329.609 c 279.863 + 327.859 279.613 327.734 276.113 327.734 c 272.363 327.734 l h +344.363 340.484 m 344.363 343.984 344.488 344.234 346.238 344.234 c 347.988 + 344.234 348.113 343.984 348.113 340.484 c 348.113 336.984 347.988 336.734 + 346.238 336.734 c 344.488 336.734 344.363 336.984 344.363 340.484 c h +390.863 340.859 m 390.863 344.984 l 381.863 344.984 l 381.863 353.234 l + 373.613 353.234 l 373.613 361.484 l 381.863 361.484 l 381.863 353.234 l + 390.863 353.234 l 390.863 361.484 l 398.363 361.484 l 398.363 353.234 l + 407.363 353.234 l 407.363 362.234 l 399.113 362.234 l 399.113 369.734 l + 407.363 369.734 l 407.363 378.734 l 416.438 378.734 l 416.215 383.046 l + 415.988 387.359 l 403.051 387.566 l 390.113 387.769 l 390.113 370.484 l + 373.613 370.484 l 373.613 395.234 l 399.113 395.234 l 399.113 403.484 l + 407.363 403.484 l 407.363 420.734 l 416.363 420.734 l 416.363 429.734 l + 407.363 429.734 l 407.363 421.484 l 390.113 421.484 l 390.113 412.484 l + 398.363 412.484 l 398.363 404.234 l 381.863 404.234 l 381.863 412.484 l + 364.613 412.484 l 364.613 404.234 l 357.113 404.234 l 357.113 420.734 l + 381.863 420.734 l 381.863 428.909 l 386.176 429.136 l 390.488 429.359 l + 390.715 433.671 l 390.938 437.984 l 416.438 437.984 l 416.215 442.296 l + 415.988 446.609 l 407.551 446.819 l 399.113 447.034 l 399.113 454.484 l + 423.863 454.484 l 423.863 420.734 l 432.863 420.734 l 432.863 437.984 l + 466.613 437.984 l 466.613 395.984 l 458.363 395.984 l 458.363 404.234 l + 450.113 404.234 l 450.113 412.484 l 441.039 412.484 l 441.266 408.171 l + 441.488 403.859 l 449.363 403.405 l 449.363 395.234 l 457.613 395.234 l + 457.613 387.812 l 449.738 387.359 l 449.516 383.046 l 449.289 378.734 l + 441.113 378.734 l 441.113 370.484 l 432.863 370.484 l 432.863 395.984 l + 424.613 395.984 l 424.613 404.234 l 415.613 404.234 l 415.613 395.234 l + 423.863 395.234 l 423.863 353.234 l 415.613 353.234 l 415.613 344.984 l + 407.363 344.984 l 407.363 336.734 l 390.863 336.734 l h +450.113 340.484 m 450.113 344.234 l 457.613 344.234 l 457.613 336.734 l + 450.113 336.734 l h +263.363 349.109 m 263.363 353.234 l 271.613 353.234 l 271.613 344.984 l + 263.363 344.984 l h +365.363 349.109 m 365.363 353.234 l 372.863 353.234 l 372.863 344.984 l + 365.363 344.984 l h +441.863 349.109 m 441.863 353.234 l 449.363 353.234 l 449.363 344.984 l + 441.863 344.984 l h +272.363 361.484 m 272.363 369.234 272.457 369.734 273.863 369.734 c 275.273 + 369.734 275.363 369.234 275.363 361.484 c 275.363 353.734 275.273 353.234 + 273.863 353.234 c 272.457 353.234 272.363 353.734 272.363 361.484 c h +348.113 357.319 m 348.113 361.409 l 352.426 361.632 l 356.738 361.859 l + 356.953 370.296 l 357.164 378.734 l 364.613 378.734 l 364.613 369.734 l + 372.863 369.734 l 372.863 362.234 l 364.613 362.234 l 364.613 353.234 l + 348.113 353.234 l h +432.863 357.359 m 432.863 361.484 l 441.113 361.484 l 441.113 353.234 l + 432.863 353.234 l h +195.863 365.984 m 195.863 369.734 l 212.363 369.734 l 212.363 362.234 l + 195.863 362.234 l h +221.195 374.796 m 220.988 387.359 l 216.676 387.585 l 212.363 387.808 l + 212.363 395.234 l 221.363 395.234 l 221.363 404.234 l 212.363 404.234 l + 212.363 412.484 l 204.113 412.484 l 204.113 420.734 l 212.363 420.734 l + 212.363 412.484 l 237.863 412.484 l 237.863 421.484 l 212.363 421.484 l + 212.363 428.984 l 263.363 428.984 l 263.363 421.484 l 254.363 421.484 l + 254.363 412.484 l 263.363 412.484 l 263.363 403.484 l 280.238 403.484 l + 296.613 403.484 297.113 403.441 297.113 401.984 c 297.113 400.562 296.613 + 400.484 287.418 400.484 c 275.551 400.484 275.363 400.366 275.363 392.929 + c 275.363 388.28 275.211 387.734 273.902 387.734 c 272.672 387.734 272.406 + 388.347 272.215 391.671 c 271.988 395.609 l 267.676 395.835 l 263.363 396.058 + l 263.363 378.734 l 271.613 378.734 l 271.613 370.484 l 263.363 370.484 + l 263.363 378.734 l 254.363 378.734 l 254.363 369.734 l 263.363 369.734 + l 263.363 362.234 l 237.863 362.234 l 237.863 378.734 l 246.863 378.734 + l 246.863 386.984 l 255.113 386.984 l 255.113 395.984 l 246.863 395.984 + l 246.863 404.234 l 228.863 404.234 l 228.863 362.234 l 221.402 362.234 + l h +441.863 365.984 m 441.863 369.734 l 458.363 369.734 l 458.363 386.984 l + 466.613 386.984 l 466.613 362.234 l 441.863 362.234 l h +344.363 382.859 m 344.363 395.234 l 346.238 395.234 l 348.012 395.234 348.113 + 395.46 348.113 399.359 c 348.113 403.484 l 356.363 403.484 l 356.363 395.234 + l 364.613 395.234 l 364.613 387.734 l 356.363 387.734 l 356.363 378.734 + l 348.113 378.734 l 348.113 374.609 l 348.113 370.71 348.012 370.484 346.238 + 370.484 c 344.363 370.484 l h +153.113 382.859 m 153.113 386.984 l 161.363 386.984 l 161.363 378.734 l + 153.113 378.734 l h +204.113 382.859 m 204.113 386.984 l 212.363 386.984 l 212.363 378.734 l + 204.113 378.734 l h +162.113 391.484 m 162.113 395.234 l 170.363 395.234 l 170.363 412.484 l + 195.113 412.484 l 195.113 396.034 l 186.676 395.819 l 178.238 395.609 l + 177.785 387.734 l 162.113 387.734 l h +195.863 391.484 m 195.863 395.234 l 203.363 395.234 l 203.363 387.734 l + 195.863 387.734 l h +237.863 391.484 m 237.863 395.234 l 246.113 395.234 l 246.113 387.734 l + 237.863 387.734 l h +153.113 408.319 m 153.113 420.659 l 157.426 420.886 l 161.738 421.109 l + 162.191 428.984 l 170.363 428.984 l 170.363 437.984 l 178.613 437.984 l + 178.613 446.984 l 170.363 446.984 l 170.363 454.484 l 195.113 454.484 l + 195.113 446.234 l 203.363 446.234 l 203.363 437.984 l 186.863 437.984 l + 186.863 428.984 l 195.113 428.984 l 195.113 421.484 l 169.613 421.484 l + 169.613 412.484 l 161.363 412.484 l 161.363 395.984 l 153.113 395.984 l + h +204.113 399.734 m 204.113 403.484 l 212.363 403.484 l 212.363 395.984 l + 204.113 395.984 l h +365.363 399.734 m 365.363 403.484 l 372.863 403.484 l 372.863 395.984 l + 365.363 395.984 l h +322.613 402.359 m 322.613 404.234 l 306.113 404.234 l 306.113 412.484 l + 322.613 412.484 l 322.613 421.484 l 314.363 421.484 l 314.363 428.984 l + 330.863 428.984 l 330.863 412.484 l 339.113 412.484 l 339.113 400.484 l + 322.613 400.484 l h +272.363 420.734 m 272.363 428.984 l 280.613 428.984 l 280.613 437.984 l + 288.113 437.984 l 288.113 412.484 l 272.363 412.484 l h +297.113 420.734 m 297.113 428.984 l 305.363 428.984 l 305.363 412.484 l + 297.113 412.484 l h +339.863 425.194 m 339.863 437.984 l 356.363 437.984 l 356.363 429.734 l + 348.164 429.734 l 347.953 421.296 l 347.738 412.859 l 339.863 412.405 l + h +204.113 433.859 m 204.113 437.984 l 212.363 437.984 l 212.363 446.234 l + 221.363 446.234 l 221.363 479.984 l 228.828 479.984 l 229.035 467.421 l + 229.238 454.859 l 233.551 454.632 l 237.863 454.409 l 237.863 447.058 l + 233.551 446.835 l 229.238 446.609 l 229.016 442.296 l 228.789 437.984 l + 212.363 437.984 l 212.363 429.734 l 204.113 429.734 l h +306.113 433.859 m 306.113 437.984 l 313.613 437.984 l 313.613 429.734 l + 306.113 429.734 l h +365.363 433.859 m 365.363 437.984 l 373.613 437.984 l 373.613 446.234 l + 381.863 446.234 l 381.863 454.484 l 390.113 454.484 l 390.113 437.984 l + 381.863 437.984 l 381.863 429.734 l 365.363 429.734 l h +153.113 442.109 m 153.113 446.234 l 161.363 446.234 l 161.363 437.984 l + 153.113 437.984 l h +272.191 455.046 m 271.988 472.109 l 267.676 472.335 l 263.363 472.558 l + 263.363 479.909 l 267.676 480.136 l 271.988 480.359 l 271.988 488.609 l + 267.676 488.835 l 263.363 489.058 l 263.363 480.734 l 254.363 480.734 l + 254.363 472.484 l 246.113 472.484 l 246.113 463.484 l 254.363 463.484 l + 254.363 455.234 l 237.863 455.234 l 237.863 479.984 l 246.863 479.984 l + 246.863 488.984 l 255.188 488.984 l 254.965 493.296 l 254.738 497.609 l + 246.301 497.819 l 237.863 498.034 l 237.863 505.484 l 246.863 505.484 l + 246.863 522.734 l 263.363 522.734 l 263.363 513.734 l 279.863 513.734 l + 279.863 506.234 l 263.363 506.234 l 263.363 497.234 l 280.613 497.234 l + 280.613 505.484 l 288.113 505.484 l 288.113 488.984 l 279.863 488.984 l + 279.863 479.984 l 288.863 479.984 l 288.863 488.984 l 297.113 488.984 l + 297.113 497.234 l 306.113 497.234 l 306.113 505.484 l 313.613 505.484 l + 313.613 480.734 l 297.113 480.734 l 297.113 463.484 l 288.863 463.484 l + 288.863 472.484 l 279.863 472.484 l 279.863 463.484 l 288.113 463.484 l + 288.113 455.234 l 279.863 455.234 l 279.863 437.984 l 272.395 437.984 l + h +288.863 442.109 m 288.863 446.234 l 297.113 446.234 l 297.113 454.484 l + 305.363 454.484 l 305.363 437.984 l 288.863 437.984 l h +331.613 446.609 m 331.613 455.234 l 306.113 455.234 l 306.113 471.734 l + 313.613 471.734 l 313.613 463.484 l 322.613 463.484 l 322.613 471.734 l + 330.863 471.734 l 330.863 463.484 l 339.863 463.484 l 339.863 471.734 l + 348.113 471.734 l 348.113 463.484 l 356.363 463.484 l 356.363 446.984 l + 339.113 446.984 l 339.113 437.984 l 331.613 437.984 l h +357.113 442.109 m 357.113 446.234 l 364.613 446.234 l 364.613 437.984 l + 357.113 437.984 l h +204.113 450.734 m 204.113 454.484 l 212.363 454.484 l 212.363 446.984 l + 204.113 446.984 l h +255.113 450.734 m 255.113 454.484 l 263.363 454.484 l 263.363 446.984 l + 255.113 446.984 l h +365.363 455.234 m 365.363 463.484 l 372.863 463.484 l 372.863 446.984 l + 365.363 446.984 l h +441.863 450.734 m 441.863 454.484 l 466.613 454.484 l 466.613 446.984 l + 441.863 446.984 l h +153.113 493.109 m 153.113 522.734 l 212.363 522.734 l 212.363 463.484 l + 153.113 463.484 l h +204.113 493.109 m 204.113 514.484 l 161.363 514.484 l 161.363 471.734 l + 204.113 471.734 l h +170.363 493.109 m 170.363 505.484 l 195.113 505.484 l 195.113 480.734 l + 170.363 480.734 l h +255.113 467.609 m 255.113 471.734 l 263.363 471.734 l 263.363 463.484 l + 255.113 463.484 l h +357.113 476.234 m 357.113 488.984 l 348.113 488.984 l 348.113 480.734 l + 339.863 480.734 l 339.863 488.984 l 348.113 488.984 l 348.113 498.058 l + 343.801 497.831 l 339.488 497.609 l 339.266 493.296 l 339.039 488.984 l + 322.613 488.984 l 322.613 497.234 l 331.613 497.234 l 331.613 505.484 l + 365.363 505.484 l 365.363 513.734 l 373.613 513.734 l 373.613 522.734 l + 381.863 522.734 l 381.863 513.734 l 390.113 513.734 l 390.113 506.28 l +373.238 505.859 l 373.016 501.546 l 372.789 497.234 l 390.863 497.234 l +390.863 505.484 l 398.363 505.484 l 398.363 480.734 l 390.863 480.734 l +390.863 488.984 l 381.863 488.984 l 381.863 463.484 l 373.613 463.484 l +373.613 488.984 l 364.613 488.984 l 364.613 463.484 l 357.113 463.484 l +h +390.863 467.609 m 390.863 471.734 l 398.363 471.734 l 398.363 463.484 l + 390.863 463.484 l h +407.363 493.109 m 407.363 522.734 l 466.613 522.734 l 466.613 463.484 l + 407.363 463.484 l h +458.363 493.109 m 458.363 514.484 l 415.613 514.484 l 415.613 471.734 l + 458.363 471.734 l h +424.613 493.109 m 424.613 505.484 l 449.363 505.484 l 449.363 480.734 l + 424.613 480.734 l h +229.613 488.984 m 229.613 497.234 l 237.863 497.234 l 237.863 480.734 l + 229.613 480.734 l h +221.363 510.359 m 221.363 522.734 l 228.863 522.734 l 228.863 497.984 l + 221.363 497.984 l h +297.113 509.984 m 297.113 513.734 l 305.363 513.734 l 305.363 506.234 l + 297.113 506.234 l h +280.613 518.609 m 280.613 522.734 l 288.113 522.734 l 288.113 514.484 l + 280.613 514.484 l h +314.363 518.609 m 314.363 522.734 l 330.863 522.734 l 330.863 514.484 l + 314.363 514.484 l h +348.113 518.609 m 348.113 522.734 l 364.613 522.734 l 364.613 514.484 l + 348.113 514.484 l h +348.113 518.609 m f +Q Q +showpage +%%Trailer +end restore +%%EOF diff --git a/Master/texmf-dist/doc/latex/hithesis/wct5.eps b/Master/texmf-dist/doc/latex/hithesis/wct5.eps new file mode 100644 index 00000000000..047cdea107f --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/wct5.eps @@ -0,0 +1,427 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 21:02:17 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 134 161 448 476 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 134 161 448 476 +%%EndPageSetup +q 134 161 314 315 rectclip q +0 g +134.121 191.71 m 134.121 221.335 l 193.371 221.335 l 193.371 162.085 l +134.121 162.085 l h +185.121 191.71 m 185.121 213.085 l 142.371 213.085 l 142.371 170.335 l +185.121 170.335 l h +151.371 191.71 m 151.371 204.085 l 176.121 204.085 l 176.121 179.335 l +151.371 179.335 l h +210.621 166.21 m 210.621 170.335 l 227.121 170.335 l 227.121 162.085 l +210.621 162.085 l h +236.121 166.21 m 236.121 170.335 l 244.371 170.335 l 244.371 179.335 l +235.371 179.335 l 235.371 171.085 l 227.871 171.085 l 227.871 195.835 l +244.371 195.835 l 244.371 221.335 l 227.871 221.335 l 227.871 229.585 l +252.621 229.585 l 252.621 221.335 l 269.047 221.335 l 269.27 217.023 l 269.496 + 212.71 l 273.809 212.484 l 278.121 212.261 l 278.121 221.335 l 269.871 +221.335 l 269.871 229.585 l 287.121 229.585 l 287.121 246.835 l 295.371 +246.835 l 295.371 255.085 l 303.621 255.085 l 303.621 246.835 l 311.871 +246.835 l 311.871 238.585 l 294.621 238.585 l 294.621 229.585 l 329.121 +229.585 l 329.121 237.835 l 337.371 237.835 l 337.371 221.335 l 320.121 +221.335 l 320.121 204.835 l 312.621 204.835 l 312.621 221.335 l 303.621 +221.335 l 303.621 213.085 l 294.621 213.085 l 294.621 195.835 l 287.121 +195.835 l 287.121 204.835 l 261.621 204.835 l 261.621 213.085 l 252.621 +213.085 l 252.621 204.085 l 260.871 204.085 l 260.871 195.835 l 269.121 +195.835 l 269.121 187.585 l 253.371 187.585 l 253.371 195.835 l 244.371 +195.835 l 244.371 186.835 l 252.621 186.835 l 252.621 170.335 l 269.871 +170.335 l 269.871 178.585 l 278.121 178.585 l 278.121 162.085 l 236.121 +162.085 l h +287.121 170.335 m 287.121 178.585 l 295.371 178.585 l 295.371 186.835 l + 320.121 186.835 l 320.121 179.335 l 303.621 179.335 l 303.621 171.159 l + 299.309 170.937 l 294.996 170.71 l 294.77 166.398 l 294.547 162.085 l 287.121 + 162.085 l h +303.621 166.21 m 303.621 170.335 l 311.871 170.335 l 311.871 162.085 l +303.621 162.085 l h +329.121 166.585 m 329.121 171.085 l 320.871 171.085 l 320.871 178.585 l + 329.121 178.585 l 329.121 187.585 l 320.871 187.585 l 320.871 204.085 l + 329.121 204.085 l 329.121 195.835 l 337.371 195.835 l 337.371 186.835 l + 345.621 186.835 l 345.621 179.335 l 337.371 179.335 l 337.371 170.335 l + 353.871 170.335 l 353.871 162.085 l 329.121 162.085 l h +362.871 166.21 m 362.871 170.335 l 371.121 170.335 l 371.121 162.085 l +362.871 162.085 l h +388.371 170.335 m 388.371 178.585 l 405.621 178.585 l 405.621 186.835 l + 413.871 186.835 l 413.871 162.085 l 388.371 162.085 l h +422.871 166.21 m 422.871 170.335 l 430.371 170.335 l 430.371 162.085 l +422.871 162.085 l h +439.371 166.21 m 439.371 170.335 l 447.621 170.335 l 447.621 162.085 l +439.371 162.085 l h +371.871 174.835 m 371.871 178.585 l 379.371 178.585 l 379.371 171.085 l + 371.871 171.085 l h +278.121 183.085 m 278.121 186.835 l 286.371 186.835 l 286.371 179.335 l + 278.121 179.335 l h +380.121 183.085 m 380.121 186.835 l 388.371 186.835 l 388.371 179.335 l + 380.121 179.335 l h +422.871 187.585 m 422.871 195.835 l 431.121 195.835 l 431.121 204.085 l + 447.621 204.085 l 447.621 179.335 l 422.871 179.335 l h +202.371 195.835 m 202.371 204.085 l 209.871 204.085 l 209.871 195.835 l + 218.871 195.835 l 218.871 187.585 l 202.371 187.585 l h +362.871 195.835 m 362.871 204.085 l 371.906 204.085 l 371.699 217.023 l + 371.496 229.96 l 358.934 230.167 l 346.371 230.37 l 346.371 237.835 l 380.121 + 237.835 l 380.121 246.835 l 388.371 246.835 l 388.371 255.085 l 396.621 + 255.085 l 396.621 246.835 l 388.371 246.835 l 388.371 237.835 l 405.621 + 237.835 l 405.621 263.335 l 413.871 263.335 l 413.871 255.085 l 422.121 + 255.085 l 422.121 238.585 l 413.871 238.585 l 413.871 229.585 l 438.621 + 229.585 l 438.621 221.335 l 413.871 221.335 l 413.871 212.335 l 422.121 + 212.335 l 422.121 204.835 l 413.871 204.835 l 413.871 195.835 l 404.871 + 195.835 l 404.871 187.585 l 397.371 187.585 l 397.371 195.835 l 371.121 + 195.835 l 371.121 187.585 l 362.871 187.585 l h +405.621 217.23 m 405.621 230.37 l 392.684 230.167 l 379.746 229.96 l 379.539 + 217.023 l 379.336 204.085 l 405.621 204.085 l h +388.371 217.21 m 388.371 221.335 l 396.621 221.335 l 396.621 213.085 l +388.371 213.085 l h +303.621 199.96 m 303.621 204.085 l 311.871 204.085 l 311.871 195.835 l +303.621 195.835 l h +218.871 208.585 m 218.871 212.335 l 227.121 212.335 l 227.121 204.835 l + 218.871 204.835 l h +354.621 208.585 m 354.621 212.335 l 362.871 212.335 l 362.871 204.835 l + 354.621 204.835 l h +202.207 221.523 m 201.996 229.96 l 189.434 230.167 l 176.871 230.37 l 176.871 + 238.585 l 167.871 238.585 l 167.871 255.835 l 159.621 255.835 l 159.621 + 271.585 l 167.871 271.585 l 167.871 280.585 l 176.871 280.585 l 176.871 + 288.835 l 201.621 288.835 l 201.621 272.335 l 193.371 272.335 l 193.371 + 280.585 l 184.297 280.585 l 184.52 276.273 l 184.746 271.96 l 189.059 271.737 + l 193.371 271.511 l 193.371 264.159 l 189.059 263.937 l 184.746 263.71 +l 184.293 255.835 l 176.121 255.835 l 176.121 246.835 l 184.297 246.835 +l 184.52 242.523 l 184.746 238.21 l 189.059 237.987 l 193.371 237.761 l +193.371 246.835 l 185.121 246.835 l 185.121 255.085 l 193.371 255.085 l +193.371 263.335 l 218.871 263.335 l 218.871 255.909 l 214.559 255.687 l +210.246 255.46 l 210.02 251.148 l 209.797 246.835 l 201.621 246.835 l 201.621 + 237.835 l 209.871 237.835 l 209.871 221.335 l 218.871 221.335 l 218.871 + 213.085 l 202.418 213.085 l h +338.121 217.21 m 338.121 221.335 l 353.871 221.335 l 353.871 213.085 l +338.121 213.085 l h +439.371 217.21 m 439.371 221.335 l 447.621 221.335 l 447.621 213.085 l +439.371 213.085 l h +134.121 259.585 m 134.121 288.835 l 158.871 288.835 l 158.871 280.585 l + 150.621 280.585 l 150.621 272.335 l 142.371 272.335 l 142.371 263.335 l + 150.621 263.335 l 150.621 255.085 l 158.871 255.085 l 158.871 238.585 l + 151.371 238.585 l 151.371 246.835 l 142.371 246.835 l 142.371 230.335 l + 134.121 230.335 l h +159.621 234.085 m 159.621 237.835 l 167.871 237.835 l 167.871 230.335 l + 159.621 230.335 l h +218.871 234.085 m 218.871 237.835 l 227.121 237.835 l 227.121 230.335 l + 218.871 230.335 l h +439.371 234.085 m 439.371 237.835 l 447.621 237.835 l 447.621 230.335 l + 439.371 230.335 l h +236.121 242.71 m 236.121 246.835 l 244.371 246.835 l 244.371 255.085 l +252.621 255.085 l 252.621 238.585 l 236.121 238.585 l h +338.121 255.085 m 338.121 271.585 l 345.621 271.585 l 345.621 263.335 l + 353.871 263.335 l 353.871 255.913 l 345.996 255.46 l 345.781 247.023 l +345.57 238.585 l 338.121 238.585 l h +227.871 255.085 m 227.871 263.335 l 244.371 263.335 l 244.371 255.909 l + 240.059 255.687 l 235.746 255.46 l 235.293 246.835 l 227.871 246.835 l +h +261.469 251.148 m 261.246 255.46 l 253.418 255.913 l 252.996 271.96 l 244.559 + 272.171 l 236.121 272.386 l 236.121 280.585 l 227.871 280.585 l 227.871 + 288.835 l 236.121 288.835 l 236.121 306.085 l 227.871 306.085 l 227.871 + 314.335 l 244.371 314.335 l 244.371 306.085 l 256.371 306.085 l 256.371 + 297.835 l 244.371 297.835 l 244.371 288.835 l 252.621 288.835 l 252.621 + 280.585 l 260.793 280.585 l 261.246 271.96 l 269.121 271.507 l 269.121 +255.085 l 278.121 255.085 l 278.121 246.835 l 261.695 246.835 l h +320.871 250.96 m 320.871 255.085 l 329.121 255.085 l 329.121 246.835 l +320.871 246.835 l h +371.871 250.96 m 371.871 255.085 l 379.371 255.085 l 379.371 246.835 l +371.871 246.835 l h +431.121 255.085 m 431.121 263.335 l 438.621 263.335 l 438.621 246.835 l + 431.121 246.835 l h +287.121 259.585 m 287.121 263.335 l 294.621 263.335 l 294.621 255.835 l + 287.121 255.835 l h +303.621 259.585 m 303.621 263.335 l 311.871 263.335 l 311.871 255.835 l + 303.621 255.835 l h +362.871 264.085 m 362.871 272.335 l 354.621 272.335 l 354.621 280.585 l + 388.371 280.585 l 388.371 288.835 l 404.871 288.835 l 404.871 272.335 l + 396.621 272.335 l 396.621 264.085 l 388.371 264.085 l 388.371 272.335 l + 379.371 272.335 l 379.371 264.085 l 371.121 264.085 l 371.121 255.835 l + 362.871 255.835 l h +380.121 259.585 m 380.121 263.335 l 388.371 263.335 l 388.371 255.835 l + 380.121 255.835 l h +312.621 268.21 m 312.621 272.335 l 278.121 272.335 l 278.121 280.585 l +273.996 280.585 l 270.094 280.585 269.871 280.687 269.871 282.46 c 269.871 + 284.234 270.094 284.335 273.996 284.335 c 277.895 284.335 278.121 284.234 + 278.121 282.46 c 278.121 280.585 l 320.871 280.585 l 320.871 282.296 l +320.871 283.507 321.527 284.253 323.121 284.855 c 324.609 285.417 325.371 + 286.222 325.371 287.241 c 325.371 288.644 325.895 288.792 331.559 288.991 + c 337.746 289.21 l 338.199 297.085 l 345.621 297.085 l 345.621 288.835 +l 353.871 288.835 l 353.871 280.585 l 329.121 280.585 l 329.121 264.085 +l 312.621 264.085 l h +413.871 280.585 m 413.871 297.085 l 438.543 297.085 l 438.996 289.21 l +443.309 288.987 l 447.621 288.761 l 447.621 264.085 l 439.371 264.085 l +439.371 272.335 l 431.121 272.335 l 431.121 289.585 l 422.074 289.585 l +422.496 271.96 l 430.371 271.507 l 430.371 264.085 l 413.871 264.085 l h +210.621 276.46 m 210.621 280.585 l 218.871 280.585 l 218.871 272.335 l +210.621 272.335 l h +159.621 293.335 m 159.621 297.085 l 176.121 297.085 l 176.121 289.585 l + 159.621 289.585 l h +218.871 293.71 m 218.871 297.835 l 210.621 297.835 l 210.621 306.085 l +227.121 306.085 l 227.121 289.585 l 218.871 289.585 l h +354.621 293.335 m 354.621 297.085 l 362.871 297.085 l 362.871 322.585 l + 371.121 322.585 l 371.121 314.335 l 388.371 314.335 l 388.371 306.085 l + 404.871 306.085 l 404.871 297.835 l 388.371 297.835 l 388.371 289.585 l + 380.121 289.585 l 380.121 306.085 l 371.121 306.085 l 371.121 289.585 l + 354.621 289.585 l h +134.121 301.96 m 134.121 306.085 l 158.871 306.085 l 158.871 297.835 l +134.121 297.835 l h +176.871 301.96 m 176.871 306.085 l 193.371 306.085 l 193.371 297.835 l +176.871 297.835 l h +329.121 301.96 m 329.121 306.085 l 337.371 306.085 l 337.371 297.835 l +329.121 297.835 l h +346.371 301.96 m 346.371 306.085 l 353.871 306.085 l 353.871 297.835 l +346.371 297.835 l h +202.371 314.335 m 202.371 322.585 l 209.871 322.585 l 209.871 306.085 l + 202.371 306.085 l h +338.121 318.835 m 338.121 331.585 l 345.621 331.585 l 345.621 322.585 l + 353.871 322.585 l 353.871 315.085 l 345.621 315.085 l 345.621 306.085 l + 338.121 306.085 l h +405.621 310.21 m 405.621 314.335 l 413.871 314.335 l 413.871 339.835 l +431.121 339.835 l 431.121 348.085 l 438.543 348.085 l 438.996 340.21 l 443.309 + 339.987 l 447.621 339.761 l 447.621 315.085 l 439.371 315.085 l 439.371 + 323.335 l 422.121 323.335 l 422.121 306.085 l 405.621 306.085 l h +151.371 319.171 m 151.371 323.335 l 143.121 323.335 l 143.121 339.835 l + 158.871 339.835 l 158.871 328.21 l 158.871 321.816 158.953 316.331 159.059 + 316.023 c 159.16 315.714 157.473 315.359 155.309 315.234 c 151.371 315.007 + l h +167.871 318.835 m 167.871 322.585 l 176.121 322.585 l 176.121 315.085 l + 167.871 315.085 l h +185.121 318.835 m 185.121 322.585 l 193.371 322.585 l 193.371 315.085 l + 185.121 315.085 l h +244.371 319.21 m 244.371 323.335 l 236.121 323.335 l 236.121 331.585 l +244.371 331.585 l 244.371 339.835 l 252.621 339.835 l 252.621 335.71 l 252.621 + 331.812 252.723 331.585 254.496 331.585 c 256.27 331.585 256.371 331.359 + 256.371 327.46 c 256.371 323.562 256.266 323.335 254.496 323.335 c 252.723 + 323.335 252.621 323.109 252.621 319.21 c 252.621 315.085 l 244.371 315.085 + l h +325.371 318.835 m 325.371 322.335 325.496 322.585 327.246 322.585 c 328.996 + 322.585 329.121 322.335 329.121 318.835 c 329.121 315.335 328.996 315.085 + 327.246 315.085 c 325.496 315.085 325.371 315.335 325.371 318.835 c h +388.371 318.835 m 388.371 322.585 l 397.371 322.585 l 397.371 331.585 l + 404.871 331.585 l 404.871 315.085 l 388.371 315.085 l h +193.371 327.46 m 193.371 331.585 l 185.121 331.585 l 185.121 339.835 l +193.371 339.835 l 193.371 331.585 l 201.621 331.585 l 201.621 323.335 l +193.371 323.335 l h +210.621 331.585 m 210.621 339.835 l 218.871 339.835 l 218.871 331.585 l + 227.121 331.585 l 227.121 323.335 l 210.621 323.335 l h +329.121 335.71 m 329.121 339.835 l 337.371 339.835 l 337.371 331.585 l +329.121 331.585 l h +362.871 335.71 m 362.871 339.835 l 379.371 339.835 l 379.371 331.585 l +362.871 331.585 l h +388.371 340.21 m 388.371 348.835 l 371.871 348.835 l 371.871 356.335 l +388.371 356.335 l 388.371 365.335 l 380.121 365.335 l 380.121 373.585 l +397.371 373.585 l 397.371 381.835 l 404.871 381.835 l 404.871 365.335 l +413.871 365.335 l 413.871 357.085 l 396.621 357.085 l 396.621 348.085 l +413.871 348.085 l 413.871 340.585 l 396.621 340.585 l 396.621 331.585 l +388.371 331.585 l h +134.121 344.335 m 134.121 348.085 l 142.371 348.085 l 142.371 340.585 l + 134.121 340.585 l h +159.621 344.335 m 159.621 348.085 l 167.871 348.085 l 167.871 340.585 l + 159.621 340.585 l h +176.871 348.46 m 176.871 356.335 l 209.871 356.335 l 209.871 348.835 l +201.621 348.835 l 201.621 340.585 l 193.371 340.585 l 193.371 348.909 l +189.059 348.687 l 184.746 348.46 l 184.293 340.585 l 176.871 340.585 l h +218.871 352.96 m 218.871 365.335 l 202.371 365.335 l 202.371 382.585 l +185.121 382.585 l 185.121 390.835 l 202.371 390.835 l 202.371 399.085 l +210.621 399.085 l 210.621 407.335 l 218.871 407.335 l 218.871 381.835 l +235.371 381.835 l 235.371 374.335 l 227.121 374.335 l 227.121 365.335 l +244.371 365.335 l 244.371 373.585 l 252.621 373.585 l 252.621 365.335 l +244.371 365.335 l 244.371 356.261 l 248.684 356.487 l 252.996 356.71 l 253.219 + 361.023 l 253.445 365.335 l 260.797 365.335 l 261.02 361.023 l 261.246 +356.71 l 278.121 356.288 l 278.121 373.585 l 286.371 373.585 l 286.371 365.335 + l 294.621 365.335 l 294.621 357.085 l 290.496 357.085 l 286.594 357.085 + 286.371 356.984 286.371 355.21 c 286.371 353.335 l 272.547 353.335 l 260.984 + 353.335 258.535 353.144 257.547 352.155 c 256.902 351.507 256.371 350.495 + 256.371 349.905 c 256.371 349.069 255.07 348.835 250.371 348.835 c 244.371 + 348.835 l 244.371 340.585 l 236.121 340.585 l 236.121 348.835 l 227.121 + 348.835 l 227.121 340.585 l 218.871 340.585 l h +338.121 344.335 m 338.121 348.085 l 345.621 348.085 l 345.621 340.585 l + 338.121 340.585 l h +354.621 348.835 m 354.621 357.085 l 329.121 357.085 l 329.121 373.585 l + 337.371 373.585 l 337.371 365.335 l 362.871 365.335 l 362.871 381.835 l + 371.121 381.835 l 371.121 357.085 l 362.871 357.085 l 362.871 340.585 l + 354.621 340.585 l h +413.871 352.585 m 413.871 356.335 l 422.121 356.335 l 422.121 348.835 l + 413.871 348.835 l h +439.371 352.96 m 439.371 357.085 l 431.121 357.085 l 431.121 365.335 l +439.371 365.335 l 439.371 374.335 l 430.371 374.335 l 430.371 365.335 l +422.945 365.335 l 422.719 369.648 l 422.496 373.96 l 418.184 374.187 l 413.871 + 374.409 l 413.871 381.835 l 431.121 381.835 l 431.121 390.835 l 413.871 + 390.835 l 413.871 382.585 l 405.621 382.585 l 405.621 390.835 l 396.621 + 390.835 l 396.621 382.585 l 388.371 382.585 l 388.371 390.835 l 379.371 + 390.835 l 379.371 382.585 l 371.871 382.585 l 371.871 399.835 l 362.871 + 399.835 l 362.871 416.335 l 354.621 416.335 l 354.621 424.585 l 362.871 + 424.585 l 362.871 416.335 l 371.121 416.335 l 371.121 407.335 l 379.371 + 407.335 l 379.371 399.085 l 413.871 399.085 l 413.871 407.335 l 430.371 + 407.335 l 430.371 399.085 l 438.57 399.085 l 438.781 390.648 l 438.996 +382.21 l 443.309 381.987 l 447.621 381.761 l 447.621 348.835 l 439.371 348.835 + l h +295.371 354.835 m 295.371 356.276 295.871 356.335 307.746 356.335 c 319.621 + 356.335 320.121 356.276 320.121 354.835 c 320.121 353.398 319.621 353.335 + 307.746 353.335 c 295.871 353.335 295.371 353.398 295.371 354.835 c h +143.121 361.21 m 143.121 365.335 l 150.621 365.335 l 150.621 357.085 l +143.121 357.085 l h +134.121 369.46 m 134.121 373.585 l 142.371 373.585 l 142.371 365.335 l +134.121 365.335 l h +168.371 365.835 m 168.094 366.109 167.871 368.136 167.871 370.335 c 167.871 + 374.335 l 159.621 374.335 l 159.621 381.835 l 167.871 381.835 l 167.871 + 399.835 l 159.621 399.835 l 159.621 407.335 l 176.121 407.335 l 176.121 + 373.585 l 193.371 373.585 l 193.371 365.335 l 181.121 365.335 l 174.383 + 365.335 168.645 365.562 168.371 365.835 c h +295.371 386.71 m 295.371 408.085 l 286.371 408.085 l 286.371 390.835 l +278.121 390.835 l 278.121 382.585 l 269.871 382.585 l 269.871 390.835 l +278.121 390.835 l 278.121 416.335 l 269.871 416.335 l 269.871 424.585 l +278.121 424.585 l 278.121 416.335 l 287.195 416.335 l 286.969 420.648 l +286.746 424.96 l 282.434 425.187 l 278.121 425.409 l 278.121 432.835 l 287.121 + 432.835 l 287.121 441.835 l 278.121 441.835 l 278.121 433.585 l 269.871 + 433.585 l 269.871 441.835 l 261.621 441.835 l 261.621 458.335 l 269.871 + 458.335 l 269.871 466.585 l 278.121 466.585 l 278.121 475.585 l 286.371 + 475.585 l 286.371 459.085 l 278.121 459.085 l 278.121 450.085 l 287.121 + 450.085 l 287.121 458.335 l 294.621 458.335 l 294.621 450.085 l 303.621 + 450.085 l 303.621 458.335 l 320.871 458.335 l 320.871 475.585 l 329.121 + 475.585 l 329.121 450.909 l 324.809 450.687 l 320.496 450.46 l 320.27 446.148 + l 320.047 441.835 l 338.121 441.835 l 338.121 450.085 l 345.621 450.085 + l 345.621 432.835 l 353.871 432.835 l 353.871 425.413 l 345.996 424.96 +l 345.77 420.648 l 345.547 416.335 l 338.195 416.335 l 337.969 420.648 l + 337.746 424.96 l 333.434 425.187 l 329.121 425.409 l 329.121 433.585 l +320.121 433.585 l 320.121 425.335 l 312.621 425.335 l 312.621 433.585 l +294.621 433.585 l 294.621 416.335 l 303.621 416.335 l 303.621 424.585 l +311.871 424.585 l 311.871 416.335 l 320.121 416.335 l 320.121 408.085 l +311.871 408.085 l 311.871 382.585 l 303.621 382.585 l 303.621 365.335 l +295.371 365.335 l h +143.121 378.085 m 143.121 381.835 l 150.621 381.835 l 150.621 374.335 l + 143.121 374.335 l h +253.371 386.71 m 253.371 399.085 l 269.121 399.085 l 269.121 390.835 l +260.871 390.835 l 260.871 374.335 l 253.371 374.335 l h +312.621 378.085 m 312.621 381.835 l 320.121 381.835 l 320.121 374.335 l + 312.621 374.335 l h +151.371 386.71 m 151.371 390.835 l 158.871 390.835 l 158.871 382.585 l +151.371 382.585 l h +320.871 386.71 m 320.871 390.835 l 337.371 390.835 l 337.371 382.585 l +320.871 382.585 l h +346.371 386.71 m 346.371 390.835 l 353.871 390.835 l 353.871 382.585 l +346.371 382.585 l h +134.121 394.96 m 134.121 399.085 l 150.621 399.085 l 150.621 390.835 l +134.121 390.835 l h +227.871 394.96 m 227.871 399.085 l 244.371 399.085 l 244.371 390.835 l +227.871 390.835 l h +354.621 394.96 m 354.621 399.085 l 362.871 399.085 l 362.871 390.835 l +354.621 390.835 l h +185.121 403.585 m 185.121 407.335 l 201.621 407.335 l 201.621 399.835 l + 185.121 399.835 l h +329.121 408.085 m 329.121 416.335 l 320.871 416.335 l 320.871 424.585 l + 329.121 424.585 l 329.121 416.335 l 337.371 416.335 l 337.371 407.335 l + 346.371 407.335 l 346.371 416.335 l 353.871 416.335 l 353.871 399.835 l + 329.121 399.835 l h +227.871 412.21 m 227.871 416.335 l 236.121 416.335 l 236.121 432.835 l +244.371 432.835 l 244.371 416.335 l 253.371 416.335 l 253.371 432.835 l +260.871 432.835 l 260.871 408.085 l 227.871 408.085 l h +134.121 445.96 m 134.121 475.585 l 193.371 475.585 l 193.371 416.335 l +134.121 416.335 l h +185.121 445.96 m 185.121 467.335 l 142.371 467.335 l 142.371 424.585 l +185.121 424.585 l h +151.371 445.96 m 151.371 458.335 l 176.121 458.335 l 176.121 433.585 l +151.371 433.585 l h +202.371 420.46 m 202.371 424.585 l 209.871 424.585 l 209.871 416.335 l +202.371 416.335 l h +218.871 424.585 m 218.871 432.835 l 227.121 432.835 l 227.121 416.335 l + 218.871 416.335 l h +371.719 420.648 m 371.496 424.96 l 367.184 425.187 l 362.871 425.409 l +362.871 432.835 l 371.871 432.835 l 371.871 441.835 l 379.371 441.835 l +379.371 416.335 l 371.945 416.335 l h +388.371 445.96 m 388.371 475.585 l 447.621 475.585 l 447.621 416.335 l +388.371 416.335 l h +439.371 445.96 m 439.371 467.335 l 396.621 467.335 l 396.621 424.585 l +439.371 424.585 l h +405.621 445.96 m 405.621 458.335 l 430.371 458.335 l 430.371 433.585 l +405.621 433.585 l h +210.621 437.71 m 210.621 441.835 l 218.871 441.835 l 218.871 450.085 l +227.871 450.085 l 227.871 467.335 l 218.871 467.335 l 218.871 475.585 l +235.371 475.585 l 235.371 458.335 l 244.371 458.335 l 244.371 441.835 l +218.871 441.835 l 218.871 433.585 l 210.621 433.585 l h +202.371 450.085 m 202.371 458.335 l 209.871 458.335 l 209.871 441.835 l + 202.371 441.835 l h +346.371 454.96 m 346.371 459.085 l 338.121 459.085 l 338.121 466.507 l +345.996 466.96 l 346.219 471.273 l 346.445 475.585 l 353.871 475.585 l 353.871 + 450.835 l 346.371 450.835 l h +362.871 454.585 m 362.871 458.335 l 371.121 458.335 l 371.121 450.835 l + 362.871 450.835 l h +210.621 462.835 m 210.621 466.585 l 218.871 466.585 l 218.871 459.085 l + 210.621 459.085 l h +295.371 462.835 m 295.371 466.585 l 303.621 466.585 l 303.621 459.085 l + 295.371 459.085 l h +244.371 471.46 m 244.371 475.585 l 252.621 475.585 l 252.621 467.335 l +244.371 467.335 l h +303.621 471.46 m 303.621 475.585 l 311.871 475.585 l 311.871 467.335 l +303.621 467.335 l h +303.621 471.46 m f +Q Q +showpage +%%Trailer +end restore +%%EOF diff --git a/Master/texmf-dist/doc/latex/hithesis/zfb.eps b/Master/texmf-dist/doc/latex/hithesis/zfb.eps new file mode 100644 index 00000000000..5da13101bae --- /dev/null +++ b/Master/texmf-dist/doc/latex/hithesis/zfb.eps @@ -0,0 +1,352 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.14.10 (http://cairographics.org) +%%CreationDate: Sat Aug 26 21:18:01 2017 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 124 234 449 560 +%%EndComments +%%BeginProlog +save +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/pdfmark where { pop globaldict /?pdfmark /exec load put } + { globaldict begin /?pdfmark /pop load def /pdfmark + /cleartomark load def end } ifelse +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 124 234 449 560 +%%EndPageSetup +q 124 234 325 326 rectclip q +0 g +124.363 269.89 m 124.363 304.015 l 192.613 304.015 l 192.613 235.765 l +124.363 235.765 l h +183.613 270.265 m 183.613 295.015 l 134.113 295.015 l 134.113 245.515 l + 183.613 245.515 l h +144.613 270.265 m 144.613 284.515 l 173.113 284.515 l 173.113 256.015 l + 144.613 256.015 l h +212.863 240.64 m 212.863 245.515 l 222.613 245.515 l 222.613 235.765 l +212.863 235.765 l h +232.363 245.956 m 232.363 256.144 l 227.488 255.894 l 222.609 255.64 l +222.609 260.308 l 222.613 264.972 l 232.551 265.183 l 242.488 265.39 l 242.934 + 274.765 l 261.613 274.765 l 261.613 265.765 l 251.863 265.765 l 251.863 + 255.265 l 262.363 255.265 l 262.363 265.015 l 272.113 265.015 l 272.113 + 275.515 l 262.363 275.515 l 262.363 295.015 l 252.613 295.015 l 252.613 + 314.515 l 242.113 314.515 l 242.113 304.765 l 232.363 304.765 l 232.363 + 294.265 l 251.863 294.265 l 251.863 285.265 l 242.113 285.265 l 242.113 + 275.515 l 222.613 275.515 l 222.613 285.265 l 212.863 285.265 l 212.863 + 304.015 l 222.613 304.015 l 222.613 313.765 l 232.363 313.765 l 232.363 + 323.448 l 237.426 323.667 l 242.488 323.89 l 242.934 333.194 l 252.238 +333.64 l 252.461 338.702 l 252.68 343.765 l 242.113 343.765 l 242.113 334.015 + l 232.363 334.015 l 232.363 343.765 l 222.613 343.765 l 222.613 353.515 + l 212.863 353.515 l 212.863 364.015 l 203.113 364.015 l 203.113 373.015 + l 222.613 373.015 l 222.613 402.265 l 257.863 402.265 l 257.863 383.515 + l 251.863 383.515 l 251.863 364.015 l 242.895 364.015 l 242.488 392.89 +l 232.363 393.335 l 232.363 363.265 l 242.113 363.265 l 242.113 353.515 +l 252.613 353.515 l 252.613 363.265 l 262.363 363.265 l 262.363 369.265 +l 281.113 369.265 l 281.113 364.085 l 271.738 363.64 l 271.293 353.515 l + 281.863 353.515 l 281.863 363.265 l 300.613 363.265 l 300.613 353.515 l + 290.863 353.515 l 290.863 334.015 l 281.863 334.015 l 281.863 343.765 l + 261.613 343.765 l 261.613 323.515 l 271.363 323.515 l 271.363 314.515 l + 261.613 314.515 l 261.613 304.015 l 271.363 304.015 l 271.363 284.515 l + 281.113 284.515 l 281.113 274.765 l 291.613 274.765 l 291.613 284.515 l + 320.113 284.515 l 320.113 275.562 l 300.988 275.14 l 300.777 265.577 l +300.57 256.015 l 291.613 256.015 l 291.613 265.765 l 281.113 265.765 l 281.113 + 256.085 l 271.738 255.64 l 271.293 245.515 l 242.113 245.515 l 242.113 +235.765 l 232.363 235.765 l h +311.113 245.515 m 311.113 255.265 l 320.863 255.265 l 320.863 265.015 l + 330.613 265.015 l 330.613 255.265 l 340.363 255.265 l 340.363 265.015 l + 389.113 265.015 l 389.113 256.085 l 379.738 255.64 l 379.293 245.515 l +370.434 245.515 l 369.988 255.64 l 360.051 255.859 l 350.113 256.081 l 350.113 + 245.515 l 369.613 245.515 l 369.613 235.765 l 330.613 235.765 l 330.613 + 245.515 l 319.984 245.515 l 320.238 240.64 l 320.488 235.761 l 315.801 +235.765 l 311.113 235.765 l h +389.863 245.515 m 389.863 255.265 l 409.363 255.265 l 409.363 265.765 l + 389.863 265.765 l 389.863 275.515 l 340.363 275.515 l 340.363 265.765 l + 330.613 265.765 l 330.613 284.515 l 360.613 284.515 l 360.613 353.515 l + 350.863 353.515 l 350.863 363.265 l 370.363 363.265 l 370.363 382.765 l + 380.113 382.765 l 380.113 402.265 l 389.863 402.265 l 389.863 431.515 l + 398.863 431.515 l 398.863 393.265 l 389.113 393.265 l 389.113 382.765 l + 419.113 382.765 l 419.113 402.265 l 438.613 402.265 l 438.613 393.335 l + 428.488 392.89 l 428.488 383.14 l 433.551 382.917 l 438.613 382.698 l 438.613 + 364.015 l 428.863 364.015 l 428.863 373.765 l 398.863 373.765 l 398.863 + 363.265 l 408.613 363.265 l 408.613 353.515 l 418.363 353.515 l 418.363 + 343.765 l 408.613 343.765 l 408.613 334.015 l 399.613 334.015 l 399.613 + 353.515 l 369.613 353.515 l 369.613 343.765 l 379.363 343.765 l 379.363 + 334.015 l 369.613 334.015 l 369.613 323.448 l 374.676 323.667 l 379.738 + 323.89 l 380.184 333.265 l 389.043 333.265 l 389.488 323.89 l 418.363 323.484 + l 418.363 314.515 l 408.613 314.515 l 408.613 274.765 l 418.363 274.765 + l 418.363 265.015 l 428.113 265.015 l 428.113 245.515 l 408.613 245.515 + l 408.613 235.765 l 389.863 235.765 l h +399.613 299.515 m 399.613 314.515 l 369.613 314.515 l 369.613 284.515 l + 399.613 284.515 l h +380.113 299.515 m 380.113 304.015 l 389.113 304.015 l 389.113 295.015 l + 380.113 295.015 l h +389.863 368.515 m 389.863 373.765 l 379.363 373.765 l 379.363 363.265 l + 389.863 363.265 l h +281.863 250.39 m 281.863 255.265 l 290.863 255.265 l 290.863 245.515 l +281.863 245.515 l h +438.613 250.39 m 438.613 255.265 l 448.363 255.265 l 448.363 245.515 l +438.613 245.515 l h +203.859 255.89 m 203.398 256.046 203.113 261.593 203.113 270.327 c 203.113 + 284.515 l 212.113 284.515 l 212.113 256.159 l 208.359 255.901 l 206.293 + 255.757 204.27 255.753 203.859 255.894 c h +428.863 275.515 m 428.863 285.265 l 419.113 285.265 l 419.113 304.015 l + 428.043 304.015 l 428.488 294.64 l 433.551 294.417 l 438.613 294.198 l +438.613 284.515 l 448.363 284.515 l 448.363 275.515 l 438.613 275.515 l +438.613 265.765 l 428.863 265.765 l h +281.863 299.515 m 281.863 313.765 l 290.863 313.765 l 290.863 285.265 l + 281.863 285.265 l h +301.363 299.515 m 301.363 304.015 l 310.363 304.015 l 310.363 295.015 l + 301.363 295.015 l h +320.863 304.39 m 320.863 313.765 l 330.613 313.765 l 330.613 295.015 l +320.863 295.015 l h +340.363 299.515 m 340.363 304.015 l 350.113 304.015 l 350.113 295.015 l + 340.363 295.015 l h +438.613 299.515 m 438.613 304.015 l 448.363 304.015 l 448.363 295.015 l + 438.613 295.015 l h +203.113 309.265 m 203.113 313.765 l 212.113 313.765 l 212.113 304.765 l + 203.113 304.765 l h +124.363 348.605 m 124.363 382.698 l 129.426 382.917 l 134.488 383.14 l +134.934 392.444 l 144.238 392.89 l 144.684 402.265 l 154.363 402.265 l 154.363 + 412.765 l 144.613 412.765 l 144.613 421.694 l 153.988 422.14 l 154.199 +431.702 l 154.406 441.265 l 173.113 441.265 l 173.113 422.515 l 163.363 +422.515 l 163.363 402.265 l 203.113 402.265 l 203.113 412.765 l 173.863 +412.765 l 173.863 421.765 l 203.113 421.765 l 203.113 432.265 l 183.613 +432.265 l 183.613 441.194 l 192.988 441.64 l 193.211 446.702 l 193.43 451.765 + l 183.613 451.765 l 183.613 461.515 l 193.363 461.515 l 193.363 471.265 + l 202.363 471.265 l 202.363 461.515 l 212.863 461.515 l 212.863 471.265 + l 232.363 471.265 l 232.363 490.765 l 242.113 490.765 l 242.113 481.015 + l 251.863 481.015 l 251.863 472.015 l 242.113 472.015 l 242.113 461.515 + l 252.613 461.515 l 252.613 471.265 l 261.613 471.265 l 261.613 461.515 + l 271.363 461.515 l 271.363 451.765 l 261.613 451.765 l 261.613 442.015 + l 252.613 442.015 l 252.613 451.765 l 202.293 451.765 l 202.738 441.64 +l 212.676 441.433 l 222.613 441.222 l 222.613 432.265 l 212.07 432.265 l + 212.277 422.327 l 212.488 412.39 l 217.551 412.171 l 222.613 411.948 l +222.613 403.085 l 212.488 402.64 l 212.043 393.335 l 202.738 392.89 l 202.516 + 388.202 l 202.289 383.515 l 193.363 383.515 l 193.363 393.265 l 173.113 + 393.265 l 173.113 383.515 l 164.113 383.515 l 164.113 393.265 l 153.613 + 393.265 l 153.613 383.515 l 143.863 383.515 l 143.863 364.015 l 134.113 + 364.015 l 134.113 353.515 l 143.863 353.515 l 143.863 343.765 l 134.113 + 343.765 l 134.113 314.515 l 124.363 314.515 l h +164.113 319.015 m 164.113 323.515 l 173.113 323.515 l 173.113 314.515 l + 164.113 314.515 l h +183.613 319.015 m 183.613 323.515 l 202.363 323.515 l 202.363 314.515 l + 183.613 314.515 l h +212.863 319.015 m 212.863 323.515 l 222.613 323.515 l 222.613 314.515 l + 212.863 314.515 l h +301.363 319.015 m 301.363 323.515 l 311.113 323.515 l 311.113 333.702 l + 320.863 333.109 l 320.863 353.515 l 311.18 353.515 l 310.961 358.577 l +310.738 363.64 l 306.051 363.862 l 301.363 364.089 l 301.363 369.265 l 305.805 + 369.265 l 309.449 369.265 310.648 369.601 312.477 371.14 c 314.547 372.882 + 315.27 373.015 322.66 373.015 c 330.613 373.015 l 330.613 353.515 l 350.113 + 353.515 l 350.113 334.015 l 340.363 334.015 l 340.363 343.765 l 330.613 + 343.765 l 330.613 324.265 l 320.113 324.265 l 320.113 314.515 l 301.363 + 314.515 l h +330.613 319.015 m 330.613 323.515 l 340.363 323.515 l 340.363 314.515 l + 330.613 314.515 l h +428.863 319.39 m 428.863 324.265 l 419.113 324.265 l 419.113 333.702 l +428.863 333.109 l 428.863 343.765 l 448.363 343.765 l 448.363 334.015 l +438.613 334.015 l 438.613 323.515 l 448.363 323.515 l 448.363 314.515 l +428.863 314.515 l h +144.613 328.952 m 144.609 333.64 l 153.988 333.409 l 163.363 333.179 l +163.363 324.265 l 144.613 324.265 l 144.609 328.952 l h +173.863 328.765 m 173.863 333.265 l 182.863 333.265 l 182.863 324.265 l + 173.863 324.265 l h +222.613 328.765 m 222.613 333.265 l 232.363 333.265 l 232.363 324.265 l + 222.613 324.265 l h +272.113 328.765 m 272.113 333.265 l 281.113 333.265 l 281.113 324.265 l + 272.113 324.265 l h +291.613 328.765 m 291.613 333.265 l 300.613 333.265 l 300.613 324.265 l + 291.613 324.265 l h +164.113 353.515 m 164.113 373.015 l 173.863 373.015 l 173.863 382.765 l + 192.613 382.765 l 192.613 373.765 l 182.863 373.765 l 182.863 363.265 l + 202.363 363.265 l 202.363 353.515 l 182.863 353.515 l 182.863 343.765 l + 173.113 343.765 l 173.113 334.015 l 164.113 334.015 l h +183.613 338.89 m 183.613 343.765 l 192.613 343.765 l 192.613 334.015 l +183.613 334.015 l h +212.863 338.925 m 212.863 343.839 l 217.551 343.612 l 222.238 343.39 l +222.684 334.015 l 212.863 334.015 l h +203.113 348.64 m 203.113 353.515 l 212.113 353.515 l 212.113 343.765 l +203.113 343.765 l h +301.363 348.64 m 301.363 353.515 l 310.363 353.515 l 310.363 343.765 l +301.363 343.765 l h +438.613 358.39 m 438.613 363.265 l 448.363 363.265 l 448.363 353.515 l +438.613 353.515 l h +340.363 368.89 m 340.363 373.765 l 330.613 373.765 l 330.613 392.515 l +340.363 392.515 l 340.363 382.765 l 359.863 382.765 l 359.863 373.765 l +350.113 373.765 l 350.113 364.015 l 340.363 364.015 l h +314.863 392.89 m 314.863 402.265 l 320.113 402.265 l 320.113 383.515 l +314.863 383.515 l h +438.613 388.015 m 438.613 392.515 l 448.363 392.515 l 448.363 383.515 l + 438.613 383.515 l h +124.363 407.515 m 124.363 421.765 l 134.113 421.765 l 134.113 393.265 l + 124.363 393.265 l h +340.363 403.015 m 340.363 412.765 l 330.613 412.765 l 330.613 421.765 l + 340.363 421.765 l 340.363 431.515 l 350.113 431.515 l 350.113 402.265 l + 359.863 402.265 l 359.863 393.265 l 340.363 393.265 l h +320.863 407.515 m 320.863 412.015 l 330.613 412.015 l 330.613 403.015 l + 320.863 403.015 l h +360.613 407.515 m 360.613 412.015 l 379.363 412.015 l 379.363 403.015 l + 360.613 403.015 l h +409.363 407.515 m 409.363 412.015 l 418.363 412.015 l 418.363 403.015 l + 409.363 403.015 l h +438.613 407.515 m 438.613 412.015 l 448.363 412.015 l 448.363 403.015 l + 438.613 403.015 l h +232.535 427.202 m 232.723 440.417 232.848 441.632 234.051 441.546 c 234.773 + 441.495 239.074 441.409 243.613 441.359 c 251.863 441.265 l 251.863 432.265 + l 242.113 432.265 l 242.113 421.765 l 251.863 421.765 l 251.863 412.765 + l 232.332 412.765 l h +314.863 417.265 m 314.863 421.765 l 320.113 421.765 l 320.113 412.765 l + 314.863 412.765 l h +252.613 426.98 m 252.613 431.444 l 261.988 431.89 l 262.434 441.234 l 291.238 + 441.64 l 291.461 446.702 l 291.68 451.765 l 281.863 451.765 l 281.863 461.515 + l 310.363 461.515 l 310.363 426.265 l 291.613 426.265 l 291.613 432.265 + l 281.113 432.265 l 281.113 426.265 l 271.797 426.265 l 262.949 426.265 + 262.363 426.171 260.25 424.39 c 258.773 423.148 257.105 422.515 255.316 + 422.515 c 252.613 422.515 l h +320.863 431.89 m 320.863 441.265 l 330.613 441.265 l 330.613 461.515 l +320.863 461.515 l 320.863 471.265 l 340.363 471.265 l 340.363 451.765 l +350.113 451.765 l 350.113 442.015 l 340.363 442.015 l 340.363 432.265 l +330.613 432.265 l 330.613 422.515 l 320.863 422.515 l h +360.613 432.077 m 360.609 441.64 l 369.988 441.409 l 379.363 441.179 l +379.363 432.265 l 369.613 432.265 l 369.613 422.515 l 360.613 422.515 l +360.609 432.077 l h +428.863 432.265 m 428.863 442.015 l 419.113 442.015 l 419.113 451.765 l + 409.363 451.765 l 409.363 471.265 l 418.363 471.265 l 418.363 461.515 l + 428.113 461.515 l 428.113 451.765 l 448.363 451.765 l 448.363 422.515 l + 428.863 422.515 l h +134.863 437.14 m 134.863 442.015 l 124.363 442.015 l 124.363 451.765 l +134.945 451.765 l 134.719 461.519 l 134.488 471.269 l 139.176 471.265 l +143.863 471.265 l 143.863 461.515 l 154.43 461.515 l 154.211 466.577 l 153.988 + 471.64 l 150.238 471.753 l 148.176 471.816 146.066 471.901 145.551 471.941 + c 144.914 471.991 144.613 473.456 144.613 476.515 c 144.613 481.015 l 173.113 + 481.015 l 173.113 451.765 l 143.863 451.765 l 143.863 432.265 l 134.863 + 432.265 l h +380.113 446.89 m 380.113 451.765 l 389.113 451.765 l 389.113 442.015 l +380.113 442.015 l h +350.695 461.702 m 350.488 471.64 l 340.363 472.085 l 340.363 480.948 l +345.426 481.167 l 350.488 481.39 l 350.934 490.765 l 359.863 490.765 l 359.863 + 481.015 l 398.863 481.015 l 398.863 472.046 l 369.988 471.64 l 369.777 +461.702 l 369.57 451.765 l 350.906 451.765 l h +183.613 476.515 m 183.613 481.015 l 192.613 481.015 l 192.613 472.015 l + 183.613 472.015 l h +203.113 491.14 m 203.113 510.265 l 212.863 510.265 l 212.863 520.015 l +222.613 520.015 l 222.613 501.335 l 212.488 500.89 l 212.082 472.015 l 203.113 + 472.015 l h +262.363 476.515 m 262.363 481.015 l 271.363 481.015 l 271.363 472.015 l + 262.363 472.015 l h +301.363 486.265 m 301.363 500.515 l 310.363 500.515 l 310.363 490.765 l + 315.426 490.769 l 320.488 490.769 l 320.488 482.14 l 310.738 481.39 l 310.293 + 472.015 l 301.363 472.015 l h +419.113 476.515 m 419.113 481.015 l 448.363 481.015 l 448.363 472.015 l + 419.113 472.015 l h +281.863 491.14 m 281.863 500.515 l 290.863 500.515 l 290.863 481.765 l +281.863 481.765 l h +330.613 486.265 m 330.613 490.765 l 340.363 490.765 l 340.363 481.765 l + 330.613 481.765 l h +124.363 525.64 m 124.363 559.765 l 192.613 559.765 l 192.613 491.515 l +124.363 491.515 l h +183.613 525.265 m 183.613 550.015 l 134.113 550.015 l 134.113 500.515 l + 183.613 500.515 l h +144.613 525.265 m 144.613 539.515 l 173.113 539.515 l 173.113 511.015 l + 144.613 511.015 l h +222.613 496.015 m 222.613 500.515 l 232.363 500.515 l 232.363 491.515 l + 222.613 491.515 l h +242.863 496.015 m 242.863 500.515 l 251.863 500.515 l 251.863 491.515 l + 242.863 491.515 l h +262.363 496.015 m 262.363 500.515 l 271.363 500.515 l 271.363 491.515 l + 262.363 491.515 l h +320.863 496.015 m 320.863 500.515 l 330.613 500.515 l 330.613 491.515 l + 320.863 491.515 l h +340.363 496.015 m 340.363 500.515 l 350.113 500.515 l 350.113 491.515 l + 340.363 491.515 l h +360.461 496.202 m 360.238 500.89 l 350.863 501.335 l 350.863 510.265 l +369.613 510.265 l 369.613 491.515 l 360.684 491.515 l h +380.113 525.64 m 380.113 559.765 l 448.363 559.765 l 448.363 491.515 l +380.113 491.515 l h +438.613 525.265 m 438.613 550.015 l 389.113 550.015 l 389.113 500.515 l + 438.613 500.515 l h +399.613 525.265 m 399.613 539.515 l 428.051 539.515 l 428.488 511.015 l + 399.613 511.015 l h +272.113 506.14 m 272.113 511.015 l 232.363 511.015 l 232.363 530.515 l +203.113 530.515 l 203.113 559.765 l 207.801 559.765 l 212.488 559.769 l +212.488 539.89 l 242.113 539.484 l 242.113 529.765 l 251.863 529.765 l 251.863 + 520.015 l 272.113 520.015 l 272.113 529.765 l 281.863 529.765 l 281.863 + 540.265 l 271.363 540.265 l 271.363 530.515 l 262.363 530.515 l 262.363 + 540.265 l 252.613 540.265 l 252.613 549.265 l 255.051 549.335 l 262.617 + 549.55 261.961 549.058 262.211 554.702 c 262.43 559.765 l 281.043 559.765 + l 281.488 549.64 l 290.793 549.194 l 291.238 539.89 l 296.301 539.667 l + 301.363 539.448 l 301.363 549.265 l 310.293 549.265 l 310.738 539.89 l +315.801 539.667 l 320.863 539.448 l 320.863 559.765 l 340.363 559.765 l +340.363 550.015 l 330.613 550.015 l 330.613 539.515 l 340.363 539.515 l +340.363 529.765 l 350.113 529.765 l 350.113 511.015 l 340.363 511.015 l +340.363 520.765 l 330.613 520.765 l 330.613 511.015 l 320.863 511.015 l +320.863 520.765 l 311.113 520.765 l 311.113 530.515 l 290.863 530.515 l +290.863 520.765 l 281.113 520.765 l 281.113 501.265 l 272.113 501.265 l +h +291.613 515.515 m 291.613 520.015 l 310.363 520.015 l 310.363 511.015 l + 291.613 511.015 l h +360.613 525.265 m 360.613 529.765 l 369.613 529.765 l 369.613 520.765 l + 360.613 520.765 l h +350.863 550.015 m 350.863 559.765 l 369.613 559.765 l 369.613 540.265 l + 350.863 540.265 l h +232.363 554.89 m 232.363 559.765 l 251.863 559.765 l 251.863 550.015 l +232.363 550.015 l h +232.363 554.89 m f +Q Q +showpage +%%Trailer +end restore +%%EOF -- cgit v1.2.3