├── .gitignore ├── Makefile ├── README.md ├── README_hithesis.md ├── back ├── acknowledgements.tex ├── appA.tex ├── appendix01.tex ├── ceindex.tex ├── conclusion.tex ├── publications.tex └── resume.tex ├── body └── introduction.tex ├── ctex-fontset-fandol.def ├── ctex-fontset-mac.def ├── ctex-fontset-siyuan.def ├── figures ├── bthesistitle.eps ├── golfer.eps └── hitlogo.eps ├── front ├── cover.tex ├── custom_definition.tex ├── denotation.tex ├── reportcover.tex └── 硕士学位论文中期封面样例.docx ├── hithesis.bst ├── hithesis.dtx ├── hithesis.ins ├── hithesis.sty ├── latexmkrc ├── main.tex ├── reference.bib ├── templete_jpg ├── templete_bachelor_zhongqi_0.jpg ├── templete_bachelor_zhongqi_1.jpg ├── templete_bachelor_zhongqi_2.jpg ├── templete_master_kaiti_0.jpg ├── templete_master_kaiti_1.jpg └── templete_master_kaiti_2.jpg └── 关于字体问题.txt /.gitignore: -------------------------------------------------------------------------------- 1 | auto 2 | node_modules 3 | dist 4 | .DS_Store 5 | *~ 6 | *.aux 7 | *.bak 8 | *.bbl 9 | *.blg 10 | *.dvi 11 | *.glo 12 | *.gls 13 | *.idx 14 | *.ilg 15 | *.ind 16 | *.log 17 | *.out 18 | *.thm 19 | *.toc 20 | *.lof 21 | *.lot 22 | *.loe 23 | *.vrb 24 | *.hd 25 | *.fdb_latexmk 26 | *.fls 27 | *.doc 28 | *.pdf 29 | *.toe 30 | *.xdv 31 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for ThuThesis 2 | 3 | # Compiling method: latexmk/xelatex/pdflatex 4 | METHOD = xelatex 5 | # Set opts for latexmk if you use it 6 | LATEXMKOPTS = -xelatex 7 | # Basename of thesis 8 | THESISMAIN = main 9 | 10 | PACKAGE=hithesis 11 | SOURCES=$(PACKAGE).ins $(PACKAGE).dtx 12 | THESISCONTENTS=$(THESISMAIN).tex front/*.tex body/*.tex back/*.tex $(FIGURES) *.bst 13 | # NOTE: update this to reflect your local file types. 14 | FIGURES=$(wildcard figures/*.eps figures/*.pdf) 15 | BIBFILE=*.bib 16 | CLSFILES=dtx-style.sty $(PACKAGE).cls $(PACKAGE).ist h$(PACKAGE).cfg 17 | 18 | # make deletion work on Windows 19 | ifdef SystemRoot 20 | RM = del /Q 21 | OPEN = start 22 | else 23 | RM = rm -f 24 | OPEN = open 25 | endif 26 | 27 | .PHONY: all clean distclean dist thesis viewthesis doc viewdoc cls check FORCE_MAKE 28 | 29 | all: doc thesis 30 | 31 | cls: $(CLSFILES) 32 | 33 | $(CLSFILES): $(SOURCES) 34 | latex $(PACKAGE).ins 35 | 36 | viewdoc: doc 37 | $(OPEN) $(PACKAGE).pdf 38 | 39 | doc: $(PACKAGE).pdf 40 | 41 | viewthesis: thesis 42 | $(OPEN) $(THESISMAIN).pdf 43 | 44 | thesis: $(THESISMAIN).pdf 45 | 46 | ifeq ($(METHOD),latexmk) 47 | 48 | $(PACKAGE).pdf: $(CLSFILES) FORCE_MAKE 49 | $(METHOD) $(LATEXMKOPTS) $(PACKAGE).dtx 50 | 51 | $(THESISMAIN).pdf: $(CLSFILES) FORCE_MAKE 52 | $(METHOD) $(LATEXMKOPTS) $(THESISMAIN) 53 | 54 | else ifeq ($(METHOD),xelatex) 55 | 56 | $(PACKAGE).pdf: $(CLSFILES) 57 | $(METHOD) $(PACKAGE).dtx 58 | makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx 59 | makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo 60 | $(METHOD) $(PACKAGE).dtx 61 | $(METHOD) $(PACKAGE).dtx 62 | 63 | $(THESISMAIN).idx: $(THESISMAIN).bbl 64 | $(METHOD) $(THESISMAIN) 65 | $(METHOD) $(THESISMAIN) 66 | 67 | 68 | $(THESISMAIN)_china.idx : $(CLSFILES) $(THESISMAIN).bbl $(THESISMAIN).idx 69 | splitindex $(THESISMAIN) -- -s $(PACKAGE).ist # 自动生成索引 70 | 71 | $(THESISMAIN)_english.ind $(THESISMAIN)_china.ind $(THESISMAIN)_english.idx : $(THESISMAIN)_china.idx 72 | 73 | $(THESISMAIN).pdf: $(CLSFILES) $(THESISCONTENTS) $(THESISMAIN)_china.ind $(THESISMAIN)_china.idx $(THESISMAIN)_english.ind $(THESISMAIN)_english.idx $(THESISMAIN).bbl 74 | $(METHOD) $(THESISMAIN) 75 | splitindex $(THESISMAIN) -- -s $(PACKAGE).ist # 自动生成索引 76 | $(METHOD) $(THESISMAIN) 77 | 78 | $(THESISMAIN).bbl: $(BIBFILE) 79 | $(METHOD) $(THESISMAIN) 80 | -bibtex $(THESISMAIN) 81 | $(RM) $(THESISMAIN).pdf 82 | 83 | else 84 | $(error Unknown METHOD: $(METHOD)) 85 | 86 | endif 87 | 88 | clean: 89 | latexmk -c $(PACKAGE).dtx 90 | latexmk -c $(THESISMAIN) 91 | -@$(RM) *~ *.idx *.ind *.ilg *.thm *.toe *.bbl 92 | 93 | cleanall: clean 94 | -@$(RM) $(PACKAGE).pdf $(THESISMAIN).pdf 95 | 96 | distclean: cleanall 97 | -@$(RM) $(CLSFILES) 98 | -@$(RM) -r dist 99 | 100 | check: FORCE_MAKE 101 | ag 'Harbin Institute of Technology Template|\\def\\version|"version":' hithesis.dtx package.json 102 | 103 | dist: all 104 | @if [ -z "$(version)" ]; then \ 105 | echo "Usage: make dist version=[x.y.z | ctan]"; \ 106 | else \ 107 | npm run build -- --version=$(version); \ 108 | fi 109 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hithesis-alpha 2 | # 哈尔滨工业大学LaTeX论文模板(添加开题/中期报告样式) 3 | --- 4 | *Notice2021: [dustincys](https://github.com/dustincys)等刀客已为原版 [hithesis (v3.0+)](https://github.com/hithesis/hithesis) 添加了一校三区、本硕博、开题中期毕业等各类报告的支持,格式、代码更加规范,通用性更强,可以前往下载使用,本项目已不再更新,Happy LaTeXing!* 5 | 6 | --- 7 | 8 | [hithesis-alpha](https://github.com/regulust/hithesis-alpha) 是在原 [hithesis](https://github.com/dustincys/hithesis) (v2.1.0 2020/04/04) 基础上进行的改编尝试,添加了开题/中期样式。添加过程不影响原有的关于毕业论文的设置与功能。 9 | 10 | 目前对研究生开题/中期样式支持较好,而~~本科生开题/中期报告存在部分问题~~,详见下文问题说明。 11 | 12 | 本项目继承原[hithesis](https://github.com/dustincys/hithesis) CC协议及[LaTeX Project Public License](https://www.latex-project.org/lppl/)。
由[hithesis-alpha](https://github.com/Regulust/hithesis-alpha) 采用 知识共享署名-非商业性使用 4.0 国际许可协议进行许可。 13 | 知识共享许可协议 14 | 15 | ***Happy LaTeXing!*** 16 | 17 | *Notice: 如果只是用作毕业论文用途,推荐使用原版[hithesis](https://github.com/dustincys/hithesis),新版本更新了关于版芯等设置且更加稳定。* 18 | 19 | *Notice(2020/04): [dustincys](https://github.com/dustincys)正在为**hithesis**添加广泛的校区、本硕博、开题中期等各类报告格式的支持,~~详细内容及更新请查看其[next分支](https://github.com/dustincys/hithesis/tree/next)~~。* 20 | 21 | 22 | Table of Contents 23 | ================= 24 | * [hithesis-alpha](#hithesis-alpha) 25 | * [更新记录](#更新记录) 26 | * [使用说明](#使用说明) 27 | * [修改说明](#修改说明) 28 | * [选项](#选项) 29 | * [样式code](#样式code) 30 | * [问题及变通](#问题及变通) 31 | * [存在的bug问题](#存在的bug问题) 32 | * [变通方法](#变通方法) 33 | * [致谢及声明](#致谢及声明) 34 | * [样式示例](#样式示例) 35 | 36 | ## 更新记录 37 | **update** 38 | *v2.1.0.1a 20200417* 39 | - minor fix: 更新一些提示语句等,修正\makecomment日期横线长度 40 | - Longtable caption problem fixed by [SPC](https://github.com/specialpointcentral) 41 | 42 | **update:** 43 | *v2.1.0.0a 20200417* 44 | 45 | - 更新到hithesis v2.1.0版本,支持校区选择; 46 | - 修改了原版本(hithesis v2.1.0)威海校区毕业论文封面样式; 47 | - 将 [hithesis-beta](https://github.com/specialpointcentral/hithesis-beta)合并入[hithesis-alpha](https://github.com/Regulust/hithesis-alpha)。 48 | 49 | *by [SPC](https://github.com/specialpointcentral),大神太6了🙏* 50 | 51 | **update:** 52 | *v2.0.11.1a 20200411* 53 | 54 | - kaiti/zhongqi的图表序号随section重置刷新,详见[issue-comment](https://github.com/Regulust/hithesis-alpha/issues/1#issuecomment-590268378)。 55 | 56 | **update:** 57 | *v2.0.11.0a 20200205* 58 | 59 | - code更新到hithesis v2.0.11版本(主要添加library项控制右翻页等); 60 | - 修改了本科开题/中期封面code风格,参fu考zhi自[hithesis-beta](https://github.com/specialpointcentral/hithesis-beta),按[教务处](http://jwc.hit.edu.cn/2566/list.htm)要求,移去班号项目,第二行标题改为居中(~~但\lishu问题依然没有解决~~已解决,详见[issue](https://github.com/Regulust/hithesis-alpha/issues/1)和“关于字体问题.txt”); 61 | - 更新研究生开题/中期封面code,使自动生成的封面与[研究生院样例](http://hitgs.hit.edu.cn/e0/b2/c3359a123058/page.psp)更加接近,但具体页面参数数值未精确校准。 62 | 63 | *封面方面依然推荐尝试“变通方法”;* 64 | *威海校区的童鞋可以参考使用[hithesis-beta](https://github.com/specialpointcentral/hithesis-beta)~* 65 | 66 | **update:** 67 | *v2.0.6.2a 20191212* 68 | - 改动位置注释修改为 *_modified by hithesis-alpha* 69 | - 修复在 noheader=true,stage=bachelor 时,页码与原hithesis项目设置(bsfrontpagenumberline、bsmainpagenumberline项)不一致的问题(调整了\fancyfoot的位置); 70 | - \documentclass中新增页眉设置 headersetting选项(合并原noheader选项): 71 | 删除该项default默认自动显示页眉; 72 | `headersetting=noheader`:全局“没有页眉”,某些老师可能要求开题、中期报告没有页眉,若在bachelor下使用,优先级高于bsheadrule; 73 | `headersetting=customizeheader`:自定义页眉文字,在文件开头填写自定义文字\newcommand{\customheader}{自定义页眉},该功能结合下文中的“变通方法”,hithesis-alpha可灵活用于综合考评、实验报告等许多其它场景。 74 | 75 | **update:** 76 | *v2.0.6.1a 20181221* 77 | - 修改调整图表编号设置 78 | 添加判断,在开题/中期时,使图表编号为 section-1 的格式,而非 chapter-1,因为开题/中期报告没有chapter章这一层级 79 | 80 | **Original:** 81 | *V2.0.6a 20181219* 82 | 83 | 版本号命名方式:前三位为hithesis版本号,a表示alpha,若有第4位表示hithesis-alpha的更新修复。 84 | 85 | ## 使用说明 86 | *推荐前往[hithesis](https://github.com/dustincys/hithesis)先阅读原说明或者在终端执行```texdoc hithesis```阅读原说明文档(需已安装TeXLive2017及更新版本)。* 87 | - 基本使用方法与原来hithesis一致, 88 | 在终端执行```latex hithesis.ins```(macOS/Linux) ```lualatex hithesis.ins```(Windows,未测试),然后在主文档中正常选择学位类型 ```type=doctor/master/bachelor``` 89 | - 使用开题/中期报告时,选填```stage=kaiti,zhongqi```,该项需放在type项前 90 | ,去掉该项缺省为false,即为原来hithesisd的本硕博毕业论文格式(切换原模板时若makecover报错,请注意在main.tex中切换封面文件 -> \input{front/cover})。 91 | - ~~选择```noheader=true```, 92 | 添加全局“没有页眉”选项,某些老师可能要求开题、中期报告没有页眉,去掉该项缺省为false,页眉正常显示,如果在bachelor下使用,优先级高于bsheadrule。~~ **v2.0.6.2a 已经合并入headersetting选项** 93 | 94 | ## 修改说明 95 | ### 选项 96 | - 添加选项 ```stage=kaiti,zhongqi``` 97 | 使用开题/中期报告时选填(需放在type项前),去掉该项缺省为false,即为原来hithesis的本硕博毕业论文格式。 98 | - ~~添加选项~~ ```noheader=true,false``` 99 | ~~添加全局“没有页眉”选项,某些老师可能要求开题、中期报告没有页眉,去掉该项缺省为false,页眉正常显示,如果在bachelor下使用,优先级高于bsheadrule~~。 **v2.0.6.2a 已经合并入headersetting选项(`headersetting=noheader/customizeheader`)** 100 | - 新建插入自定义宏包/命令文档custom_definition 101 | 有些专业需用到特殊的宏包,以及自己码文时自定义一些方便的快捷命令,可以统一放在./front/custom_definition.tex中 102 | 103 | ### 样式code 104 | 主要修改添加 hithesis.dtx 文件的部分代码,变动优先考虑不影响原hithesis的功能及样式。 105 | - 添加hit@stage项,用于区分kaiti、zhongqi 106 | - 添加noheader项,用于手动去掉页眉 107 | - \fancypagestyle{hit@headings}添加开题/中期的显示设置 108 | - 添加stageheader、stagestatus等字段定义,用于添加字符“开题/中期报告”字符 109 | - 新定义开题/中期报告封面样式\hit@report@titlepage 110 | - 分别添加 研究生/本科生 开题/中期报告封面 111 | 代码参考自[PlutoThesisProposal](https://github.com/dustincys/PlutoThesisProposal),膜拜Dustincys大神。 112 | - 修改section编号样式 113 | 开题/中期报告只有最高section层级,没有chapter层级,默认如果直接不写chapter 则section标号为"0.1".,所以重新定义了section编号样式,选择开题/中期时自动更改。 114 | - 在文献环境{thebibliography}处添加开题/中期判断 115 | 在使用开题/中期报告模式下,若需要参考文献,将参考文献部分改为为带标号的section层级,但需要将参考文献```\bibliography{reference}```添加到body文档中,并注释掉主文档的该行,否则会另起新页。 116 | 117 | \* *修改、添加的位置暂时以 "_added by t"注明,原本方便自己查找纠错,暂未更新到原hithesis的注释样式。-> v2.0.6.2a 改为"_modified by hithesis-alpha"* 118 | 119 | 120 | ## 问题及变通 121 | ### 存在的bug问题 122 | - **本科生开题/中期的封面与学校样例存在差别** 123 | 开题报告等字符/行间距不符合;封面底部“哈尔滨工业大学教务处”~~未能更改隶书字体(这里我也没搞明白,理论上原来已经定义了\lishu命令,但使用无效)~~。*【v2.1.0.0a已解决 by [SPC](https://github.com/specialpointcentral),详见[issue1](https://github.com/Regulust/hithesis-alpha/issues/1) 和 “关于字体问题.txt”】* 124 | - **“题目”行居中方式与学校样例存在差别** 125 | 目前和标准模板还有些许区别,“题目”两个字与题目的内容是一同居中的,而研究生院、教务处模板可能是题目两个字位置固定,题目内容文字单独居中。 126 | - **开题/中期报告封面部分代码风格老旧** 127 | 因为封面是由[PlutoThesisProposal](https://github.com/dustincys/PlutoThesisProposal) 项目中修改而来,代码风格仍是PlutoThesis时代,本人水平、精力有限,只能修改到让其运行起来,暂无力优化。*【Notice:2.0.11.0a 已更新】* 128 | 129 | ### 变通方法 130 | - 目前bug问题主要存在于报告的封面页,如果自动生成封面无法满足需要,可以采用变通方法 131 | 首先,自行下载并填写学校word模板封面页,然后生成pdf文件,放入front文件夹,命名为report_cover.pdf,使用 132 | ```\includepdfmerge{front/report_cover.pdf} ``` 命令手动插入该pdf封面,并注释掉下面```\input{front/reportcover}``` 及 ```\makecover``` 两行。 133 | 134 | *\* 该变通方法可灵活适用于综合考评、实验报告等其它报告场景。* 135 | 136 | 附: 137 | 138 | [窝工博士生培养过程相关文件/模板下载](http://hitgs.hit.edu.cn/e0/a8/c3416a123048/page.psp) 139 | 140 | [窝工硕士生培养过程相关文件/模板下载](http://hitgs.hit.edu.cn/e0/b2/c3359a123058/page.psp) 141 | 142 | [窝工本科毕业设计相关文件/模板下载](http://jwc.hit.edu.cn/2566/list.htm) 143 | 144 | ## 致谢及声明 145 | 首先感谢Dustincys大神编写的[Hithesis](https://github.com/dustincys/hithesis)模板及[PlutoThesisProposal](https://github.com/dustincys/PlutoThesisProposal)模板,膜拜。 146 | 147 | 本人也是才疏学浅,对LaTex的了解也是“一知半解”,只是自己用到,一时兴起,想着分享出来。该项目的首要原则为不影响原hithesis功能和显示,所以更改添加的代码冗杂不美观。暂时只是为满足自己使用需要,无精力进行完整测试及进一步优化。有交流需要请加入 hithesis 交流QQ群:259959600,大神超多。 148 | 149 | 再次对[Dustincys](https://github.com/dustincys)等窝工LaTeX各路大神表示感谢。 150 | 151 | ## 样式示例 152 | 153 | ![本科毕业设计中期封面](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545221844/Github/templete_bachelor_zhongqi_0.jpg) 154 | 155 | *本科毕业设计中期封面* 156 | 157 | ![本科毕业设计中期目录页](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545221846/Github/templete_bachelor_zhongqi_1.jpg) 158 | 159 | *本科毕业设计中期目录页* 160 | 161 | ![本科毕业设计中期封面内容页](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545402059/Github/templete_bachelor_zhongqi_2.jpg) 162 | 163 | *本科毕业设计中期内容页* 164 | 165 | ![硕士开题封面](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545221838/Github/templete_master_kaiti_0.jpg) 166 | 167 | *硕士开题封面* 168 | 169 | ![硕士开题目录页](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545221847/Github/templete_master_kaiti_1.jpg) 170 | 171 | *硕士开题目录页* 172 | 173 | ![硕士开题封面内容页](https://res.cloudinary.com/regulus/image/upload/c_scale,q_99,w_600/v1545402067/Github/templete_master_kaiti_2.jpg) 174 | 175 | *硕士开题封面内容页* 176 | 177 | --- 178 | ***hithesis原说明文档 请查看 [README_hithesis.md](https://github.com/dustincys/hithesis) 。*** 179 | 180 | >用的开心的小伙伴,可以考虑扫个红包码支持一下啊[打开支付宝首页搜“557241165”领红包],嘻嘻嘻~ 181 | -------------------------------------------------------------------------------- /README_hithesis.md: -------------------------------------------------------------------------------- 1 | # hithesis 2 | # 哈尔滨工业大学LaTeX论文模板 3 | 4 | 知识共享许可协议
hithesishttps://github.com/dustincys/hithesis 采用 知识共享 署名-非商业性使用 4.0 国际 许可协议进行许可。
基于https://github.com/dustincys/hithesis上的作品创作。 5 | 6 | ## What's hithesis? 7 | 8 | hithesis is a LaTeX thesis template package for Harbin Institute of Technolog 9 | supporting bachelor, master, doctor dissertations. Since the users of this 10 | package are supposed to be Chinese or those understand Chinese, the following of 11 | this file and all other documents are written in Chinese only. 12 | 13 | This file may be distributed and/or modified under the 14 | conditions of the LaTeX Project Public License, either version 1.3a 15 | of this license or (at your option) any later version. 16 | The latest version of this license is in: 17 | 18 | http://www.latex-project.org/lppl.txt 19 | 20 | and version 1.3a or later is part of all distributions of LaTeX 21 | version 2004/10/01 or later. 22 | 23 | ## hithesis是什么? 24 | 25 | hithesis 26 | 一个简单易用的哈尔滨工业大学学位论文LaTeX模板,现包括一校三区本科论文、硕士论文、博士论文。对其它格式的支持会陆续加入。 27 | hithesis 已收录在[CTAN](https://ctan.org/pkg/hithesis)中,用户安装TeXLive将自带我工模板(版本日期>2017.08.28)。 28 | 29 | ## 我工规范有歧义之处 30 | 31 | 各位刀客一定要先看清楚我工规范两大歧义之处:[版芯歧义](http://yanshuo.name/cn/2017/06/hithesisregulation/)和[本科生行距歧义](http://yanshuo.name/cn/2017/06/hithesissiyuan/)。 32 | 33 | 另外注意几处小歧义: 34 | - 在[规范](http://hitgs.hit.edu.cn/aa/fd/c3425a109309/page.htm)中规定和[研究生word排版范例](http://hitgs.hit.edu.cn/ab/1f/c3425a109343/page.htm)的中文目录中出现的“ABSTRACT”和“Abstract”的写法歧义(规格严格功夫大家!!!)。 35 | - 本科生论文官方模板的页眉页码格式混乱,有的有页码横线有的没有,有的有页眉有的没有。 36 | 37 | ## 模板特点 38 | 39 | ### 呆萌的操作,傲娇的效果 40 | 41 | - 极限程度实现了[《哈尔滨工业大学研究生学位论文撰写规范》](http://hitgs.hit.edu.cn/aa/fd/c3425a109309/page.htm)、[《哈尔滨工业大学本科生毕业论文撰写规范》](http://jwc.hit.edu.cn/2566/list.htm) 42 | - 这是[PlutoThesis](https://github.com/dustincys/PlutoThesis "PlutoThesis**)的终极进化,PlutoThesis废弃不再维护。 43 | - 更傻更简单的选项,例如论文主文件,只需要在文档类的括号中填写本硕博选项,字体选项(设置弹性间距或者刚性间距),文科生选项(目录可以设成四级目录),非全日制类型等,轻松设定目标格式。 44 | - 自适应格式,例如图题和标题,标题字号在字数超过两行时自动由五号变小五号,实现自适应(硕博规范规定,字数多时用五号) 45 | - 自动化中英文索引(博士规范要求,有需要时候添加) 46 | - 图书馆提交论文级的电子版 47 | - …… 48 | 49 | ### 矫正PlutoThesis的不足 50 | 51 | - 纠正PlutoThesis页面向下溢出 52 | - 纠正PlutoThesis不符合规范要求的各层次题序及标题不得置于页面的最后两行,改为不得置于最后一行(孤行),从此解决了饱受诟病的空白大的问题。 53 | - 纠正PlutoThesis行间距与标题段前段后距离统统设置为1.6倍行距的问题 54 | - 更强大的版芯设置,满足所有需求 55 | - 补充了PlutoThesis没有的符号表、索引两项 56 | - 字体设置符合CTeX的自动识别系统功能 57 | - 纠正PlutoThesis中图片中一些距离设置 58 | - 添加了符合规范要求的“图注在图题之上的设置” 59 | - 纠正PlutoThesis的双语图、表题中英语的非两端对齐问题 60 | - 添加了PlutoThesis中没有的图题最后一行居中且两端对齐格式 61 | - 添加了所有的图形排版格式 62 | - 纠正了附录中标题错误 63 | - 纠正了博士论文右翻页问题 64 | - 添加扫描替换功能,替换之后、页码目录书签自动设置 65 | - 添加思源宋体设置,再也不用害怕奇怪字打不出来了 66 | - 添加文科生、非全日制同等学力封面格式 67 | - 添加PlutoThesis没有的说明文档 68 | - …… 69 | 70 | ### 为了我工的规格严格、功夫到家 71 | 72 | - 行间距、段前后距离设置精确到小数后四位, 例如 1bp = 1.00374pt,1mm = 2.84526pt, 按照我工之要求, 行距在3mm~4mm之间,换算之后为20.50398~23.33863bp,严格符合规范要求,哪怕是显微镜级别 73 | - 规范明确规定,数字间空格要求为汉字宽度的四分之一(形式类似与 12 2345 和 0.123 456 这样多于3位以上的整数或小数)。默认情况下在LaTeX中任何人工输入的空格均不正确(“\:”为4/18汉字宽度,“\;”为5/18汉字宽度,所以PlutoThesis中的数字间宽度错误)。hithesis模板中定义了精准的数字间宽度。 74 | - 重写了一堆重要函数,例如章节标题由原来的`BiChapter{}{}`方式进化为`chapter{}[**`,极大简化,后面方括号中为可选括号,硕本可以不用,用了自动忽略 75 | - 严格符合(满足)两个规范要求,由于规范中有矛盾之处,例如本科生的标题段前距离有两处不一样的规定,刚性行距尽量满足行数(要求约33行)要求。 76 | - 规范中给出了行距区间,为了规格严格,设置了弹性行距 77 | - …… 78 | 79 | ## 关于模板的命名和其他说明 80 | 81 | ### 模板的命名 82 | 83 | 本模板对PlutoThesis中的核心代码进行了彻底深入的修改。 84 | PlutoThesis中没有采用cls,这种文档类的模式,代码与正文内容耦合程度大难以维护,本科模板和硕博模板难以融合。 85 | 由于冥王星已经不是太阳系C9之一,所以不继续使用PlutoThesis命名。 86 | 87 | hithesis, 既含我工hit,也是说用的“嗨!”,读作“嗨thesis”。 88 | 89 | ### 关于模板的下载地址 90 | 91 | 模板有三个下载地址: 92 | 93 | 1. github: https://github.com/dustincys/hithesis 94 | 2. gitee: https://gitee.com/dustincys/hithesis 95 | 3. CTAN: https://ctan.org/pkg/hithesis 96 | 97 | github和gitee的版本是同步且是最新的模板。 98 | CTAN的版本一般会比较落后,但在每年年底会同步为最新版本。 99 | 100 | ### 关于hithesis的线上讨论区 101 | 102 | ~~由于维护者(就是本书呆)已经是高龄不毕业刀客,课题繁忙,常常无法及时回答疑问。~~ 103 | 为了解决使用中遇到的问题,请各位刀客和大侠加入QQ群hithesis讨论区:259959600 (人满)或窝工山hithesis派:851792460。 104 | 如要和作者聊聊,请先看[hithesis的“昨天今天和明天”](https://yanshuo.name/cn/2020/01/hithesis/)。 105 | 106 | hithesis 高级群:476262502 (高级群为作者散布高级排版、制图、Linux管理、编码等 107 | 知识和技术之所在,其要旨引用自《西游记》第八回,如来自言“叵耐不识我法门之要旨, 108 | 怠慢了瑜伽之正宗”,以及“曹溪路险、鹫岭云深,故人不音杳!”。散布知识之后,作者将 109 | 直播回答高级群中众生问题。(**由于工作关系直播暂停,开播时间待定**))。 110 | 111 | 21 Oct 2019 添加:由于工作繁忙,改为西瓜小视频形式传播正能量(**包括Linux实用技术、 112 | 排版、制图等等平时积累的经验和知识**)。 113 | 114 | 西瓜视频ID:**石见石页** 115 | 116 | 网址:https://www.ixigua.com/home/105143356290/ 117 | 118 | hithesis群里有很多热心的LaTeX隐士高人如@poofee等,很乐于解答。 119 | 120 | ### 关于查重 121 | 122 | 注意:我工的论文查重可以使用pdf查重!!!!!!! 123 | 124 | 另外一点注意:查重的pdf一定要确保能够正常复制汉字。有些系统自动识别的汉字字体, 125 | 会出现无法正常复制的情况(可能是系统的字体映射出现了误差)。一般需要在主文件的 126 | 选项中明确声明使用哪一种fontset。 127 | 128 | ### 模板版本要求 129 | 130 | LaTeX 中的ctex package版本要求: 131 | 132 | ctex >= v2.4.3 (2016年9月份发布) 133 | 134 | 注意,如果下载最新版本(>= 2018)的texlive或Miktex或Mactex,如果使用自带的模板,可能会出现一些错误,因为自带的版本老。 135 | 查看自带版本的命令是 136 | 137 | texdoc hithesis 138 | 139 | ### 模板的编译方法 140 | 141 | 1. 生成论文格式文件(第一步要生成 *.cls,*.cfg,*.ist,然后再生成论文) 142 | 143 | - 如果是Linux/Mac执行 (此处作者没测试过Mac,如遇到问题到谈论区可以问一下热心刀客大侠们,比如陈登泰教授、郭大侠等) 144 | 145 | latex hithesis.ins 146 | 147 | - 如果是Windows执行(作者没测试过,如遇问题同上) 148 | 149 | lualatex hithesis.ins 150 | 151 | - 如果喜欢玩 make 152 | 153 | make cls 154 | 155 | 2. 生成论文的方式 156 | 157 | - 手动狙击(源文件更改后每次编译逐行命令输入一轮) 158 | 159 | xelatex -shell-escape main.tex 160 | bibtex main 161 | xelatex -shell-escape main.tex 162 | xelatex -shell-escape main.tex 163 | splitindex main -- -s hithesis.ist # 自动生成索引 164 | xelatex -shell-escape main.tex 165 | 166 | - 半自动精确射击(源文件更改后每次编译敲一次) 167 | 168 | make thesis 169 | 170 | - 全自动火力覆盖(只需要输入一次命令,源文件更改后自动识别更改自动编译) 171 | 172 | latexmk 173 | 174 | 3. 生成文档(没什么用,因为有文档也基本没人看) 175 | 176 | - 手动狙击(逐行命令输入一轮) 177 | 178 | xelatex hithesis.dtx 179 | makeindex -s gind.ist -o hithesis.ind hithesis.idx 180 | makeindex -s gglo.ist -o hithesis.gls hithesis.glo 181 | xelatex hithesis.dtx 182 | xelatex hithesis.dtx 183 | 184 | - 半自动精确射击(编译敲一次) 185 | 186 | make doc 187 | 188 | ### 打印版、电子版 189 | 190 | 注意,一般情况下,博士论文的打印版要求双面打印,本硕单面。 191 | 博士论文在双面打印成册时,规范中没有明确规定是否要右翻页(右翻页是每一章的起始位 192 | 置位于书的右侧页面),所以会出现DIY(或身不由己DIY)哪一处右翻页。 193 | `openright`选项设置为真时,会将所有章(即所有部分,包括前文和后文)起始设置成右翻页。 194 | 如果想DIY(或身不由己DIY)在什么地方右翻页,将这个选项设置为false,然后在目标位 195 | 置添加`\cleardoublepage`命令即可。 196 | 197 | 最后向图书管提交的电子版不是右翻页且要求没有任何空白页,这时只需要设置选项`library=true` 198 | 即可,这时候会强制`openright=false`。然后什么都不用做,就会出现如同`Sirius`同学 199 | 的这种“书签还没整明白,论文居然已经通过了”的情况。 200 | 201 | ### 幻灯片 202 | 203 | 有些强迫症刀客喜欢用Beamer,推荐[progressbar主题](https://github.com/dustincys/progressbar), 204 | 能够使用[pympress](https://github.com/Cimbali/pympress)播放双屏提示。 205 | 206 | ### 其他说明 207 | 208 | 由于维护者(就是本书呆)已经是高龄不毕业博士,课题繁忙,实在无空余时间再写详细文档以及 无偿解决一些用户要求(例如前面文档中[已经解决的算法格式各实验室要求不一致](https://github.com/dustincys/PlutoThesis#%E6%B2%A1%E6%9C%89%E6%98%8E%E7%A1%AE%E8%A6%81%E6%B1%82%E7%9A%84%E6%A0%BC%E5%BC%8F)问题)。 209 | 210 | 各位刀客和大侠如用的嗨,要解囊相助,请微信扫码~~ 211 | 212 | ![wechat](http://wx2.sinaimg.cn/large/61dccbaaly1fqwvz6sd4ej20yi1au797.jpg "谢谢") 213 | 214 | ![zfb](http://wx3.sinaimg.cn/large/61dccbaaly1fizali9tafj20k00ucgos.jpg "谢谢") 215 | 216 | 其实没关系,为了我工的“规格严格,功夫到家”! 217 | 218 | - 本模板以PlutoThesis为核心基础,参考了CTAN中清华大学薛瑞尼所开发的thuthesis以及其分支重庆大学等毕业论文模板的代码开发而来 219 | - ~~学校教务处和研究生院只提供了规范,并没有提供官方的任何模板(包括word),所以~~ 学校教务处和研究生院提供了规范和[研究生word模板](http://hitgs.hit.edu.cn/ab/1f/c3425a109343/page.htm)以及[本科生word模板](http://jwc.hit.edu.cn/2566/list.htm)(厉害了word哥……),此模板仅为规范的参考实现,不保证格式审查老师不提意见。任何由于使用本模板而引起的论文格式审查问题均与本模板作者无关 220 | 221 | 知识共享许可协议
hithesishttps://github.com/dustincys/hithesis 采用 知识共享 署名-非商业性使用 4.0 国际 许可协议进行许可。
基于https://github.com/dustincys/hithesis上的作品创作。 222 | -------------------------------------------------------------------------------- /back/acknowledgements.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{acknowledgements} 3 | 衷心感谢导师~XXX~教授对本人的精心指导。他的言传身教将使我终生受益。 4 | 5 | …… 6 | 7 | 感谢哈工大\LaTeX\ 论文模板\hithesis\ ! 8 | 9 | \end{acknowledgements} 10 | -------------------------------------------------------------------------------- /back/appA.tex: -------------------------------------------------------------------------------- 1 | % -*-coding: utf-8 -*- 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | \chapter{带章节的附录}[Full Appendix]% 4 | 完整的附录内容,包含章节,公式,图表等 5 | 6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | \section{附录节的内容}[Section in Appendix] 8 | 这是附录的节的内容 9 | 10 | 附录中图的示例: 11 | \begin{figure}[htbp] 12 | \centering 13 | \includegraphics[width = 0.4\textwidth]{golfer} 14 | %\bicaption[golfer5]{}{\xiaosi[0]打高尔夫球的人}{Fig.$\!$}{The person playing golf}\vspace{-1em} 15 | \caption{\xiaosi[0]打高尔夫球的人} 16 | \end{figure} 17 | 18 | 附录中公式的示例: 19 | \begin{align} 20 | a & = b \times c \\ 21 | E & = m c^2 22 | \label{eq} 23 | \end{align} 24 | 25 | \chapter{这个星球上最好的免费Linux软件列表}[List of the Best Linux Software in our Planet] 26 | \section{系统} 27 | 28 | \href{http://fvwm.org/}{FVWM 自从上世纪诞生以来,此星球最强大的窗口管理器。} 29 | 推荐基于FVWM的桌面设计hifvwm:\href{https://github.com/dustincys/hifvwm}{https://github.com/dustincys/hifvwm}。 30 | 31 | \subsection{hifvwm的优点} 32 | 33 | \begin{enumerate} 34 | \item 即使打开上百个窗口也不会“蒙圈”。计算机性能越来越强大,窗口任务的管理必须要升级到打怪兽级别。 35 | \item 自动同步Bing搜索主页的壁纸。每次电脑开机,午夜零点自动更新,用户 36 | 也可以手动更新,从此审美再也不疲劳。 37 | \item 切换窗口自动聚焦到最上面的窗口。使用键盘快捷键切换窗口时候,减少 38 | 操作过程,自动聚焦到目标窗口。这一特性是虚拟窗口必须的人性化设 39 | 计。 40 | \item 类似window右下角的功能的最小化窗口来显示桌面的功能此处类似 41 | win7/win10,实现在一个桌面之内操作多个任务。 42 | \item 任务栏结合标题栏。采用任务栏和标题栏结合,节省空间。 43 | \item 同类窗口切换。可以在同类窗口之内类似alt-tab的方式切换。 44 | \item …… 45 | \end{enumerate} 46 | 47 | \section{其他} 48 | 49 | \href{https://github.com/goldendict/goldendict}{goldendict 星球最强大的桌面字典。} 50 | 51 | \href{https://github.com/yarrick/iodine}{iodine,“HIT-WLAN + 锐捷”时代的福音。} 52 | 53 | \href{http://www.aircrack-ng.org/}{aircrack,Wifi“安全性评估”工具。} 54 | 55 | \href{https://www.ledger-cli.org/}{ledger,前“金融区块链”时代最好的复式记账系统。} 56 | 57 | \href{https://orgmode.org/}{orgmode,最强大的笔记系统,从来没有之一。} 58 | 59 | \href{https://www.jianguoyun.com/}{坚果云,国内一款支持WebDav的云盘系统,国内真正的云盘没有之一。} 60 | 61 | \href{http://www.mutt.org/}{mutt, ``All mail clients suck. This one just sucks less.''} 62 | 63 | \section{vim} 64 | 实现中英文每一句一行,以及实现每一句折叠断行的简单正则式,tex源码更加乖乖。 65 | \begin{lstlisting} 66 | vnoremap fae J:s/[.!?]\zs\s\+/\="\r".matchstr(getline('.'), '^\s*')/g 67 | vnoremap fac J:s/[。!?]/\=submatch(0)."\n".matchstr(getline('.'), '^\s*')/g 68 | vnoremap fle :!fmt -80 -s 69 | \end{lstlisting} 70 | -------------------------------------------------------------------------------- /back/appendix01.tex: -------------------------------------------------------------------------------- 1 | \chapter{外文资料原文} 2 | \label{cha:engorg} 3 | 4 | \title{The title of the English paper} 5 | 6 | \textbf{Abstract:} As one of the most widely used techniques in operations 7 | research, \emph{ mathematical programming} is defined as a means of maximizing a 8 | quantity known as \emph{bjective function}, subject to a set of constraints 9 | represented by equations and inequalities. Some known subtopics of mathematical 10 | programming are linear programming, nonlinear programming, multiobjective 11 | programming, goal programming, dynamic programming, and multilevel 12 | programming$^{[1]}$. 13 | 14 | It is impossible to cover in a single chapter every concept of mathematical 15 | programming. This chapter introduces only the basic concepts and techniques of 16 | mathematical programming such that readers gain an understanding of them 17 | throughout the book$^{[2,3]}$. 18 | 19 | 20 | \section{Single-Objective Programming} 21 | The general form of single-objective programming (SOP) is written 22 | as follows, 23 | \begin{equation}\tag*{(123)} % 如果附录中的公式不想让它出现在公式索引中,那就请 24 | % 用 \tag*{xxxx} 25 | \left\{\begin{array}{l} 26 | \max \,\,f(x)\\[0.1 cm] 27 | \mbox{subject to:} \\ [0.1 cm] 28 | \qquad g_j(x)\le 0,\quad j=1,2,\cdots,p 29 | \end{array}\right. 30 | \end{equation} 31 | which maximizes a real-valued function $f$ of 32 | $x=(x_1,x_2,\cdots,x_n)$ subject to a set of constraints. 33 | 34 | \newtheorem{mpdef}{Definition}[chapter] 35 | \begin{mpdef} 36 | In SOP, we call $x$ a decision vector, and 37 | $x_1,x_2,\cdots,x_n$ decision variables. The function 38 | $f$ is called the objective function. The set 39 | \begin{equation}\tag*{(456)} % 这里同理,其它不再一一指定。 40 | S=\left\{x\in\Re^n\bigm|g_j(x)\le 0,\,j=1,2,\cdots,p\right\} 41 | \end{equation} 42 | is called the feasible set. An element $x$ in $S$ is called a 43 | feasible solution. 44 | \end{mpdef} 45 | 46 | \newtheorem{mpdefop}[mpdef]{Definition} 47 | \begin{mpdefop} 48 | A feasible solution $x^*$ is called the optimal 49 | solution of SOP if and only if 50 | \begin{equation} 51 | f(x^*)\ge f(x) 52 | \end{equation} 53 | for any feasible solution $x$. 54 | \end{mpdefop} 55 | 56 | One of the outstanding contributions to mathematical programming was known as 57 | the Kuhn-Tucker conditions\ref{eq:ktc}. In order to introduce them, let us give 58 | some definitions. An inequality constraint $g_j(x)\le 0$ is said to be active at 59 | a point $x^*$ if $g_j(x^*)=0$. A point $x^*$ satisfying $g_j(x^*)\le 0$ is said 60 | to be regular if the gradient vectors $\nabla g_j(x)$ of all active constraints 61 | are linearly independent. 62 | 63 | Let $x^*$ be a regular point of the constraints of SOP and assume that all the 64 | functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are differentiable. If $x^*$ is a 65 | local optimal solution, then there exist Lagrange multipliers 66 | $\lambda_j,j=1,2,\cdots,p$ such that the following Kuhn-Tucker conditions hold, 67 | \begin{equation} 68 | \label{eq:ktc} 69 | \left\{\begin{array}{l} 70 | \nabla f(x^*)-\sum\limits_{j=1}^p\lambda_j\nabla g_j(x^*)=0\\[0.3cm] 71 | \lambda_jg_j(x^*)=0,\quad j=1,2,\cdots,p\\[0.2cm] 72 | \lambda_j\ge 0,\quad j=1,2,\cdots,p. 73 | \end{array}\right. 74 | \end{equation} 75 | If all the functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are convex and 76 | differentiable, and the point $x^*$ satisfies the Kuhn-Tucker conditions 77 | (\ref{eq:ktc}), then it has been proved that the point $x^*$ is a global optimal 78 | solution of SOP. 79 | 80 | \subsection{Linear Programming} 81 | \label{sec:lp} 82 | 83 | If the functions $f(x),g_j(x),j=1,2,\cdots,p$ are all linear, then SOP is called 84 | a {\em linear programming}. 85 | 86 | The feasible set of linear is always convex. A point $x$ is called an extreme 87 | point of convex set $S$ if $x\in S$ and $x$ cannot be expressed as a convex 88 | combination of two points in $S$. It has been shown that the optimal solution to 89 | linear programming corresponds to an extreme point of its feasible set provided 90 | that the feasible set $S$ is bounded. This fact is the basis of the {\em simplex 91 | algorithm} which was developed by Dantzig as a very efficient method for 92 | solving linear programming. 93 | \begin{table}[ht] 94 | \centering 95 | \centering 96 | \caption*{Table~1\hskip1em This is an example for manually numbered table, which 97 | would not appear in the list of tables} 98 | \label{tab:badtabular2} 99 | \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline 100 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 101 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 102 | GT-ITM & Waxman Transit-Stub & 600 & 103 | \multirow{2}{2em}{2\%}& 104 | \multirow{2}{2em}{10\%}& 105 | \multirow{2}{2em}{50\%}& 106 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 107 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 108 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 109 | \end{tabular} 110 | \end{table} 111 | 112 | Roughly speaking, the simplex algorithm examines only the extreme points of the 113 | feasible set, rather than all feasible points. At first, the simplex algorithm 114 | selects an extreme point as the initial point. The successive extreme point is 115 | selected so as to improve the objective function value. The procedure is 116 | repeated until no improvement in objective function value can be made. The last 117 | extreme point is the optimal solution. 118 | 119 | \subsection{Nonlinear Programming} 120 | 121 | If at least one of the functions $f(x),g_j(x),j=1,2,\cdots,p$ is nonlinear, then 122 | SOP is called a {\em nonlinear programming}. 123 | 124 | A large number of classical optimization methods have been developed to treat 125 | special-structural nonlinear programming based on the mathematical theory 126 | concerned with analyzing the structure of problems. 127 | 128 | Now we consider a nonlinear programming which is confronted solely with 129 | maximizing a real-valued function with domain $\Re^n$. Whether derivatives are 130 | available or not, the usual strategy is first to select a point in $\Re^n$ which 131 | is thought to be the most likely place where the maximum exists. If there is no 132 | information available on which to base such a selection, a point is chosen at 133 | random. From this first point an attempt is made to construct a sequence of 134 | points, each of which yields an improved objective function value over its 135 | predecessor. The next point to be added to the sequence is chosen by analyzing 136 | the behavior of the function at the previous points. This construction continues 137 | until some termination criterion is met. Methods based upon this strategy are 138 | called {\em ascent methods}, which can be classified as {\em direct methods}, 139 | {\em gradient methods}, and {\em Hessian methods} according to the information 140 | about the behavior of objective function $f$. Direct methods require only that 141 | the function can be evaluated at each point. Gradient methods require the 142 | evaluation of first derivatives of $f$. Hessian methods require the evaluation 143 | of second derivatives. In fact, there is no superior method for all 144 | problems. The efficiency of a method is very much dependent upon the objective 145 | function. 146 | 147 | \subsection{Integer Programming} 148 | 149 | {\em Integer programming} is a special mathematical programming in which all of 150 | the variables are assumed to be only integer values. When there are not only 151 | integer variables but also conventional continuous variables, we call it {\em 152 | mixed integer programming}. If all the variables are assumed either 0 or 1, 153 | then the problem is termed a {\em zero-one programming}. Although integer 154 | programming can be solved by an {\em exhaustive enumeration} theoretically, it 155 | is impractical to solve realistically sized integer programming problems. The 156 | most successful algorithm so far found to solve integer programming is called 157 | the {\em branch-and-bound enumeration} developed by Balas (1965) and Dakin 158 | (1965). The other technique to integer programming is the {\em cutting plane 159 | method} developed by Gomory (1959). 160 | 161 | \hfill\textit{Uncertain Programming\/}\quad(\textsl{BaoDing Liu, 2006.2}) 162 | 163 | \section*{References} 164 | \noindent{\itshape NOTE: These references are only for demonstration. They are 165 | not real citations in the original text.} 166 | 167 | \begin{translationbib} 168 | \item Donald E. Knuth. The \TeX book. Addison-Wesley, 1984. ISBN: 0-201-13448-9 169 | \item Paul W. Abrahams, Karl Berry and Kathryn A. Hargreaves. \TeX\ for the 170 | Impatient. Addison-Wesley, 1990. ISBN: 0-201-51375-7 171 | \item David Salomon. The advanced \TeX book. New York : Springer, 1995. ISBN:0-387-94556-3 172 | \end{translationbib} 173 | 174 | \chapter{外文资料的调研阅读报告或书面翻译} 175 | 176 | \title{英文资料的中文标题} 177 | 178 | {\heiti 摘要:} 本章为外文资料翻译内容。如果有摘要可以直接写上来,这部分好像没有 179 | 明确的规定。 180 | 181 | \section{单目标规划} 182 | 北冥有鱼,其名为鲲。鲲之大,不知其几千里也。化而为鸟,其名为鹏。鹏之背,不知其几 183 | 千里也。怒而飞,其翼若垂天之云。是鸟也,海运则将徙于南冥。南冥者,天池也。 184 | \begin{equation}\tag*{(123)} 185 | p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= 186 | \frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} 187 | \end{equation} 188 | 189 | 吾生也有涯,而知也无涯。以有涯随无涯,殆已!已而为知者,殆而已矣!为善无近名,为 190 | 恶无近刑,缘督以为经,可以保身,可以全生,可以养亲,可以尽年。 191 | 192 | \subsection{线性规划} 193 | 庖丁为文惠君解牛,手之所触,肩之所倚,足之所履,膝之所倚,砉然响然,奏刀騞然,莫 194 | 不中音,合于桑林之舞,乃中经首之会。 195 | \begin{table}[ht] 196 | \centering 197 | \centering 198 | \caption*{表~1\hskip1em 这是手动编号但不出现在索引中的一个表格例子} 199 | \label{tab:badtabular3} 200 | \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline 201 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 202 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 203 | GT-ITM & Waxman Transit-Stub & 600 & 204 | \multirow{2}{2em}{2\%}& 205 | \multirow{2}{2em}{10\%}& 206 | \multirow{2}{2em}{50\%}& 207 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 208 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 209 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 210 | \end{tabular} 211 | \end{table} 212 | 213 | 文惠君曰:“嘻,善哉!技盖至此乎?”庖丁释刀对曰:“臣之所好者道也,进乎技矣。始臣之 214 | 解牛之时,所见无非全牛者;三年之后,未尝见全牛也;方今之时,臣以神遇而不以目视, 215 | 官知止而神欲行。依乎天理,批大郤,导大窾,因其固然。技经肯綮之未尝,而况大坬乎! 216 | 良庖岁更刀,割也;族庖月更刀,折也;今臣之刀十九年矣,所解数千牛矣,而刀刃若新发 217 | 于硎。彼节者有间而刀刃者无厚,以无厚入有间,恢恢乎其于游刃必有余地矣。是以十九年 218 | 而刀刃若新发于硎。虽然,每至于族,吾见其难为,怵然为戒,视为止,行为迟,动刀甚微, 219 | 謋然已解,如土委地。提刀而立,为之而四顾,为之踌躇满志,善刀而藏之。” 220 | 221 | 文惠君曰:“善哉!吾闻庖丁之言,得养生焉。” 222 | 223 | 224 | \subsection{非线性规划} 225 | 孔子与柳下季为友,柳下季之弟名曰盗跖。盗跖从卒九千人,横行天下,侵暴诸侯。穴室枢 226 | 户,驱人牛马,取人妇女。贪得忘亲,不顾父母兄弟,不祭先祖。所过之邑,大国守城,小 227 | 国入保,万民苦之。孔子谓柳下季曰:“夫为人父者,必能诏其子;为人兄者,必能教其弟。 228 | 若父不能诏其子,兄不能教其弟,则无贵父子兄弟之亲矣。今先生,世之才士也,弟为盗 229 | 跖,为天下害,而弗能教也,丘窃为先生羞之。丘请为先生往说之。” 230 | 231 | 柳下季曰:“先生言为人父者必能诏其子,为人兄者必能教其弟,若子不听父之诏,弟不受 232 | 兄之教,虽今先生之辩,将奈之何哉?且跖之为人也,心如涌泉,意如飘风,强足以距敌, 233 | 辩足以饰非。顺其心则喜,逆其心则怒,易辱人以言。先生必无往。” 234 | 235 | 孔子不听,颜回为驭,子贡为右,往见盗跖。 236 | 237 | \subsection{整数规划} 238 | 盗跖乃方休卒徒大山之阳,脍人肝而餔之。孔子下车而前,见谒者曰:“鲁人孔丘,闻将军 239 | 高义,敬再拜谒者。”谒者入通。盗跖闻之大怒,目如明星,发上指冠,曰:“此夫鲁国之 240 | 巧伪人孔丘非邪?为我告之:尔作言造语,妄称文、武,冠枝木之冠,带死牛之胁,多辞缪 241 | 说,不耕而食,不织而衣,摇唇鼓舌,擅生是非,以迷天下之主,使天下学士不反其本,妄 242 | 作孝弟,而侥幸于封侯富贵者也。子之罪大极重,疾走归!不然,我将以子肝益昼餔之膳。” 243 | 244 | 245 | \chapter{其它附录} 246 | 前面两个附录主要是给本科生做例子。其它附录的内容可以放到这里,当然如果你愿意,可 247 | 以把这部分也放到独立的文件中,然后将其到主文件中。 248 | -------------------------------------------------------------------------------- /back/ceindex.tex: -------------------------------------------------------------------------------- 1 | \begin{ceindex} 2 | %如果想要手动加索引,注释掉以下这一样,用wordlist环境 3 | \printsubindex* 4 | \end{ceindex} 5 | -------------------------------------------------------------------------------- /back/conclusion.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{conclusions} 3 | 4 | 学位论文的结论作为论文正文的最后一章单独排写,但不加章标题序号。 5 | 6 | 结论应是作者在学位论文研究过程中所取得的创新性成果的概要总结,不能与摘要混为一谈。博士学位论文结论应包括论文的主要结果、创新点、展望三部分,在结论中应概括论文的核心观点,明确、客观地指出本研究内容的创新性成果(含新见解、新观点、方法创新、技术创新、理论创新),并指出今后进一步在本研究方向进行研究工作的展望与设想。对所取得的创新性成果应注意从定性和定量两方面给出科学、准确的评价,分(1)、(2)、(3)…条列出,宜用“提出了”、“建立了”等词叙述。 7 | 8 | \end{conclusions} 9 | -------------------------------------------------------------------------------- /back/publications.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \begin{publication} 4 | \noindent\textbf{(一)发表的学术论文} 5 | \begin{publist} 6 | \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) 7 | \item XXX,XXX. 精密超声振动切削单晶铜的计算机仿真研究[J]. 系统仿真学报,2007,19(4):738-741,753.(EI~收录号:20071310514841) 8 | \item XXX,XXX. 局部多孔质气体静压轴向轴承静态特性的数值求解[J]. 摩擦学学报,2007(1):68-72.(EI~收录号:20071510544816) 9 | \item XXX,XXX. 硬脆光学晶体材料超精密切削理论研究综述[J]. 机械工程学报,2003,39(8):15-22.(EI~收录号:2004088028875) 10 | \item XXX,XXX. 基于遗传算法的超精密切削加工表面粗糙度预测模型的参数辨识以及切削参数优化[J]. 机械工程学报,2005,41(11):158-162.(EI~收录号:2006039650087) 11 | \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) 12 | \end{publist} 13 | 14 | \noindent\textbf{(二)申请及已获得的专利(无专利时此项不必列出)} 15 | \begin{publist} 16 | \item XXX,XXX. 一种温热外敷药制备方案:中国,88105607.3[P]. 1989-07-26. 17 | \end{publist} 18 | 19 | \noindent\textbf{(三)参与的科研项目及获奖情况} 20 | \begin{publist} 21 | \item XXX,XXX. XX~气体静压轴承技术研究, XX~省自然科学基金项目.课题编号:XXXX. 22 | \item XXX,XXX. XX~静载下预应力混凝土房屋结构设计统一理论. 黑江省科学技术二等奖, 2007. 23 | \end{publist} 24 | %\vfill 25 | %\hangafter=1\hangindent=2em\noindent 26 | %\setlength{\parindent}{2em} 27 | \end{publication} 28 | -------------------------------------------------------------------------------- /back/resume.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \begin{resume} 4 | XXXX~年~XX~月~XX~日出生于~XXXX。 5 | 6 | XXXX~年~XX~月考入~XX~大学~XX~院(系)XX~专业,XXXX~年~XX~月本科毕业并获得~XX~学学士学位。 7 | 8 | XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学硕士学位。 9 | 10 | XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学博士学位。 11 | 12 | 获奖情况:如获三好学生、优秀团干部、X~奖学金等(不含科研学术获奖)。 13 | 14 | 工作经历: 15 | 16 | \textbf{( 除全日制硕士生以外,其余学生均应增列此项。个人简历一般应包含教育经历和工作经历。)} 17 | \end{resume} 18 | -------------------------------------------------------------------------------- /body/introduction.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \chapter*{示例文档/题目等}[Example] 4 | % 开题/中期没有chapter层级,可注释去掉,也可使用\chapter*{开题/中期题目}来生成无标号的chapter题目作为正文标题 5 | 6 | 这是 \hithesis\ 的示例文档,基本上覆盖了模板中所有格式的设置。建议大家在使用模 7 | 板之前,除了阅读《\hithesis\:哈尔滨工业大学学位论文模板》\footnote{即 8 | hithesis.pdf文件},本示例文档也最好能看一看。此示例文档尽量使用到所有的排版格式 9 | ,然而对于一些不在我工规范中规定的文档,理论上是由用户自由发挥,这里不给出样例 10 | 。需要另行载入的宏包和自定义命令在文件`hithesis.sty'中有示例,这里不列举。 11 | 12 | \section{关于数字}[Number] 13 | 14 | 按《关于出版物上数字用法的试行规定》(1987年1月1日国家语言文字工作委员会等7个单位公布),除习惯用中文数字表示的以外,一般数字均用阿拉伯数字。 15 | (1)公历的世纪、年代、年、月、日和时刻一律用阿拉伯数字,如20世纪,80年代,4时3刻等。年号要用四位数,如1989年,不能用89年。 16 | (2)记数与计算(含正负整数、分数、小数、百分比、约数等)一律用阿拉伯数字,如3/4,4.5%,10个月,500多种等。 17 | (3)一个数值的书写形式要照顾到上下文。不是出现在一组表示科学计量和具有统计意义数字中的一位数可以用汉字,如一个人,六条意见。星期几一律用汉字,如星期六。邻近两个数字并列连用,表示概数,应该用汉字数字,数字间不用顿号隔开,如三五天,七八十种,四十五六岁,一千七八百元等。 18 | (4)数字作为词素构成定型的词、词组、惯用语、缩略语等应当使用汉字。如二倍体,三叶虫,第三世界,“七五”规划,相差十万八千里等。 19 | (5)5位以上的数字,尾数零多的,可改写为以万、亿为单位的数。一般情况下不得以十、百、千、十万、百万、千万、十亿、百亿、千亿作为单位。如~\num{345000000}~公里可改写为3.45亿公里或~\num{34500}~万公里,但不能写为3亿~\num{4500}~万公里或3亿4千5百万公里。 20 | (6)数字的书写不必每格一个数码,一般每两数码占一格,数字间分节不用分位号“,”,凡4位或4位以上的数都从个位起每3位数空半个数码(1/4汉字)。“\num{3000000}”,不要写成“3,000,000”,小数点后的数从小数点起向右按每三位一组分节。一个用阿拉伯数字书写的多位数不能从数字中间转行。 21 | (7)数量的增加或减少要注意下列用词的概念:1)增加为(或增加到)过去的二倍,即过去为一,现在为二;2)增加(或增加了)二倍,即过去为一,现在为三;3)超额80%,即定额为100,现在为180;4)降低到80%,即过去为100,现在为80;5)降低(或降低了)80%,即原来为100,现在为20;6)为原数的1/4,即原数为4,现在为1,或原数为1,现在为0.25。 22 | 应特别注意在表达数字减小时,不宜用倍数,而应采用分数。如减少为原来的1/2,1/3等。 23 | 24 | 25 | \section{索引示例}[Index] 26 | 27 | 为便于检索文中内容,可编制索引置于论文之后(根据需要决定是否设置)。索引以论文中 28 | 的专业词语为检索线索,指出其相关内容的所在页码。索引用中、英两种文字书写,中文在 29 | 前。\sindex[china]{qi!乔峰}\sindex[english]{Xu Zhu}\sindex[english]{Qiao Feng} 30 | 中文按各词汉语拼音第一个字母排序,英文按该词第一个英文字母排序。 31 | 32 | \section{术语排版举例}[Glossaries and index] 33 | 34 | 术语的定义和使用可以结合索引,灵活使用。 35 | 例如,\gtssbp 是一种应用于狄利克雷过程抽样的算法。 36 | 下次出现将是另一种格式:\gtssbp 。 37 | 还可以切换单复数例如:\gscnas ,下次出现为:\gscnas 。 38 | 此处体现了\LaTeX\ 格式内容分离的优势。 39 | 40 | \section{引用}[Cite] 41 | 42 | \sindex[china]{du!段誉}引文标注遵照GB/T7714-2005,采用顺序编码制。正文中引用文献的标示应置于所引内容最后一个字的右上角,所引文献编号用阿拉伯数字置于方括号“[ ]”中,用小4号字体的上角标。要求: 43 | 44 | (1)引用单篇文献时,如“二次铣削\cite{cnproceed}”。 45 | 46 | (2)同一处引用多篇文献时,各篇文献的序号在方括号内全部列出,各序号间用“,”,如 47 | 遇连续序号,可标注讫序号。如,…形成了多种数学模型\cite{cnarticle,cnproceed}… 48 | 注意此处添加\cs{inlinecite}中文空格\inlinecite{cnarticle,cnproceed},可以在cfg文件中修改空格类型。 49 | 50 | (3)多次引用同一文献时,在文献序号的“[ ]”后标注引文页码。如,…间质细胞CAMP含量 51 | 测定\cite[100-197]{cnarticle}…。…含量测定方法规定 52 | \cite[92]{cnarticle}…。 53 | 54 | (4)当提及的参考文献为文中直接说明时,则用小4号字与正文排齐,如“由文献\inlinecite{hithesis2017}可知” 55 | 56 | \section{定理和定义等}[Theorem] 57 | \begin{theorem}[\cite{cnproceed}] 58 | 宇宙大爆炸是一种爆炸。 59 | \end{theorem} 60 | \begin{definition}[(霍金)] 61 | 宇宙大爆炸是一种爆炸。 62 | \end{definition} 63 | \begin{assumption} 64 | 宇宙大爆炸是一种爆炸。 65 | \end{assumption} 66 | \begin{lemma} 67 | 宇宙大爆炸是一种爆炸。 68 | \end{lemma} 69 | \begin{corollary} 70 | 宇宙大爆炸是一种爆炸。 71 | \end{corollary} 72 | \begin{exercise} 73 | 宇宙大爆炸是一种爆炸。 74 | \end{exercise} 75 | \begin{problem}[(Albert Einstein)] 76 | 宇宙大爆炸是一种爆炸。 77 | \end{problem} 78 | \begin{remark} 79 | 宇宙大爆炸是一种爆炸。 80 | \end{remark} 81 | \begin{axiom}[(爱因斯坦)] 82 | 宇宙大爆炸是一种爆炸。 83 | \end{axiom} 84 | \begin{conjecture} 85 | 宇宙大爆炸是一种爆炸。 86 | \end{conjecture} 87 | \section{图片}[Pictures] 88 | 图应有自明性。插图应与文字紧密配合,文图相符,内容正确。选图要力求精练,插图、照 89 | 片应完整清晰。机械工程图:采用第一角投影法,严格按照GB4457~GB131-83《机械制图》 90 | 标准规定。数据流程图、程序流程图、系统流程图等按GB1526-89标准规定。电气图:图形 91 | 符号、文字符号等应符合附录3所列有关标准的规定。流程图:必须采用结构化程序并正确 92 | 运用流程框图。对无规定符号的图形应采用该行业的常用画法。坐标图的坐标线均用细实线 93 | ,粗细不得超过图中曲线;有数字标注的坐标图,必须注明坐标单位。照片图要求主题和主 94 | 要显示部分的轮廓鲜明,便于制版。如用放大或缩小的复制品,必须清晰,反差适中。照片 95 | 上应有表示目的物尺寸的标度。引用文献中的图时,除在正文文字中标注参考文献序号以外 96 | ,还必须在中、英文表题的右上角标注参考文献序号。 97 | 98 | \subsection{博士毕业论文双语题注}[Doctoral picture example] 99 | \begin{figure}[htpb] 100 | \centering 101 | \includegraphics[width = 0.4\textwidth]{golfer} 102 | \bicaption[golfer1]{}{打高尔夫球球的人(博士论文双语题注)}{Fig.$\!$}{The person playing golf (Doctoral thesis)} 103 | \end{figure} 104 | 105 | 每个图均应有图题(由图序和图名组成),图题不宜有标点符号,图名在图序之后空1个半 106 | 角字符排写。图序按章编排,如第1章第一个插图的图号为“图1-1”。图题置于图下,硕士论 107 | 文只用中文,博士论文用中、英两种文字,居中书写,中文在上,要求中文用宋体5号字, 108 | 英文用Times New Roman 5号字。有图注或其它说明时应置于图题之上。引用图应注明出处 109 | ,在图题右上角加引用文献号。图中若有分图时,分图题置于分图之下或图题之下,可以只 110 | 用中文书写,分图号用a)、b)等表示。图中各部分说明应采用中文(引用的外文图除外)或 111 | 数字符号,各项文字说明置于图题之上(有分图时,置于分图题之上)。图中文字用宋体、 112 | Times New Roman字体,字号尽量采用5号字(当字数较多时可用小5号字,以清晰表达为原 113 | 则,但在一个插图内字号要统一)。同一图内使用文字应统一。图表中物理量、符号用斜体 114 | 。 115 | \subsection{本硕论文题注}[Other picture example] 116 | \begin{figure}[h] 117 | \centering 118 | \includegraphics[width = 0.4\textwidth]{golfer} 119 | \caption{打高尔夫球的人,硕士论文要求只用汉语} 120 | \end{figure} 121 | 122 | \subsection{并排图和子图}[Abreast-picture and Sub-picture example] 123 | \subsubsection{并排图}[Abreast-picture example] 124 | 125 | 使用并排图时,需要注意对齐方式。默认情况是中部对齐。这里给出中部对齐、顶部对齐 126 | 、图片底部对齐三种常见方式。其中,底部对齐方式有一个很巧妙的方式,将长度比较小 127 | 的图放在左面即可。 128 | 129 | \begin{figure}[htbp] 130 | \centering 131 | \begin{minipage}{0.4\textwidth} 132 | \centering 133 | \includegraphics[width=\textwidth]{golfer} 134 | \bicaption[golfer2]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 135 | \end{minipage} 136 | \centering 137 | \begin{minipage}{0.4\textwidth} 138 | \centering 139 | \includegraphics[width=\textwidth]{golfer} 140 | \bicaption[golfer3]{}{打高尔夫球的人。注意,这里默认居中}{Fig.$\!$}{The person playing golf. Please note that, it is vertically center aligned by default.} 141 | \end{minipage} 142 | \end{figure} 143 | 144 | \begin{figure}[htbp] 145 | \centering 146 | \begin{minipage}[t]{0.4\textwidth} 147 | \centering 148 | \includegraphics[width=\textwidth]{golfer} 149 | \bicaption[golfer5]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 150 | \end{minipage} 151 | \centering 152 | \begin{minipage}[t]{0.4\textwidth} 153 | \centering 154 | \includegraphics[width=\textwidth]{golfer} 155 | \bicaption[golfer8]{}{打高尔夫球的人。注意,此图是顶部对齐}{Fig.$\!$}{The person playing golf. Please note that, it is vertically top aligned.} 156 | \end{minipage} 157 | \end{figure} 158 | 159 | \begin{figure}[htbp] 160 | \centering 161 | \begin{minipage}[t]{0.4\textwidth} 162 | \centering 163 | \includegraphics[width=\textwidth,height=\textwidth]{golfer} 164 | \bicaption[golfer9]{}{打高尔夫球的人。注意,此图对齐方式是图片底部对齐}{Fig.$\!$}{The person playing golf. Please note that, it is vertically bottom aligned for figure.} 165 | \end{minipage} 166 | \centering 167 | \begin{minipage}[t]{0.4\textwidth} 168 | \centering 169 | \includegraphics[width=\textwidth]{golfer} 170 | \bicaption[golfer6]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 171 | \end{minipage} 172 | \end{figure} 173 | 174 | \subsubsection{子图}[Sub-picture example] 175 | 注意:子图题注也可以只用中文。规范规定“分图题置于分图之下或图题之下”,但没有给出具体的格式要求。 176 | 没有要求的另外一个说法就是“无论什么格式都不对”。 177 | 所以只有在一个图中有标注“a),b)”,无法使用\cs{subfigure}的情况下,使用最后一个图例中的格式设置方法,否则不要使用。 178 | 为了应对“无论什么格式都不对”,这个子图图题使用“minipage”和“description”环境,宽度,对齐方式可以按照个人喜好自由设置,是否使用双语子图图题也可以自由设置。 179 | 180 | \begin{figure}[!h] 181 | \setlength{\subfigcapskip}{-1bp} 182 | \centering 183 | \begin{minipage}{\textwidth} 184 | \centering 185 | \subfigure{\label{golfer41}}\addtocounter{subfigure}{-2} 186 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~1]{\includegraphics[width=0.4\textwidth]{golfer}}} 187 | \hspace{2em} 188 | \subfigure{\label{golfer42}}\addtocounter{subfigure}{-2} 189 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~2]{\includegraphics[width=0.4\textwidth]{golfer}}} 190 | \end{minipage} 191 | \centering 192 | \begin{minipage}{\textwidth} 193 | \centering 194 | \subfigure{\label{golfer43}}\addtocounter{subfigure}{-2} 195 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~3]{\includegraphics[width=0.4\textwidth]{golfer}}} 196 | \hspace{2em} 197 | \subfigure{\label{golfer44}}\addtocounter{subfigure}{-2} 198 | \subfigure[The person playing golf. Here, 'hang indent' and 'center last line' are not stipulated in the regulation.]{\subfigure[打高尔夫球的人~4。注意,规范中没有明确规定要悬挂缩进、最后一行居中。]{\includegraphics[width=0.4\textwidth]{golfer}}} 199 | \end{minipage} 200 | \vspace{0.2em} 201 | \bicaption[golfer4]{}{打高尔夫球的人}{Fig.$\!$}{The person playing gol} 202 | \end{figure} 203 | 204 | \begin{figure}[t] 205 | \centering 206 | \begin{minipage}{.7\linewidth} 207 | \setlength{\subfigcapskip}{-1bp} 208 | \centering 209 | \begin{minipage}{\textwidth} 210 | \centering 211 | \subfigure{\label{golfer45}}\addtocounter{subfigure}{-2} 212 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~1]{\includegraphics[width=0.4\textwidth]{golfer}}} 213 | \hspace{4em} 214 | \subfigure{\label{golfer46}}\addtocounter{subfigure}{-2} 215 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~2]{\includegraphics[width=0.4\textwidth]{golfer}}} 216 | \end{minipage} 217 | \vskip 0.2em 218 | \wuhao 注意:这里是中文图注添加位置(我工要求,图注在图题之上)。 219 | \vspace{0.2em} 220 | \bicaption[golfer47]{}{打高尔夫球的人。注意,此处我工有另外一处要求,子图图题可以位于主图题之下。但由于没有明确说明位于下方具体是什么格式,所以这里不给出举例。}{Fig.$\!$}{The person playing golf. Please note that, although it is appropriate to put subfigures' captions under this caption as stipulated in regulation, but its format is not clearly stated.} 221 | \end{minipage} 222 | \end{figure} 223 | 224 | \begin{figure}[t] 225 | \centering 226 | \begin{tikzpicture} 227 | \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.3\textwidth]{golfer}}; 228 | \begin{scope}[x={(image.south east)},y={(image.north west)}] 229 | \node at (0.3,0.5) {a)}; 230 | \node at (0.8,0.2) {b)}; 231 | \end{scope} 232 | \end{tikzpicture} 233 | \bicaption[golfer0]{}{打高尔夫球球的人(博士论文双语题注)}{Fig.$\!$}{The person playing golf (Doctoral thesis)} 234 | \vskip -0.4em 235 | \hspace{2em} 236 | \begin{minipage}[t]{0.3\textwidth} 237 | \wuhao \setlist[description]{font=\normalfont} 238 | \begin{description} 239 | \item[a)]子图图题 240 | \end{description} 241 | \end{minipage} 242 | \hspace{2em} 243 | \begin{minipage}[t]{0.3\textwidth} 244 | \wuhao \setlist[description]{font=\normalfont} 245 | \begin{description} 246 | \item[b)]子图图题 247 | \item[b)]Subfigure caption 248 | \end{description} 249 | \end{minipage} 250 | \end{figure} 251 | 252 | 253 | \begin{figure}[!h] 254 | \centering 255 | \begin{sideways} 256 | \begin{minipage}{\textheight} 257 | \centering 258 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 259 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 260 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 261 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 262 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 263 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 264 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 265 | \bicaption[golfer7]{}{打高尔夫球的人(非规范要求)}{Fig.$\!$}{The person playing golf (Not stated in the regulation)} 266 | \end{minipage} 267 | \end{sideways} 268 | \end{figure} 269 | 270 | \clearpage 271 | 272 | 如果不想让图片浮动到下一章节,那么在此处使用\cs{clearpage}命令。 273 | 274 | \section{如何做出符合规范的漂亮的图} 275 | 关于作图工具在后文\ref{drawtool}中给出一些作图工具的介绍,此处不多言。 276 | 此处以R语言和Tikz为例说明如何做出符合规范的图。 277 | 278 | \subsection{Tikz作图举例} 279 | 使用Tikz作图核心思想是把格式、主题、样式与内容分离,定义在全局中。 280 | 注意字体设置可以有两种选择,如何字少,用五号字,字多用小五。 281 | 使用Tikz作图不会出现字体问题,字体会自动与正文一致。 282 | 283 | \begin{figure}[thb!] 284 | \centering 285 | \begin{tikzpicture}[xscale=0.8,yscale=0.3,rotate=90] 286 | \small 287 | \draw (-22,6.5) node[refcell]{参考基因组}; 288 | \draw[refline] (-23, 5) -- (27, 5); 289 | \draw (-22,3.75) node[tscell]{肿瘤样本}; 290 | \draw (-20,3.75) node[tncell]{正常细胞}; 291 | \draw[tnline] (-21, 2.5) -- (27, 2.5); 292 | \draw (-20,1.25) node[ttcell]{肿瘤细胞}; 293 | \rcell{2}{6}; 294 | \draw[fakeevolve] (4.5, 5.25) -- (4.5, 4.8); 295 | \ncell{2}{4}; 296 | \draw[evolve] (4.5, 3) .. controls (4.5,2.8) and (-3.5,2.9) .. (-3.5, 2); 297 | \draw[evolve] (4.5, 3) .. controls (4.5,2.8) and (11.5,2.9) .. (11.5, 2); 298 | \tcellone{-6}{1.5}; 299 | \draw (-9, 2) node[ttcell]{1}; 300 | \draw[evolve] (-3.5, 0) .. controls (-3.5,-0.2) and (-12,-0.1) .. (-12, -1.5); 301 | \draw[evolve] (-3.5, 0) .. controls (-3.5,-0.2) and (1.5,-0.1) .. (1.5, -1.5); 302 | \tcellthree{7}{1.5}; 303 | \draw (4, 2) node[ttcell]{2}; 304 | \draw[evolve] (11, 0.5) .. controls (11,0.3) and (19,0.4) .. (19, -1.5); 305 | \tcellfive{-16}{-2}; 306 | \draw (-19, -1.5) node[ttcell]{3}; 307 | \tcelltwo{-1}{-2}; 308 | \draw (-4, -1.5) node[ttcell]{4}; 309 | \tcellfour{12}{-2}; 310 | \draw (9, -1.5) node[ttcell]{5}; 311 | \end{tikzpicture} 312 | \begin{minipage}{.9\linewidth} 313 | \vskip 0.2em 314 | \wuhao 图中,带有箭头的淡蓝色箭头表示肿瘤子种群的进化方向。一般地,从肿瘤组织中取用于进行二代测序的样本中含有一定程度的正常细胞污染,因此肿瘤的样本中含有正常细胞和肿瘤细胞。每一个子种群的基因组的模拟过程是把生殖细胞变异和体细胞变异加入到参考基因组中。 315 | \vspace{0.6em} 316 | \end{minipage} 317 | \bicaption[tumor]{}{肿瘤组织中各个子种群的进化示意图}{Fig.$\!$}{The diagram of tumor subpopulation evolution process} 318 | \end{figure} 319 | 320 | \subsection{R作图} 321 | R是一种极具有代表性的典型的作图工具,应用广泛。 322 | 与Tikz图~\ref{tumor}~不同,R作图分两种情况:(1)可以转换为Tikz码;(2)不可转换为Tikz码。 323 | 第一种情况图形简单,图形中不含有很多数据点,使用R语言中的Tikz包即可。 324 | 第二种情况是图形复杂,含有海量数据点,这时候不要转成Tikz矢量图,这会使得论文体积巨大。 325 | 推荐使用pdf或png非矢量图形。 326 | 使用非矢量图形时要注意选择好字号(五号或小五),和字体(宋体、新罗马)然后选择生成图形大小,注意此时在正文中使用\cs{includegraphics}命令导入时,不要像导入矢量图那样控制图形大小,使用图形的原本的 327 | 宽度和高度,这样就确保了非矢量图形中的文字与正文一致了。 328 | 329 | 为了控制\hithesis\ 的大小,此处不给出具体举例, 330 | 331 | \section{表格} 332 | 333 | 表应有自明性。表格不加左、右边线。表的编排建议采用国际通行的三线表。表中文字用宋 334 | 体~5~号字。每个表格均应有表题(由表序和表名组成)。表序一般按章编排,如第~1~章第 335 | 一个插表的序号为“表~1-1”等。表序与表名之间空一格,表名中不允许使用标点符号,表名 336 | 后不加标点。表题置于表上,硕士学位论文只用中文,博士学位论文用中、英文两种文字居 337 | 中排写,中文在上,要求中文用宋体~5~号字,英文用新罗马字体~5~号字。表头设计应简单 338 | 明了,尽量不用斜线。表头中可采用化学符号或物理量符号。 339 | 340 | 341 | \subsection{普通表格的绘制方法}[Methods of drawing normal tables] 342 | 343 | 表格应具有三线表格式,因此需要调用~booktabs~宏包,其标准格式如表~\ref{table1}~所示。 344 | \begin{table}[htbp] 345 | \bicaption[table1]{}{符合研究生院绘图规范的表格}{Table$\!$}{Table in agreement of the standard from graduate school} 346 | \vspace{0.5em}\centering\wuhao 347 | \begin{tabular}{ccccc} 348 | \toprule[1.5pt] 349 | $D$(in) & $P_u$(lbs) & $u_u$(in) & $\beta$ & $G_f$(psi.in)\\ 350 | \midrule[1pt] 351 | 5 & 269.8 & 0.000674 & 1.79 & 0.04089\\ 352 | 10 & 421.0 & 0.001035 & 3.59 & 0.04089\\ 353 | 20 & 640.2 & 0.001565 & 7.18 & 0.04089\\ 354 | \bottomrule[1.5pt] 355 | \end{tabular} 356 | \end{table} 357 | 全表如用同一单位,则将单位符号移至表头右上角,加圆括号。表中数据应准确无误,书写 358 | 清楚。数字空缺的格内加横线“-”(占~2~个数字宽度)。表内文字或数字上、下或左、右 359 | 相同时,采用通栏处理方式,不允许用“〃”、“同上”之类的写法。表内文字说明,起行空一 360 | 格、转行顶格、句末不加标点。如某个表需要转页接排,在随后的各页上应重复表的编号。 361 | 编号后加“(续表)”,表题可省略。续表应重复表头。 362 | 363 | \subsection{长表格的绘制方法}[Methods of drawing long tables] 364 | 365 | 长表格是当表格在当前页排不下而需要转页接排的情况下所采用的一种表格环境。若长表格 366 | 仍按照普通表格的绘制方法来获得,其所使用的\verb|table|浮动环境无法实现表格的换页 367 | 接排功能,表格下方过长部分会排在表格第1页的页脚以下。为了能够实现长表格的转页接 368 | 排功能,需要调用~longtable~宏包,由于长表格是跨页的文本内容,因此只需要单独的 369 | \verb|longtable|环境,所绘制的长表格的格式如表~\ref{table2}~所示。 370 | 371 | 注意,长表格双语标题的格式。 372 | 373 | \vspace{-1.5bp} 374 | \ltfontsize{\wuhao[1.667]} 375 | \wuhao[1.667]\begin{longtable}{ccc}% 376 | \longbionenumcaption{}{{\wuhao 中国省级行政单位一览 377 | }\label{table3}}{Table$\!$}{}{{\wuhao Overview of the provincial administrative 378 | unit of China}}{-0.5em}{3.15bp}\\ 379 | %\caption{\wuhao 中国省级行政单位一览}\\ 380 | \toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] 381 | \endfirsthead 382 | \multicolumn{3}{r}{表~\thetable(续表)}\vspace{0.5em}\\ 383 | \toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] 384 | \endhead 385 | \bottomrule[1.5pt] 386 | \endfoot 387 | 北京市 & 京 & 北京\\ 388 | 天津市 & 津 & 天津\\ 389 | 河北省 & 冀 & 石家庄市\\ 390 | 山西省 & 晋 & 太原市\\ 391 | 内蒙古自治区 & 蒙 & 呼和浩特市\\ 392 | 辽宁省 & 辽 & 沈阳市\\ 393 | 吉林省 & 吉 & 长春市\\ 394 | 黑龙江省 & 黑 & 哈尔滨市\\ 395 | 上海市 & 沪/申 & 上海\\ 396 | 江苏省 & 苏 & 南京市\\ 397 | 浙江省 & 浙 & 杭州市\\ 398 | 安徽省 & 皖 & 合肥市\\ 399 | 福建省 & 闽 & 福州市\\ 400 | 江西省 & 赣 & 南昌市\\ 401 | 山东省 & 鲁 & 济南市\\ 402 | 河南省 & 豫 & 郑州市\\ 403 | 湖北省 & 鄂 & 武汉市\\ 404 | 湖南省 & 湘 & 长沙市\\ 405 | 广东省 & 粤 & 广州市\\ 406 | 广西壮族自治区 & 桂 & 南宁市\\ 407 | 海南省 & 琼 & 海口市\\ 408 | 重庆市 & 渝 & 重庆\\ 409 | 四川省 & 川/蜀 & 成都市\\ 410 | 贵州省 & 黔/贵 & 贵阳市\\ 411 | 云南省 & 云/滇 & 昆明市\\ 412 | 西藏自治区 & 藏 & 拉萨市\\ 413 | 陕西省 & 陕/秦 & 西安市\\ 414 | 甘肃省 & 甘/陇 & 兰州市\\ 415 | 青海省 & 青 & 西宁市\\ 416 | 宁夏回族自治区 & 宁 & 银川市\\ 417 | 新疆维吾尔自治区 & 新 & 乌鲁木齐市\\ 418 | 香港特别行政区 & 港 & 香港\\ 419 | 澳门特别行政区 & 澳 & 澳门\\ 420 | 台湾省 & 台 & 台北市\\ 421 | \end{longtable}\normalsize 422 | \vspace{-1em} 423 | 424 | 此长表格~\ref{table2}~第~2~页的标题“编号(续表)”和表头是通过代码自动添加上去的,无需人工添加,若表格在页面中的竖直位置发生了变化,长表格在第~2~页 425 | 及之后各页的标题和表头位置能够始终处于各页的最顶部,也无需人工调整,\LaTeX~系统的这一优点是~word~等软件所无法比拟的。 426 | 427 | \subsection{列宽可调表格的绘制方法}[Methods of drawing tables with adjustable-width columns] 428 | 论文中能用到列宽可调表格的情况共有两种,一种是当插入的表格某一单元格内容过长以至 429 | 于一行放不下的情况,另一种是当对公式中首次出现的物理量符号进行注释的情况,这两种 430 | 情况都需要调用~tabularx~宏包。下面将分别对这两种情况下可调表格的绘制方法进行阐述 431 | 。 432 | \subsubsection{表格内某单元格内容过长的情况}[The condition when the contents in 433 | some cells of tables are too long] 434 | 首先给出这种情况下的一个例子如表~\ref{table3}~所示。 435 | \begin{table}[htbp] 436 | \centering 437 | \bicaption[table4]{}{最小的三个正整数的英文表示法}{Table$\!$}{The English construction of the smallest three positive integral numbers}\vspace{0.5em}\wuhao 438 | \begin{tabularx}{0.7\textwidth}{llX} 439 | \toprule[1.5pt] 440 | Value & Name & Alternate names, and names for sets of the given size\\\midrule[1pt] 441 | 1 & One & ace, single, singleton, unary, unit, unity\\ 442 | 2 & Two & binary, brace, couple, couplet, distich, deuce, double, doubleton, duad, duality, duet, duo, dyad, pair, snake eyes, span, twain, twosome, yoke\\ 443 | 3 & Three & deuce-ace, leash, set, tercet, ternary, ternion, terzetto, threesome, tierce, trey, triad, trine, trinity, trio, triplet, troika, hat-trick\\\bottomrule[1.5pt] 444 | \end{tabularx} 445 | \end{table} 446 | tabularx环境共有两个必选参数:第1个参数用来确定表格的总宽度,第2个参数用来确定每 447 | 列格式,其中标为X的项表示该列的宽度可调,其宽度值由表格总宽度确定。标为X的列一般 448 | 选为单元格内容过长而无法置于一行的列,这样使得该列内容能够根据表格总宽度自动分行 449 | 。若列格式中存在不止一个X项,则这些标为X的列的列宽相同,因此,一般不将内容较短的 450 | 列设为X。标为X的列均为左对齐,因此其余列一般选为l(左对齐),这样可使得表格美观 451 | ,但也可以选为c或r。 452 | 453 | \subsubsection{对物理量符号进行注释的情况}[The condition when physical symbols 454 | need to be annotated] 455 | 456 | 为使得对公式中物理量符号注释的转行与破折号“———”后第一个字对齐,此处最好采用表格 457 | 环境。此表格无任何线条,左对齐,且在破折号处对齐,一共有“式中”二字、物理量符号和 458 | 注释三列,表格的总宽度可选为文本宽度,因此应该采用\verb|tabularx|环境。由 459 | \verb|tabularx|环境生成的对公式中物理量符号进行注释的公式如式(\ref{eq:1})所示。 460 | \begin{equation}\label{eq:1} 461 | \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} 462 | \end{equation} 463 | \begin{tabularx}{\textwidth}{@{}l@{\quad}r@{———}X@{}} 464 | 式中& $\boldsymbol{\rho}$ &追踪飞行器与目标飞行器之间的相对位置矢量;\\ 465 | & $\boldsymbol{\ddot{\rho}}$&追踪飞行器与目标飞行器之间的相对加速度;\\ 466 | & $\mathbf{a}$ &推力所产生的加速度;\\ 467 | & $\mathbf{R_t}$ & 目标飞行器在惯性坐标系中的位置矢量;\\ 468 | & $\omega_{t}$ & 目标飞行器的轨道角速度;\\ 469 | & $\mathbf{g}$ & 重力加速度,$=\frac{\mu}{R_{t}^{3}}\left( 470 | 3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)=\omega_{t}^{2}\frac{R_{t}}{p}\left( 471 | 3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)$,这里~$p$~是目标飞行器的轨道半通径。 472 | \end{tabularx}\vspace{3.15bp} 473 | 由此方法生成的注释内容应紧邻待注释公式并置于其下方,因此不能将代码放入 474 | \verb|table|浮动环境中。但此方法不能实现自动转页接排,可能会在当前页剩余空间不够 475 | 时,全部移动到下一页而导致当前页出现很大空白。因此在需要转页处理时,还请您手动将 476 | 需要转页的代码放入一个新的\verb|tabularx|环境中,将原来的一个\verb|tabularx|环境 477 | 拆分为两个\verb|tabularx|环境。 478 | 479 | \subsubsection{排版横版表格的举例}[An example of landscape table] 480 | 481 | \begin{table}[p] 482 | \centering 483 | \begin{sideways} 484 | \begin{minipage}{\textheight} 485 | \bicaption[table2]{}{不在规范中规定的横版表格}{Table$\!$}{A table style which is not stated in the regulation} 486 | \vspace{0.5em}\centering\wuhao 487 | \begin{tabular}{ccccc} 488 | \toprule[1.5pt] 489 | $D$(in) & $P_u$(lbs) & $u_u$(in) & $\beta$ & $G_f$(psi.in)\\ 490 | \midrule[1pt] 491 | 5 & 269.8 & 0.000674 & 1.79 & 0.04089\\ 492 | 10 & 421.0 & 0.001035 & 3.59 & 0.04089\\ 493 | 20 & 640.2 & 0.001565 & 7.18 & 0.04089\\ 494 | \bottomrule[1.5pt] 495 | \end{tabular} 496 | \end{minipage} 497 | \end{sideways} 498 | \end{table} 499 | 500 | 501 | \section{公式} 502 | 与正常\LaTeX\ 使用方法一致,此处略。关于公式中符号样式的定义在`hithesis.sty'有示 503 | 例。 504 | 505 | \section{其他杂项}[Miscellaneous] 506 | 507 | \subsection{右翻页}[Open right] 508 | 509 | 对于双面打印的论文,强制使每章的标题页出现右手边为右翻页。 510 | 规范中没有明确规定是否是右翻页打印。 511 | 模板给出了右翻页选项。 512 | 为了应对用户的个人喜好,在希望设置成右翻页的位置之前添加\cs{cleardoublepage}命令即可。 513 | 514 | \subsection{算法}[Algorithms] 515 | 我工算法有以下几大特点。 516 | 517 | (1)算法不在规范中要求。 518 | 519 | (2)算法常常被使用(至少计算机学院)。 520 | 521 | (3)格式乱,甚至出现了每个实验室的格式要求都不一样。 522 | 523 | 此处不给出示例,因为没法给,在 524 | \href{https://github.com/dustincys/PlutoThesis}{https://github.com/dustincys/PlutoThesis} 525 | 的readme文件中有不同实验室算法要求说明。 526 | 527 | \subsection{脚注}[Footnotes] 528 | 不在再规范\footnote{规范是指\PGR\ 和\UGR}中要求,模板默认使用清华大学的格式。 529 | 530 | \subsection{源码}[Source code] 531 | 也不在再规范中要求。如果有需要最好使用minted包,但在编译的时候需要添加“ 532 | -shell-escape”选项且安装pygmentize软件,这些不在模板中默认载入,如果需要自行载入 533 | 。 534 | \subsection{思源宋体}[Siyuan font] 535 | 如果要使用思源字体,需要思源字体的定义文件,此文件请到模板的开发版网址github: 536 | \href{https://gihitb.com/dustincys/hithesis}{https://gihitb.com/dustincys/hithesis} 537 | 或者oschia: 538 | \href{https://git.oschina.net/dustincys/hithesis}{https://git.oschina.net/dustincys/hithesis} 539 | 处下载。 540 | 541 | \subsection{专业绘图工具}[Processional drawing tool] 542 | \label{drawtool} 543 | 推荐使用tikz包,使用tikz源码绘图的好处是,图片中的字体与正文中的字体一致。具体如 544 | 何使用tikz绘图不属于模板范畴。 545 | tikz适合用来画不需要大量实验数据支撑示意图。但R语言等专业绘图工具具有画出各种、 546 | 专业、复杂的数据图。R语言中有tikz包,能自动生成tikz码,这样tikz几乎无所不能。 547 | 对于排版有极致追求的小伙伴,可以参考 548 | \href{http://www.texample.net/tikz/resources/}{http://www.texample.net/tikz/resources/} 549 | 中所列工具,几乎所有作图软件所作的图形都可转成tikz,然后可以自由的在tikz中修改 550 | 图中内容,定义字体等等。实现前文窝工规范中要求的图中字体的一致性的终极目标。 551 | 552 | 553 | \subsection{术语词汇管理}[Manage glossaries] 554 | 推荐使用glossaries包管理术语、缩略语,可以自动生成首次全写,非首次缩写。 555 | 556 | \subsection{\TeX\ 源码编辑器}[\TeX editor] 557 | 推荐:(1)付费软件Winedt;(2)免费软件kile;(3)vim或emaces或sublime等神级编 558 | 译器(需要配置)。 559 | 560 | \subsection{\LaTeX\ 排版重要原则}[\LaTeX\ typesetting rules] 561 | 格式和内容分离是\LaTeX\ 最大优势,所有多次出现的内容、样式等等都可以定义为简单命 562 | 令、环境。这样的好处是方便修改、管理。例如,如果想要把所有的表示向量的符号由粗体 563 | \cs{mathbf}变换到花体\cs{mathcal},只需修改该格式的命令的定义部分,不需要像MS 564 | word那样处处修改。总而言之,使用自定义命令和环境才是正确的使用\LaTeX\ 的方式。 565 | 566 | \section{关于捐助} 567 | 各位刀客和大侠如用的嗨,要解囊相助,请微信或支付宝参照图 568 | ~\ref{wct5}~到图~\ref{zfb}~中提示操作(二维码被矢量化后之后去 569 | 除了头像等冗余无用的部分~)。 570 | 571 | \begin{figure}[!h] 572 | \setlength{\subfigcapskip}{-1bp} 573 | \centering 574 | \subfigure{\label{wct5}}\addtocounter{subfigure}{-1} 575 | \subfigure[如果用的嗨,微信扫码捐助5元]{\includegraphics[width=0.4\textwidth]{wct5}} 576 | \hspace{2em} 577 | \subfigure{\label{wct10}}\addtocounter{subfigure}{-1} 578 | \subfigure[如果用的非常嗨,微信扫码捐助10元]{\includegraphics[width=0.4\textwidth]{wct10}} 579 | \subfigure{\label{wct1}}\addtocounter{subfigure}{-1} 580 | \subfigure[那个,看在熬夜写代码的份上,微信扫码捐助1元吧]{\includegraphics[width=0.4\textwidth]{wct1}} 581 | \hspace{2em} 582 | \subfigure{\label{zfb}}\addtocounter{subfigure}{-1} 583 | \subfigure[或者支付宝不限额度]{\includegraphics[width=0.4\textwidth]{zfb}} 584 | \vspace{0.2em} 585 | \bicaption[Donation]{}{捐助,注意此处是子图只用汉语图题的形式,我工规定可以不用 586 | 英语图题}{Fig.$\!$}{Donation, please note that it is OK to use Chinese caption 587 | only} 588 | \end{figure} 589 | 590 | %section{参考文献} 591 | \bibliography{reference} %使用开题/中期报告时,如果需要参考文献,保留此行,并注释掉主文档main.tex中的\bibliography{reference}行,否则会把参考文献添加到新的一页。 592 | %正常毕业论文时,仅需要保留主文档中\bibliography{reference}行,并去掉此行。 593 | 594 | %\makecomment %针对威海校区模板,加入指导教师评语 595 | %该命令仅对:威海校区本科生开题中期部分起作用,其它校区选项请注释该命令否则会报错。 -------------------------------------------------------------------------------- /ctex-fontset-fandol.def: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `ctex-fontset-fandol.def', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% ctex.dtx (with options: `fontset,fandol') 8 | %% 9 | %% Copyright (C) 2003--2018 10 | %% CTEX.ORG and any individual authors listed in the documentation. 11 | %% ------------------------------------------------------------------------------ 12 | %% 13 | %% This work may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either 15 | %% version 1.3c of this license or (at your option) any later 16 | %% version. This version of this license is in 17 | %% http://www.latex-project.org/lppl/lppl-1-3c.txt 18 | %% and the latest version of this license is in 19 | %% http://www.latex-project.org/lppl.txt 20 | %% and version 1.3 or later is part of all distributions of 21 | %% LaTeX version 2005/12/01 or later. 22 | %% 23 | %% This work has the LPPL maintenance status `maintained'. 24 | %% 25 | %% The Current Maintainers of this work are Leo Liu, Qing Lee and Liam Huang. 26 | %% 27 | %% ------------------------------------------------------------------------------ 28 | %% 29 | \GetIdInfo$Id: ctex.dtx dd8349e 2018-01-28 19:10:52 +0800 Qing Lee $ 30 | {Fandol fonts definition (CTEX)} 31 | \ProvidesExplFile{ctex-fontset-fandol.def} 32 | {\ExplFileDate}{2.4.12}{\ExplFileDescription} 33 | \sys_if_engine_pdftex:TF 34 | { 35 | \sys_if_output_pdf:TF 36 | { \ctex_fontset_error:n { fandol } } 37 | { 38 | \ctex_zhmap_case:nnn 39 | { 40 | \setCJKmainfont 41 | [ 42 | cmap = UniGB-UTF16-H , 43 | BoldFont = FandolSong-Bold.otf , 44 | ItalicFont = FandolKai-Regular.otf 45 | ] { FandolSong-Regular.otf } 46 | \setCJKsansfont 47 | [ 48 | cmap = UniGB-UTF16-H , 49 | BoldFont = FandolHei-Bold.otf 50 | ] { FandolHei-Regular.otf } 51 | \setCJKmonofont [ cmap = UniGB-UTF16-H ] { FandolFang-Regular.otf } 52 | \setCJKfamilyfont { zhsong } 53 | [ 54 | cmap = UniGB-UTF16-H , 55 | BoldFont = FandolSong-Bold.otf 56 | ] { FandolSong-Regular.otf } 57 | \setCJKfamilyfont { zhhei } 58 | [ 59 | cmap = UniGB-UTF16-H , 60 | BoldFont = FandolHei-Bold.otf 61 | ] { FandolHei-Regular.otf } 62 | \setCJKfamilyfont { zhfs } 63 | [ cmap = UniGB-UTF16-H ] { FandolFang-Regular.otf } 64 | \setCJKfamilyfont { zhkai } 65 | [ cmap = UniGB-UTF16-H ] { FandolKai-Regular.otf } 66 | \ctex_punct_set:n { fandol } 67 | \ctex_punct_map_family:nn { \CJKrmdefault } { zhsong } 68 | \ctex_punct_map_family:nn { \CJKsfdefault } { zhhei } 69 | \ctex_punct_map_family:nn { \CJKttdefault } { zhfs } 70 | \ctex_punct_map_itshape:nn { \CJKrmdefault } { zhkai } 71 | \ctex_punct_map_bfseries:nn { \CJKrmdefault , zhsong } { zhsongb } 72 | \ctex_punct_map_bfseries:nn { \CJKsfdefault , zhhei } { zhheib } 73 | } 74 | { 75 | \ctex_load_zhmap:nnnn { rm } { zhhei } { zhfs } { zhfandolfonts } 76 | \ctex_punct_set:n { fandol } 77 | \ctex_punct_map_family:nn { \CJKrmdefault } { zhsong } 78 | \ctex_punct_map_bfseries:nn { \CJKrmdefault } { zhhei } 79 | \ctex_punct_map_itshape:nn { \CJKrmdefault } { zhkai } 80 | } 81 | { \ctex_fontset_error:n { fandol } } 82 | } 83 | } 84 | { 85 | \sys_if_engine_uptex:TF 86 | { 87 | \ctex_set_upfonts:nnnnnn 88 | {FandolSong-Regular.otf} {FandolSong-Bold.otf} {FandolKai-Regular.otf} 89 | {FandolHei-Regular.otf} {FandolHei-Bold.otf} 90 | {FandolFang-Regular.otf} 91 | \ctex_set_upfamily:nnn { zhsong } { upzhserif } { upzhserifb } 92 | \ctex_set_upfamily:nnn { zhhei } { upzhsans } { upzhsansb } 93 | \ctex_set_upfamily:nnn { zhfs } { upzhmono} {} 94 | \ctex_set_upfamily:nnn { zhkai } { upzhserifit } {} 95 | } 96 | { 97 | \setCJKmainfont 98 | [ 99 | Extension = .otf , 100 | BoldFont = FandolSong-Bold , ItalicFont = FandolKai-Regular 101 | ] 102 | { FandolSong-Regular } 103 | \setCJKsansfont 104 | [ Extension = .otf , BoldFont = FandolHei-Bold ] { FandolHei-Regular } 105 | \setCJKmonofont [ Extension = .otf ] { FandolFang-Regular } 106 | \setCJKfamilyfont { zhsong } 107 | [ Extension = .otf , BoldFont = FandolSong-Bold ] { FandolSong-Regular } 108 | \setCJKfamilyfont { zhhei } 109 | [ Extension = .otf , BoldFont = FandolHei-Bold ] { FandolHei-Regular } 110 | \setCJKfamilyfont { zhfs } [ Extension = .otf ] { FandolFang-Regular } 111 | \setCJKfamilyfont { zhkai } [ Extension = .otf ] { FandolKai-Regular } 112 | \setCJKfamilyfont { zhli } { LiSu } 113 | } 114 | } 115 | \NewDocumentCommand \songti { } { \CJKfamily { zhsong } } 116 | \NewDocumentCommand \heiti { } { \CJKfamily { zhhei } } 117 | \NewDocumentCommand \fangsong { } { \CJKfamily { zhfs } } 118 | \NewDocumentCommand \kaishu { } { \CJKfamily { zhkai } } 119 | \NewDocumentCommand \lishu { } { \CJKfamily { zhli } } 120 | %% 121 | %% 122 | %% End of file `ctex-fontset-fandol.def'. 123 | -------------------------------------------------------------------------------- /ctex-fontset-mac.def: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `ctex-fontset-mac.def', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% ctex.dtx (with options: `fontset,mac') 8 | %% 9 | %% Copyright (C) 2003--2018 10 | %% CTEX.ORG and any individual authors listed in the documentation. 11 | %% ------------------------------------------------------------------------------ 12 | %% 13 | %% This work may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either 15 | %% version 1.3c of this license or (at your option) any later 16 | %% version. This version of this license is in 17 | %% http://www.latex-project.org/lppl/lppl-1-3c.txt 18 | %% and the latest version of this license is in 19 | %% http://www.latex-project.org/lppl.txt 20 | %% and version 1.3 or later is part of all distributions of 21 | %% LaTeX version 2005/12/01 or later. 22 | %% 23 | %% This work has the LPPL maintenance status `maintained'. 24 | %% 25 | %% The Current Maintainers of this work are Leo Liu, Qing Lee and Liam Huang. 26 | %% 27 | %% ------------------------------------------------------------------------------ 28 | %% 29 | \GetIdInfo$Id: ctex.dtx dd8349e 2018-01-28 19:10:52 +0800 Qing Lee $ 30 | {Mac OS X fonts definition (CTEX)} 31 | \ProvidesExplFile{ctex-fontset-mac.def} 32 | {\ExplFileDate}{2.4.12}{\ExplFileDescription} 33 | \sys_if_engine_pdftex:TF 34 | { \ctex_fontset_error:n { mac } } 35 | { 36 | \sys_if_engine_uptex:TF 37 | { \ctex_fontset_error:n { mac } } 38 | { 39 | \setCJKmainfont [ BoldFont = STHeiti , ItalicFont = STKaiti ] { STSong } 40 | \setCJKsansfont [ BoldFont = STHeiti ] { STXihei } 41 | \setCJKmonofont { STFangsong } 42 | \setCJKfamilyfont { zhsong } { STSong } 43 | \setCJKfamilyfont { zhhei } { STHeiti } 44 | \setCJKfamilyfont { zhfs } { STFangsong } 45 | \setCJKfamilyfont { zhkai } { STKaiti } 46 | \setCJKfamilyfont { zhli } { LiSu } 47 | } 48 | } 49 | \NewDocumentCommand \songti { } { \CJKfamily { zhsong } } 50 | \NewDocumentCommand \heiti { } { \CJKfamily { zhhei } } 51 | \NewDocumentCommand \fangsong { } { \CJKfamily { zhfs } } 52 | \NewDocumentCommand \kaishu { } { \CJKfamily { zhkai } } 53 | \NewDocumentCommand \lishu { } { \CJKfamily { zhli } } 54 | 55 | %% 56 | %% 57 | %% End of file `ctex-fontset-mac.def'. 58 | -------------------------------------------------------------------------------- /ctex-fontset-siyuan.def: -------------------------------------------------------------------------------- 1 | \ProvidesExplFile{ctex-fontset-siyuan.def} 2 | {\ExplFileDate}{2.4.9}{\ExplFileDescription} 3 | \tl_new:N \l__ctex_msyh_suffix_tl 4 | \tl_set:Nn \l__ctex_msyh_suffix_tl { .ttc } 5 | \file_if_exist:nF { C:/Windows/Fonts/msyh.ttc } 6 | { 7 | \file_if_exist:nF { msyh.ttc } 8 | { \tl_set:Nn \l__ctex_msyh_suffix_tl { .ttf } } 9 | } 10 | \sys_if_engine_pdftex:TF 11 | { 12 | \ctex_zhmap_case:nnn 13 | { 14 | \ctex_punct_set:n { windows } 15 | \setCJKmainfont 16 | [ BoldFont = simhei.ttf , ItalicFont = simkai.ttf ] { simsun.ttc } 17 | \setCJKsansfont [ BoldFont = msyhbd\l__ctex_msyh_suffix_tl ] { msyh\l__ctex_msyh_suffix_tl } 18 | \setCJKfamilyfont { zhyahei } 19 | [ BoldFont = msyhbd\l__ctex_msyh_suffix_tl ] { msyh\l__ctex_msyh_suffix_tl } 20 | \ctex_punct_map_family:nn { \CJKsfdefault } { zhyahei } 21 | \ctex_punct_map_bfseries:nn { \CJKsfdefault , zhyahei } { zhyaheib } 22 | \setCJKmonofont { simfang.ttf } 23 | \setCJKfamilyfont { zhkai } { simkai.ttf } 24 | \setCJKfamilyfont { zhfs } { simfang.ttf } 25 | \setCJKfamilyfont { zhsong } { simsun.ttc } 26 | \setCJKfamilyfont { zhhei } { simhei.ttf } 27 | \setCJKfamilyfont { zhli } { simli.ttf } 28 | \setCJKfamilyfont { zhyou } { simyou.ttf } 29 | \ctex_punct_map_family:nn { \CJKrmdefault } { zhsong } 30 | \ctex_punct_map_family:nn { \CJKttdefault } { zhfs } 31 | \ctex_punct_map_itshape:nn { \CJKrmdefault } { zhkai } 32 | \ctex_punct_map_bfseries:nn { \CJKrmdefault } { zhhei } 33 | } 34 | { 35 | \ctex_load_zhmap:nnnn { rm } { zhhei } { zhfs } { zhwindowsfonts } 36 | \ctex_punct_set:n { windows } 37 | \ctex_punct_map_family:nn { \CJKrmdefault } { zhsong } 38 | \ctex_punct_map_bfseries:nn { \CJKrmdefault } { zhhei } 39 | \ctex_punct_map_itshape:nn { \CJKrmdefault } { zhkai } 40 | } 41 | { 42 | \tl_set:Nn \CJKrmdefault { rm } 43 | \tl_set:Nn \CJKsfdefault { sf } 44 | \tl_set:Nn \CJKttdefault { tt } 45 | } 46 | } 47 | { 48 | \sys_if_engine_uptex:TF 49 | { 50 | \ctex_set_upfonts:nnnnnn 51 | {simsun.ttc} {simhei.ttf} {simkai.ttf} 52 | {msyh\l__ctex_msyh_suffix_tl} {msyhbd\l__ctex_msyh_suffix_tl} 53 | {simfang.ttf} 54 | \ctex_set_upfamily:nnn { zhsong } { upzhserif } {} 55 | \ctex_set_upfamily:nnn { zhhei } { upzhserifb } {} 56 | \ctex_set_upfamily:nnn { zhfs } { upzhmono} {} 57 | \ctex_set_upfamily:nnn { zhkai } { upzhserifit } {} 58 | \ctex_set_upfamily:nnn { zhyahei } { upzhsans } { upzhsansb } 59 | \ctex_set_upfamily:nnn { zhli } { upschrm } {} 60 | \ctex_set_upmap:nnn { upstsl } { simli.ttf } {} 61 | \ctex_set_upfamily:nnn { zhyou } { upschgt } {} 62 | \ctex_set_upmap:nnn { upstht } { simyou.ttf } {} 63 | } 64 | { 65 | \setCJKmainfont 66 | [ BoldFont = SimHei , ItalicFont = KaiTi ] { SourceHanSerifCN-Regular } 67 | \setCJKsansfont 68 | [ BoldFont = { *~Bold } ] { Microsoft~YaHei } 69 | \setCJKmonofont { FangSong } 70 | \setCJKfamilyfont { zhkai } { KaiTi } 71 | \setCJKfamilyfont { zhfs } { FangSong } 72 | \setCJKfamilyfont { zhsong } { SourceHanSerifCN-Regular } 73 | \setCJKfamilyfont { zhhei } { SimHei } 74 | \setCJKfamilyfont { zhli } { LiSu } 75 | \setCJKfamilyfont { zhyou } { YouYuan } 76 | \setCJKfamilyfont { zhyahei } 77 | [ BoldFont = { *~Bold } ] { Microsoft~YaHei } 78 | } 79 | } 80 | \NewDocumentCommand \songti { } { \CJKfamily { zhsong } } 81 | \NewDocumentCommand \heiti { } { \CJKfamily { zhhei } } 82 | \NewDocumentCommand \fangsong { } { \CJKfamily { zhfs } } 83 | \NewDocumentCommand \kaishu { } { \CJKfamily { zhkai } } 84 | \NewDocumentCommand \lishu { } { \CJKfamily { zhli } } 85 | \NewDocumentCommand \youyuan { } { \CJKfamily { zhyou } } 86 | \NewDocumentCommand \yahei { } { \CJKfamily { zhyahei } } 87 | -------------------------------------------------------------------------------- /figures/bthesistitle.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.10 (http://cairographics.org) 3 | %%CreationDate: Sat Aug 26 23:43:48 2017 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 0 -1 422 55 8 | %%EndComments 9 | %%BeginProlog 10 | save 11 | 50 dict begin 12 | /q { gsave } bind def 13 | /Q { grestore } bind def 14 | /cm { 6 array astore concat } bind def 15 | /w { setlinewidth } bind def 16 | /J { setlinecap } bind def 17 | /j { setlinejoin } bind def 18 | /M { setmiterlimit } bind def 19 | /d { setdash } bind def 20 | /m { moveto } bind def 21 | /l { lineto } bind def 22 | /c { curveto } bind def 23 | /h { closepath } bind def 24 | /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 25 | 0 exch rlineto 0 rlineto closepath } bind def 26 | /S { stroke } bind def 27 | /f { fill } bind def 28 | /f* { eofill } bind def 29 | /n { newpath } bind def 30 | /W { clip } bind def 31 | /W* { eoclip } bind def 32 | /BT { } bind def 33 | /ET { } bind def 34 | /pdfmark where { pop globaldict /?pdfmark /exec load put } 35 | { globaldict begin /?pdfmark /pop load def /pdfmark 36 | /cleartomark load def end } ifelse 37 | /BDC { mark 3 1 roll /BDC pdfmark } bind def 38 | /EMC { mark /EMC pdfmark } bind def 39 | /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def 40 | /Tj { show currentpoint cairo_store_point } bind def 41 | /TJ { 42 | { 43 | dup 44 | type /stringtype eq 45 | { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse 46 | } forall 47 | currentpoint cairo_store_point 48 | } bind def 49 | /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore 50 | cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def 51 | /Tf { pop /cairo_font exch def /cairo_font_matrix where 52 | { pop cairo_selectfont } if } bind def 53 | /Td { matrix translate cairo_font_matrix matrix concatmatrix dup 54 | /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point 55 | /cairo_font where { pop cairo_selectfont } if } bind def 56 | /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def 57 | cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def 58 | /g { setgray } bind def 59 | /rg { setrgbcolor } bind def 60 | /d1 { setcachedevice } bind def 61 | /cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def 62 | /cairo_image { image cairo_flush_ascii85_file } def 63 | /cairo_imagemask { imagemask cairo_flush_ascii85_file } def 64 | %%EndProlog 65 | %%BeginSetup 66 | %%EndSetup 67 | %%Page: 1 1 68 | %%BeginPageSetup 69 | %%PageBoundingBox: 0 -1 422 55 70 | %%EndPageSetup 71 | q 0 -1 422 56 rectclip q 72 | 0 g 73 | 20.781 0.454 m 20.582 0.704 20.312 4.915 20.18 9.95 c 20.047 14.927 19.844 74 | 19.544 19.723 20.208 c 19.512 21.403 19.488 21.415 17.988 21.192 c 17.156 75 | 21.067 14.938 20.813 13.062 20.634 c 8.965 20.235 7.098 19.766 4.219 18.399 76 | c 0.973 16.864 0.621 16.958 0.168 19.442 c -0.25 21.751 0.102 22.798 1.293 77 | 22.798 c 1.676 22.798 2.816 23.032 3.828 23.317 c 5.516 23.79 6.543 24.063 78 | 12.273 25.559 c 13.32 25.833 15.043 26.298 16.105 26.599 c 17.168 26.895 79 | 18.309 27.141 18.641 27.141 c 19.082 27.141 19.242 27.466 19.242 28.388 80 | c 19.242 29.161 19.551 29.989 20.055 30.567 c 20.871 31.505 l 22.859 30.806 81 | l 23.953 30.423 25.258 29.72 25.754 29.243 c 26.66 28.376 l 32.27 28.821 82 | l 35.352 29.067 38.203 29.302 38.602 29.349 c 40.082 29.509 40.516 29.274 83 | 41.535 27.774 c 42.109 26.927 42.68 26.153 42.801 26.056 c 43.188 25.739 84 | 43.527 22.552 43.281 21.571 c 43.098 20.833 42.824 20.626 42.02 20.626 85 | c 41.457 20.626 40.902 20.778 40.789 20.962 c 40.676 21.145 39.551 21.638 86 | 38.293 22.056 c 36.312 22.716 35.297 22.806 30.789 22.72 c 25.574 22.618 87 | l 25.324 20.626 l 25.188 19.532 25.043 14.727 25 9.95 c 24.961 5.177 24.859 88 | 0.981 24.773 0.634 c 24.652 0.138 24.238 0.001 22.879 0.001 c 21.918 0.001 89 | 20.977 0.204 20.781 0.454 c h 90 | 202.465 0.454 m 202.309 0.7 202.234 4.911 202.301 9.809 c 202.375 15.247 91 | 202.246 20.274 201.977 22.72 c 201.535 26.731 l 200.133 26.966 l 198.18 92 | 27.298 196.074 26.872 194.555 25.845 c 193.848 25.364 193.043 24.97 192.766 93 | 24.97 c 192.152 24.97 189.68 29.513 189.68 30.641 c 189.68 31.294 189.945 94 | 31.493 191.039 31.681 c 191.785 31.806 192.965 32.059 193.66 32.239 c 194.359 95 | 32.419 195.309 32.563 195.777 32.567 c 196.242 32.567 197.746 32.907 199.117 96 | 33.325 c 201.609 34.083 l 201.707 41.919 l 201.805 49.759 l 203.684 49.864 97 | l 204.992 49.942 206.055 49.751 207.18 49.239 c 209.047 48.388 209.301 98 | 47.942 208.66 46.665 c 208.371 46.095 208.152 43.868 208.074 40.786 c 207.957 99 | 35.825 l 209.273 35.825 l 209.996 35.825 211.422 36.095 212.445 36.427 100 | c 214.23 37.001 214.328 36.997 214.855 36.337 c 215.16 35.954 215.578 35.196 101 | 215.789 34.649 c 215.996 34.102 216.293 33.653 216.449 33.653 c 216.832 102 | 33.653 217.645 30.641 217.484 29.806 c 217.367 29.192 216.957 29.13 213.016 103 | 29.114 c 210.633 29.102 208.41 28.97 208.082 28.817 c 207.363 28.481 206.992 104 | 22.196 206.918 9.044 c 206.879 2.056 206.781 0.641 206.328 0.352 c 205.535 105 | -0.144 202.801 -0.077 202.465 0.454 c h 106 | 407.906 2.102 m 406.441 2.333 402.094 5.352 402.332 5.974 c 402.445 6.27 107 | 402.707 6.513 402.914 6.513 c 403.426 6.513 410.059 13.184 410.059 13.7 108 | c 410.059 13.927 410.184 14.114 410.332 14.114 c 410.895 14.122 413.797 109 | 19.571 414.762 22.434 c 417.156 29.536 417.203 38.747 414.895 47.946 c 110 | 414.594 49.141 414.215 50.649 414.047 51.294 c 413.758 52.427 413.781 52.462 111 | 414.707 52.259 c 417.59 51.634 417.832 51.333 419.203 46.681 c 422.32 36.099 112 | 422.586 26.45 420.016 17.052 c 419.426 14.895 416.766 9.188 415.988 8.407 113 | c 415.711 8.134 415.488 7.778 415.488 7.618 c 415.488 7.462 414.449 6.247 114 | 413.18 4.919 c 410.883 2.516 409.605 1.833 407.906 2.102 c h 115 | 262.418 2.829 m 260.957 3.532 260.273 4.263 260.258 5.145 c 260.25 5.485 116 | 260.02 6.302 259.746 6.954 c 257.246 12.884 256.172 26.763 257.664 33.872 117 | c 258.633 38.485 259.824 41.72 261.766 45.02 c 263.887 48.626 268.145 52.833 118 | 269.668 52.833 c 270.238 52.833 274.098 50.97 274.633 50.438 c 274.883 119 | 50.188 275.41 49.884 275.809 49.755 c 276.207 49.63 276.531 49.407 276.531 120 | 49.255 c 276.531 49.001 274.07 46.681 273.797 46.681 c 273.5 46.681 270.016 121 | 42.997 270.016 42.684 c 270.016 42.493 269.887 42.341 269.73 42.341 c 269.445 122 | 42.341 266.758 38.907 266.758 38.54 c 266.758 38.434 266.391 37.735 265.934 123 | 36.993 c 264.969 35.411 263.863 32.599 262.914 29.313 c 262.355 27.368 124 | 262.238 25.77 262.254 20.083 c 262.273 13.337 262.504 11.423 263.945 5.97 125 | c 264.887 2.403 264.906 2.169 264.277 2.196 c 263.953 2.204 263.113 2.493 126 | 262.418 2.829 c h 127 | 386.898 2.415 m 378.605 3.438 377.863 3.704 377.195 5.88 c 375.809 10.376 128 | 373.941 12.786 371.555 13.149 c 370.211 13.352 370.016 13.251 367.859 11.231 129 | c 365.59 9.106 365.094 8.774 361.84 7.181 c 360.895 6.716 360.121 6.227 130 | 360.121 6.095 c 360.121 5.661 357.707 4.341 356.914 4.341 c 354.457 4.341 131 | 348.902 8.356 348.902 10.134 c 348.902 10.813 349.148 10.856 353.184 10.856 132 | c 356.52 10.856 358 11.024 359.879 11.614 c 361.207 12.032 362.293 12.52 133 | 362.293 12.7 c 362.293 12.88 362.457 13.028 362.66 13.028 c 363.078 13.028 134 | 366.273 16.266 366.273 16.684 c 366.273 17.184 364.309 18.345 362.422 18.966 135 | c 360.445 19.61 360.137 20.067 360.129 22.356 c 360.121 23.665 360.91 25.829 136 | 361.527 26.212 c 361.746 26.345 362.91 25.876 364.117 25.169 c 365.324 137 | 24.462 366.445 23.884 366.609 23.884 c 366.773 23.884 367.113 23.638 367.359 138 | 23.341 c 367.605 23.044 368.086 22.798 368.426 22.798 c 369.125 22.798 139 | 369.891 25.466 369.891 27.891 c 369.891 29.438 369.422 29.681 367.969 28.872 140 | c 367.48 28.602 365.57 28.431 362.988 28.419 c 359.531 28.411 358.57 28.282 141 | 357.477 27.696 c 356.164 26.985 356.152 26.985 355.625 27.696 c 355.055 142 | 28.458 354.332 31.302 354.332 32.774 c 354.332 33.849 355.266 34.282 358.246 143 | 34.587 c 362.355 35.009 368.797 36.509 370.098 37.349 c 370.312 37.485 144 | 372.266 38.192 374.441 38.919 c 376.617 39.645 378.758 40.47 379.199 40.747 145 | c 380.543 41.595 381.707 41.372 382.68 40.079 c 384.594 37.528 385.734 146 | 33.751 384.637 33.587 c 384.391 33.548 383.02 33.509 381.59 33.493 c 378.305 147 | 33.466 377.375 32.841 375.738 29.532 c 374.648 27.325 373.168 21.665 373.152 148 | 19.653 c 373.148 18.552 378.91 12.809 380.75 12.087 c 381.047 11.97 381.781 149 | 11.649 382.379 11.38 c 382.973 11.106 384.902 10.372 386.668 9.747 c 390.215 150 | 8.489 392.648 7.013 393.762 5.446 c 394.797 3.997 394.684 3.372 393.324 151 | 2.946 c 392.031 2.548 388.324 2.239 386.898 2.415 c h 152 | 152.227 4.099 m 149.426 4.513 149.035 4.825 148.445 7.145 c 148.23 7.993 153 | 147.895 8.684 147.699 8.684 c 147.504 8.684 147.344 8.931 147.344 9.227 154 | c 147.344 9.528 147.098 9.77 146.801 9.77 c 146.5 9.77 146.258 9.931 146.258 155 | 10.126 c 146.258 10.52 143.5 11.942 142.73 11.942 c 142.457 11.942 141.797 156 | 11.481 141.262 10.923 c 138.781 8.333 136.094 6.876 133.781 6.876 c 132.195 157 | 6.876 129.453 7.86 128.688 8.708 c 128.082 9.376 128.082 9.442 128.707 158 | 10.134 c 129.066 10.532 129.656 10.856 130.016 10.856 c 131.078 10.856 135.316 159 | 12.778 137.27 14.145 c 138.605 15.083 l 136.484 17.313 l 135.305 18.552 160 | 134.051 19.54 133.66 19.54 c 132.48 19.54 131.969 20.563 132 22.849 c 132.035 161 | 25.462 132.816 26.563 134.383 26.22 c 134.996 26.087 135.402 26.149 135.402 162 | 26.376 c 135.402 26.993 142.492 29.04 144.098 28.888 c 145.492 28.755 145.5 163 | 28.759 144.836 29.485 c 143.207 31.274 143 32.27 143 38.341 c 143 44.794 164 | 142.957 44.888 140.816 43.102 c 139.562 42.056 l 139.582 38.852 l 139.59 165 | 37.087 139.672 34.782 139.762 33.724 c 139.922 31.813 139.918 31.798 138.098 166 | 30.087 c 135.477 27.626 131.059 26.356 131.059 28.067 c 131.059 28.333 167 | 131.547 29.274 132.145 30.161 c 132.742 31.044 133.23 31.907 133.23 32.079 168 | c 133.234 32.247 133.496 32.876 133.816 33.474 c 134.238 34.263 134.445 169 | 35.942 134.574 39.626 c 134.691 42.876 134.926 44.962 135.227 45.442 c 170 | 135.656 46.13 139.707 47.766 140.977 47.766 c 141.246 47.766 141.938 48.009 171 | 142.508 48.309 c 143.953 49.059 146.387 48.985 148.055 48.134 c 149.832 172 | 47.227 150.133 46.317 149.238 44.587 c 148.355 42.888 147.648 39.95 147.613 173 | 37.852 c 147.582 35.696 148.406 34.516 150.328 33.966 c 152.465 33.356 174 | 152.77 33.04 152.77 31.454 c 152.77 30.411 152.527 29.841 151.801 29.165 175 | c 150.82 28.255 148.48 27.618 147.629 28.028 c 147.371 28.153 147.473 28.044 176 | 147.855 27.786 c 149.988 26.349 150.328 25.423 149.152 24.247 c 148.754 177 | 23.849 148.43 23.282 148.43 22.993 c 148.43 22.477 148.07 21.552 146.543 178 | 18.102 c 145.828 16.485 l 146.91 15.571 l 147.504 15.067 148.383 14.329 179 | 148.863 13.931 c 150.176 12.845 153.766 11.083 156.207 10.329 c 162.23 180 | 8.47 164.34 7.106 163.805 5.415 c 163.562 4.653 163.234 4.54 159.645 3.985 181 | c 156.93 3.567 155.723 3.587 152.227 4.099 c h 182 | 142.797 24.309 m 142.523 25.177 141.594 25.141 139.391 24.181 c 137.582 183 | 23.391 l 141.676 19.454 l 142.344 21.552 l 142.707 22.708 142.914 23.95 184 | 142.797 24.309 c h 185 | 315.25 4.927 m 312.305 6.091 309.629 8.333 309.27 9.942 c 308.648 12.696 186 | 308.348 16.372 308.375 20.774 c 308.395 23.579 308.402 26.149 308.395 26.485 187 | c 308.383 26.927 307.93 26.657 306.797 25.544 c 304.602 23.38 302.277 21.86 188 | 300.727 21.575 c 299.773 21.399 299.355 21.11 299.219 20.528 c 299.113 189 | 20.083 298.762 19.005 298.438 18.13 c 297.465 15.505 297.832 15.165 299.734 190 | 16.923 c 301.922 18.938 302.586 18.934 302.586 16.919 c 302.586 14.095 191 | 300.703 10.075 298.281 7.72 c 297.199 6.669 296.75 6.661 295.832 7.692 c 192 | 294.453 9.227 293.852 12.157 294.121 15.993 c 294.41 20.114 294.184 21.352 193 | 293.145 21.352 c 292.25 21.352 291.098 20.782 290.043 19.825 c 288.664 194 | 18.571 287.23 19.645 286.145 22.735 c 285.496 24.583 286.012 25.618 287.711 195 | 25.884 c 290.102 26.255 293.352 27.255 293.762 27.743 c 293.98 28.009 294.273 196 | 28.227 294.41 28.227 c 294.547 28.227 295.02 28.606 295.457 29.067 c 295.895 197 | 29.532 296.527 30.009 296.859 30.134 c 297.781 30.47 300.223 28.536 300.621 198 | 27.149 c 300.957 25.985 l 302.855 28.532 l 303.902 29.934 304.758 31.239 199 | 304.758 31.434 c 304.758 31.63 305 32.29 305.301 32.903 c 305.598 33.516 200 | 306.086 34.52 306.387 35.13 c 306.684 35.743 306.93 36.528 306.93 36.868 201 | c 306.93 37.212 307.07 37.645 307.242 37.833 c 307.414 38.024 307.973 39.403 202 | 308.48 40.903 c 308.988 42.399 309.562 44.028 309.758 44.52 c 309.953 45.013 203 | 310.395 46.474 310.734 47.766 c 311.078 49.063 311.625 50.813 311.949 51.657 204 | c 312.52 53.153 312.582 53.192 314.184 53.196 c 315.09 53.196 316.027 53.001 205 | 316.266 52.763 c 316.848 52.177 316.793 50.329 316.156 49.216 c 315.512 206 | 48.091 315.449 44.372 316.066 43.724 c 316.312 43.458 316.762 42.774 317.059 207 | 42.196 c 317.359 41.618 318.426 40.282 319.438 39.224 c 320.445 38.165 208 | 321.992 36.438 322.871 35.388 c 325.047 32.786 327.559 30.399 328.117 30.399 209 | c 328.371 30.399 328.633 30.27 328.699 30.11 c 328.766 29.954 329.719 29.364 210 | 330.812 28.798 c 333.949 27.177 336.176 25.614 336.363 24.899 c 336.914 211 | 22.786 335.586 22.224 330.949 22.61 c 325.246 23.087 323.25 23.989 323.223 212 | 26.099 c 323.211 27.255 321.867 30.399 321.387 30.399 c 321.195 30.399 213 | 321.043 30.641 321.043 30.942 c 321.043 31.239 320.879 31.485 320.68 31.485 214 | c 320.48 31.485 320.02 31.77 319.656 32.118 c 319.293 32.466 318.602 33.083 215 | 318.117 33.493 c 317.637 33.903 316.508 35.059 315.613 36.067 c 314.719 216 | 37.075 313.648 38.075 313.234 38.29 c 312.551 38.645 312.383 38.477 311.355 217 | 36.438 c 309.703 33.149 309.098 31.524 309.098 30.349 c 309.098 29.337 218 | 309.145 29.309 310.508 29.528 c 311.625 29.708 312.062 29.606 312.633 29.036 219 | c 313.273 28.395 313.312 28.106 312.992 26.263 c 312.797 25.13 312.723 220 | 24.118 312.828 24.016 c 312.93 23.911 313.723 24.247 314.586 24.755 c 315.449 221 | 25.266 316.488 25.833 316.895 26.013 c 317.301 26.192 317.852 26.602 318.113 222 | 26.923 c 318.875 27.841 319.586 27.606 320.156 26.247 c 321.023 24.165 223 | 320.57 21.712 319.312 21.712 c 319.102 21.712 318.875 21.591 318.809 21.442 224 | c 318.648 21.079 315.371 18.458 315.082 18.458 c 314.953 18.458 314.355 225 | 17.997 313.754 17.431 c 312.664 16.415 312.66 16.395 313.051 14.278 c 313.27 226 | 13.102 313.68 11.915 313.961 11.63 c 314.789 10.802 317.961 10.665 319.562 227 | 11.388 c 321.227 12.138 321.766 13.536 321.766 17.122 c 321.766 18.431 228 | 321.93 19.602 322.129 19.724 c 322.82 20.153 323.934 19.493 324.164 18.524 229 | c 324.293 17.989 324.52 17.388 324.672 17.188 c 325.281 16.384 326.793 230 | 9.849 326.809 7.962 c 326.824 6.044 326.402 5.669 323.867 5.376 c 319.918 231 | 4.919 315.816 4.704 315.25 4.927 c h 232 | 121.473 6.602 m 120.414 9.708 120.145 12.118 120.258 17.368 c 120.383 22.977 233 | l 118.77 22.856 l 117.723 22.774 116.785 22.423 116.117 21.86 c 115.547 234 | 21.38 114.852 20.989 114.574 20.989 c 113.812 20.989 112.613 23.634 112.512 235 | 25.524 c 112.426 27.153 112.453 27.2 113.789 27.669 c 114.539 27.931 115.84 236 | 28.251 116.684 28.376 c 119.211 28.759 122.801 30.251 124.078 31.454 c 237 | 125.223 32.532 126.121 32.388 127.402 30.927 c 128.809 29.325 128.879 27.759 238 | 127.621 26.056 c 127.125 25.38 126.715 24.556 126.715 24.22 c 126.715 23.888 239 | 126.496 22.981 126.227 22.212 c 125.562 20.298 125.199 17.368 125.625 17.368 240 | c 125.812 17.368 126.469 17.86 127.078 18.454 c 128.398 19.743 129.973 241 | 19.934 129.973 18.806 c 129.973 18.403 129.73 17.485 129.43 16.77 c 129.133 242 | 16.056 128.887 15.208 128.887 14.884 c 128.883 14.559 128.641 13.829 128.344 243 | 13.259 c 128.043 12.688 127.801 12.063 127.801 11.872 c 127.801 11.454 244 | 124.668 7.247 123.875 6.602 c 123.57 6.356 122.941 6.153 122.473 6.153 c 245 | 122.008 6.153 121.559 6.356 121.473 6.602 c h 246 | 181.875 7.872 m 180.062 12.13 179.805 13.708 180.109 18.638 c 180.562 25.884 247 | 180.512 26.438 179.473 25.903 c 178.559 25.434 177.449 24.755 176.965 24.364 248 | c 175.574 23.251 174.926 23.434 173.891 25.224 c 173.34 26.177 172.785 249 | 27.04 172.66 27.141 c 172.535 27.239 172.246 27.856 172.023 28.513 c 171.676 250 | 29.528 171.715 29.798 172.289 30.372 c 172.656 30.743 173.668 31.153 174.535 251 | 31.282 c 176.316 31.552 179.082 32.575 183.066 34.442 c 183.906 34.833 252 | 184.887 35.063 185.242 34.95 c 185.996 34.712 188.086 31.653 188.43 30.282 253 | c 188.625 29.513 188.434 29.122 187.406 28.149 c 186.711 27.497 185.949 254 | 26.583 185.719 26.126 c 185.199 25.11 184.73 16.278 185.195 16.298 c 185.91 255 | 16.325 187.492 18.048 189.113 20.559 c 190.293 22.388 191.008 23.165 191.426 256 | 23.079 c 192.348 22.888 192.082 19.411 190.965 16.966 c 190.09 15.056 188.59 257 | 12.298 188.234 11.942 c 187.844 11.552 186.426 9.427 186.426 9.231 c 186.426 258 | 9.118 185.91 8.462 185.281 7.77 c 183.727 6.063 182.633 6.095 181.875 7.872 259 | c h 260 | 57.926 8.548 m 57.348 9.239 56.527 11.497 56.52 12.403 c 56.512 13.173 261 | 57.469 13.575 60.133 13.915 c 62.109 14.169 63.715 14.563 68.691 16.024 262 | c 72.648 17.184 72.555 17.036 72.473 22.192 c 72.441 24.384 72.375 24.599 263 | 71.895 24.118 c 71.594 23.817 71.352 23.489 71.352 23.384 c 71.352 23.024 264 | 67.984 19.54 67.637 19.54 c 66.953 19.54 63.852 22.997 63.441 24.216 c 265 | 63.102 25.216 63.125 25.606 63.551 26.259 c 64.004 26.95 64.391 27.063 66.266 266 | 27.044 c 67.816 27.028 68.645 27.196 69.113 27.626 c 69.48 27.954 69.945 267 | 28.227 70.145 28.227 c 70.348 28.227 70.789 28.528 71.125 28.899 c 71.664 268 | 29.493 71.707 30.165 71.488 34.52 c 71.184 40.575 71.41 41.255 73.719 41.255 269 | c 75.59 41.255 78.469 40.032 78.758 39.114 c 78.875 38.739 78.723 37.802 270 | 78.41 37.028 c 77.949 35.876 77.867 34.169 77.945 27.493 c 78.043 19.36 271 | l 78.926 19.458 l 79.414 19.513 79.855 19.602 79.91 19.657 c 80.43 20.177 272 | 81.168 25.462 81.637 32.024 c 82.121 38.794 82.473 41.677 83.508 47.29 273 | c 83.766 48.669 84.703 49.302 86.113 49.036 c 88.926 48.509 89.969 47.001 274 | 88.707 45.29 c 88.18 44.583 87.824 43.364 87.617 41.571 c 87.449 40.102 275 | 87.145 37.763 86.938 36.368 c 86.73 34.974 86.566 32.778 86.566 31.481 276 | c 86.57 29.13 l 87.5 30.216 l 89.414 32.446 89.805 32.942 89.805 33.114 277 | c 89.805 33.212 90.051 33.579 90.352 33.927 c 90.652 34.274 91.355 35.114 278 | 91.918 35.79 c 93.238 37.384 94.32 37.161 96.156 34.923 c 97.621 33.134 279 | 97.68 31.735 96.301 31.298 c 95.895 31.165 93.906 29.446 91.887 27.47 c 280 | 89.871 25.493 87.613 23.595 86.875 23.247 c 85.812 22.751 85.5 22.38 85.395 281 | 21.481 c 85.316 20.856 85.316 20.165 85.391 19.942 c 85.551 19.462 93.125 282 | 19.423 95.594 19.891 c 96.492 20.063 97.84 20.321 98.59 20.462 c 99.645 283 | 20.665 100.113 20.579 100.66 20.087 c 102.062 18.817 103.727 14.122 103.496 284 | 12.095 c 103.383 11.095 103.289 11.04 101.746 11.079 c 100.852 11.102 98.902 285 | 11.548 97.418 12.075 c 94.828 12.989 94.406 13.028 87.285 13.016 c 82.078 286 | 13.005 79.203 12.845 77.684 12.477 c 76.488 12.188 74.68 11.95 73.668 11.946 287 | c 70.68 11.938 63.766 10.274 60.375 8.747 c 58.289 7.809 58.52 7.829 57.926 288 | 8.548 c h 289 | 11.016 28.677 m 10.027 30.2 10.016 30.266 10.125 35.462 c 10.184 38.349 290 | 10.039 42.02 9.805 43.622 c 9.43 46.177 9.449 46.677 9.977 47.692 c 10.434 291 | 48.583 10.805 48.845 11.559 48.825 c 13.102 48.782 15.043 47.958 15.441 292 | 47.177 c 15.754 46.567 15.988 46.513 17.168 46.794 c 18.238 47.048 18.73 293 | 46.985 19.465 46.505 c 20.871 45.583 20.414 44.153 17.934 41.712 c 16.324 294 | 40.126 15.863 39.415 15.711 38.278 c 15.52 36.849 l 16.566 37.825 l 18.434 295 | 39.563 20.707 40.962 21.301 40.735 c 21.746 40.563 21.824 40.177 21.656 296 | 38.95 c 21.469 37.587 20.539 35.29 19.953 34.739 c 19.844 34.641 19.398 297 | 34.091 18.957 33.516 c 16.648 30.509 13.129 27.149 12.281 27.141 c 12.133 298 | 27.141 11.562 27.833 11.016 28.677 c h 299 | 25.684 31.841 m 24.75 32.653 23.625 34.032 23.191 34.907 c 22.434 36.415 300 | 22.41 36.766 22.676 41.681 c 22.832 44.532 22.977 48.329 23 50.118 c 23.023 301 | 51.911 23.172 53.579 23.332 53.829 c 23.781 54.52 25.348 54.368 26.758 302 | 53.497 c 28.023 52.712 l 27.809 49.903 l 27.59 47.091 l 28.754 47.481 l 303 | 29.395 47.692 30.172 48.091 30.488 48.36 c 31.309 49.067 32.543 48.966 32.98 304 | 48.153 c 33.574 47.04 33.41 44.423 32.695 43.606 c 31.887 42.681 29.879 305 | 41.255 29.387 41.255 c 29.18 41.255 29.012 41.11 29.012 40.934 c 29.012 306 | 40.759 28.523 40.415 27.926 40.169 c 26.965 39.77 26.84 39.544 26.844 38.224 307 | c 26.852 36.138 27.227 35.72 29.117 35.681 c 31.188 35.634 31.945 36.306 308 | 32.762 38.895 c 33.109 39.993 33.586 40.888 33.824 40.88 c 35.031 40.849 309 | 36.609 38.337 36.609 36.45 c 36.609 35.759 36.859 34.489 37.164 33.63 c 310 | 37.688 32.141 37.676 32.028 36.973 31.321 c 36.32 30.665 35.703 30.567 311 | 31.809 30.474 c 27.383 30.368 l h 312 | 296.914 34.356 m 294.777 35.325 294.484 36.071 294.785 39.774 c 295.031 313 | 42.79 295.594 44.161 296.578 44.141 c 296.945 44.134 298.684 41.708 300.68 314 | 38.423 c 301.555 36.985 301.719 35.466 301.125 34.352 c 300.637 33.446 315 | 298.918 33.446 296.914 34.356 c h 316 | 124.816 38.591 m 122.375 39.829 l 122.375 42.13 l 122.375 45.54 123.875 317 | 48.489 125.613 48.489 c 126.07 48.489 126.535 48.13 126.781 47.587 c 127.008 318 | 47.087 127.332 46.681 127.496 46.681 c 127.664 46.681 127.801 46.438 127.801 319 | 46.138 c 127.801 45.841 127.934 45.595 128.098 45.595 c 128.418 45.595 320 | 129.484 43.595 130.191 41.673 c 130.938 39.638 129.73 37.259 127.984 37.321 321 | c 127.586 37.337 126.16 37.907 124.816 38.591 c h 322 | 185.168 39.817 m 183 40.587 182.699 41.337 183.145 44.864 c 183.723 49.47 323 | 185.5 51.028 186.973 48.22 c 187.363 47.474 187.773 46.782 187.879 46.681 324 | c 189.934 44.794 191.742 41.169 191.312 39.813 c 191.113 39.184 190.789 325 | 39.091 189.023 39.13 c 187.895 39.157 186.16 39.466 185.168 39.817 c h 326 | 368.988 42.251 m 365.379 44.106 364.602 48.188 367.129 52.016 c 367.988 327 | 53.321 369.418 53.618 369.754 52.563 c 370.152 51.298 371.145 49.028 371.375 328 | 48.852 c 371.504 48.755 371.977 47.817 372.426 46.77 c 374.074 42.923 372.277 329 | 40.559 368.988 42.251 c h 330 | 368.988 42.251 m f 331 | Q Q 332 | showpage 333 | %%Trailer 334 | end restore 335 | %%EOF 336 | -------------------------------------------------------------------------------- /figures/golfer.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-2.0 EPSF-1.2 2 | %%Creator:Adobe Illustrator(TM) 1.0b2- 3 | %%Title:golfer art+ 4 | %%CreationDate:1/6/87 9:32 AM 5 | %%DocumentFonts:Helvetica-Bold 6 | %%BoundingBox: 13 37 571 720 7 | %%TemplateBox:0 -48 576 672 8 | %%EndComments 9 | 100 dict begin 10 | /q{bind def}bind def 11 | /Q{load def}q 12 | /x{exch def}q 13 | /X/def Q 14 | /g{/_g x/p{_g setgray}X}q 15 | /G{/_G x/P{_G setgray}X}q 16 | /k{/_b x/_g x/_r x/p{_r _g _b setrgbcolor}X}q 17 | /K{/_B x/_G x/_R x/P{_R _G _B setrgbcolor}X}q 18 | /d/setdash Q 19 | /i/setflat Q 20 | /j/setlinejoin Q 21 | /J/setlinecap Q 22 | /M/setmiterlimit Q 23 | /w/setlinewidth Q 24 | /_C{.25 sub round .25 add}q 25 | /_c{transform _C exch _C exch itransform}q 26 | /c{_c curveto}q 27 | /C/c Q 28 | /v{currentpoint 6 2 roll _c curveto}q 29 | /V/v Q 30 | /y{_c 2 copy curveto}q 31 | /Y/y Q 32 | /l{_c lineto}q 33 | /L/l Q 34 | /m{_c moveto}q 35 | /_e[]X 36 | /_E{_e length 0 ne{gsave 1 g 0 G 1 i 0 J 0 j .5 w 10 M[]0 d 37 | /Helvetica-Bold 24 0 0 1 z 38 | [0.966 0.259 -0.259 0.966 39 | _e 0 get _e 2 get add 2 div _e 1 get _e 3 get add 2 div]a 40 | (ERROR: can't fill a path)t T grestore}if}q 41 | /n/newpath Q 42 | /N/newpath Q 43 | /F{p{fill}stopped{/_e[pathbbox]X n _E}if}q 44 | /f{closepath F}q 45 | /S{P stroke}q 46 | /s{closepath S}q 47 | /B{gsave F grestore S}q 48 | /b{closepath B}q 49 | /u{}q 50 | /U{}q 51 | /_s/ashow Q 52 | /_S{(?)exch{2 copy 0 exch put pop dup true charpath currentpoint _m setmatrix 53 | stroke _M setmatrix moveto 3 copy pop rmoveto}forall pop pop pop n}q 54 | /_A{_a moveto _t exch 0 exch}q 55 | /_L{0 _l neg translate _M currentmatrix pop}q 56 | /_w{dup stringwidth exch 3 -1 roll length 1 sub _t mul add exch}q 57 | /_z[{0 0}bind{dup _w exch neg 2 div exch neg 2 div}bind 58 | {dup _w exch neg exch neg}bind]X 59 | /z{_z exch get/_a x/_t x/_l x exch findfont exch scalefont setfont}q 60 | /_d{matrix currentmatrix X}q 61 | /_D{/_m _d gsave concat/_M _d}q 62 | /e{_D p/t{_A _s _L}X}q 63 | /r{_D P/t{_A _S _L}X}q 64 | /a{_D/t{dup p _A _s P _A _S _L}X}q 65 | /o{_D/t{pop _L}X}q 66 | /T{grestore}q 67 | /Z{findfont begin currentdict dup length dict begin 68 | {1 index/FID ne{X}{pop pop}ifelse}forall/FontName exch X dup length 0 ne 69 | {/Encoding Encoding 256 array copy X 0 exch{dup type/nametype eq 70 | {Encoding 2 index 2 index put pop 1 add}{exch pop}ifelse}forall}if pop 71 | currentdict dup end end/FontName get exch definefont pop}q 72 | n 73 | %%EndProlog 74 | u 75 | 0.9 g 76 | 0 G 77 | 1 i 78 | 0 J 79 | 0 j 80 | 1 w 81 | 10 M 82 | []0 d 83 | %%Note: 84 | 15.815 40.248 m 85 | 567.815 40.002 L 86 | 567.748 716.565 L 87 | 15.998 716.81 L 88 | 15.815 40.248 L 89 | b 90 | U 91 | 1 g 92 | 285.313 40 m 93 | 567.688 40.125 L 94 | 567.812 78.375 L 95 | 285.312 78.25 L 96 | 285.313 40 L 97 | b 98 | 0 g 99 | 175.5 163 m 100 | 180.007 163 173.738 169.081 171.75 168.75 c 101 | 174.75 169.25 176.25 169.5 174.5 171.25 C 102 | 178 171.25 176.349 173.783 175 176.75 c 103 | 173.75 179.5 170.75 182.25 168.25 182 C 104 | 165.5 181.25 167.622 182.838 165.25 186 c 105 | 164.5 187 164.75 187.5 161.75 186.75 c 106 | 158.75 186 163.25 190 156.75 190 c 107 | 150.25 190 148.5 189 145.5 186 c 108 | 142.5 183 139.75 183.75 139.5 182.5 c 109 | 139.25 181.25 139.5 176.75 138.75 175.5 c 110 | 138 174.25 136.75 174.25 136.25 178 c 111 | 135.75 181.75 140.25 182.25 134 187 C 112 | 135.75 190.75 134.5 191.75 131 193.5 C 113 | 131 200 129.202 203.364 119.5 208.5 c 114 | 115.25 210.75 107 212.75 104.75 208.75 c 115 | 102.5 204.75 103 206.5 96.5 205.75 c 116 | 90 205 87.25 202.5 86.5 197.75 c 117 | 85.75 193 82.75 195 79 194.75 c 118 | 75.25 194.5 77 192.75 77.25 191.75 c 119 | 77.5 190.75 75.25 192.5 71.5 192 c 120 | 67.75 191.5 64.25 185.5 69.5 180.75 c 121 | 74.75 176 66.5 180.75 64.25 182.25 c 122 | 62 183.75 60.5 181.75 61 180.25 c 123 | 61.5 178.75 58.75 180.75 57.5 180.75 c 124 | 56.25 180.75 51.008 180.188 52 172.25 c 125 | 52.25 170.25 51.5 170.5 49.75 169.25 c 126 | 48 168 45.75 164.25 48.5 158.75 c 127 | 51.25 153.25 49 150 48 145.5 c 128 | 47 141 48 138.25 51.25 137.25 c 129 | 54.5 136.25 54 133.791 54 130.75 C 130 | 57 130.5 59 129.25 58.75 124.5 C 131 | 62.25 124.5 61.75 126.75 62.5 130 c 132 | 63.25 133.25 65.75 129 66.25 127 c 133 | 66.75 125 67.5 125 72 125 C 134 | 74.75 116.25 74.75 120.5 75.25 117.25 C 135 | 80 117.5 79.5 116.75 83.25 113.75 c 136 | 87 110.75 88.25 115.5 92 118.5 c 137 | 95.75 121.5 94.25 122.75 96.25 118.75 c 138 | 98.25 114.75 98.5 119 101.5 119.25 c 139 | 104.5 119.5 101 115.75 105.25 114.5 c 140 | 109.5 113.25 105 113.75 103.5 111.25 c 141 | 102 108.75 95 103.5 101.75 101.5 c 142 | 108.5 99.5 103.5 99.75 94.75 99.5 c 143 | 86 99.25 73.75 87.5 97.25 73.25 C 144 | 117.25 53.25 117.25 53.5 v 145 | 117.25 53.75 175.25 163 175.5 163 c 146 | f 147 | 1 J 148 | 0.2 w 149 | 389.709 210.076 m 150 | 511.826 210.076 l 151 | S 152 | 394.709 212.461 m 153 | 516.826 212.461 l 154 | S 155 | 415.459 215.112 m 156 | 537.576 215.112 l 157 | S 158 | 399.709 217.762 m 159 | 521.826 217.762 l 160 | S 161 | 402.459 222.799 m 162 | 524.576 222.799 l 163 | S 164 | 402.709 225.45 m 165 | 524.826 225.45 l 166 | S 167 | 392.959 227.851 m 168 | 515.076 227.851 l 169 | S 170 | 400.691 232.856 m 171 | 522.809 232.856 l 172 | S 173 | 388.191 235.241 m 174 | 510.309 235.241 l 175 | S 176 | 393.941 237.892 m 177 | 516.059 237.892 l 178 | S 179 | 393.441 240.292 m 180 | 515.559 240.292 l 181 | S 182 | 396.191 242.928 m 183 | 518.309 242.928 l 184 | S 185 | 386.441 245.579 m 186 | 508.559 245.579 l 187 | S 188 | 393.191 248.23 m 189 | 515.309 248.23 l 190 | S 191 | 414.191 250.631 m 192 | 536.309 250.631 l 193 | S 194 | 397.95 252.973 m 195 | 520.067 252.973 l 196 | S 197 | 398.7 255.358 m 198 | 520.817 255.358 l 199 | S 200 | 400.7 258.009 m 201 | 522.817 258.009 l 202 | S 203 | 384.45 260.659 m 204 | 506.567 260.659 l 205 | S 206 | 380.7 265.696 m 207 | 502.817 265.696 l 208 | S 209 | 379.95 268.347 m 210 | 502.067 268.347 l 211 | S 212 | 386.7 270.748 m 213 | 508.817 270.748 l 214 | S 215 | 394.433 275.752 m 216 | 516.55 275.752 l 217 | S 218 | 381.933 278.138 m 219 | 504.05 278.138 l 220 | S 221 | 379.433 280.789 m 222 | 501.55 280.789 l 223 | S 224 | 383.183 283.189 m 225 | 505.3 283.189 l 226 | S 227 | 370.433 285.825 m 228 | 492.55 285.825 l 229 | S 230 | 382.433 288.476 m 231 | 504.55 288.476 l 232 | S 233 | 356.183 291.127 m 234 | 478.3 291.127 l 235 | S 236 | 372.433 293.277 m 237 | 494.55 293.277 l 238 | S 239 | 361.866 296.006 m 240 | 483.984 296.006 l 241 | S 242 | 365.616 298.406 m 243 | 487.734 298.406 l 244 | S 245 | 366.866 301.042 m 246 | 488.984 301.042 l 247 | S 248 | 346.866 303.693 m 249 | 468.984 303.693 l 250 | S 251 | 338.616 306.344 m 252 | 460.734 306.344 l 253 | S 254 | 330.866 308.494 m 255 | 452.984 308.494 l 256 | S 257 | 301.575 344.342 m 258 | 423.692 344.342 l 259 | S 260 | 314.075 346.728 m 261 | 436.192 346.728 l 262 | S 263 | 318.325 349.378 m 264 | 440.442 349.378 l 265 | S 266 | 312.075 352.029 m 267 | 434.192 352.029 l 268 | S 269 | 327.325 357.065 m 270 | 449.442 357.065 l 271 | S 272 | 327.575 359.716 m 273 | 449.692 359.716 l 274 | S 275 | 317.825 362.117 m 276 | 439.942 362.117 l 277 | S 278 | 335.558 367.122 m 279 | 457.675 367.122 l 280 | S 281 | 313.058 369.507 m 282 | 435.175 369.507 l 283 | S 284 | 318.808 372.158 m 285 | 440.925 372.158 l 286 | S 287 | 317.579 404.674 m 288 | 439.696 404.674 l 289 | S 290 | 322.312 409.179 m 291 | 444.429 409.179 l 292 | S 293 | 323.812 412.065 m 294 | 445.929 412.065 l 295 | S 296 | 329.562 414.715 m 297 | 451.679 414.715 l 298 | S 299 | 329.062 417.116 m 300 | 451.179 417.116 l 301 | S 302 | 331.812 419.752 m 303 | 453.929 419.752 l 304 | S 305 | 322.062 422.402 m 306 | 444.179 422.402 l 307 | S 308 | 328.812 425.053 m 309 | 450.929 425.053 l 310 | S 311 | 349.812 427.454 m 312 | 471.929 427.454 l 313 | S 314 | 333.571 429.796 m 315 | 455.688 429.796 l 316 | S 317 | 334.321 432.182 m 318 | 456.438 432.182 l 319 | S 320 | 336.321 434.832 m 321 | 458.438 434.832 l 322 | S 323 | 320.071 437.483 m 324 | 442.188 437.483 l 325 | S 326 | 316.321 442.519 m 327 | 438.438 442.519 l 328 | S 329 | 315.571 445.17 m 330 | 437.688 445.17 l 331 | S 332 | 322.321 447.571 m 333 | 444.438 447.571 l 334 | S 335 | 330.054 452.576 m 336 | 452.171 452.576 l 337 | S 338 | 317.554 454.961 m 339 | 439.671 454.961 l 340 | S 341 | 315.054 457.612 m 342 | 437.171 457.612 l 343 | S 344 | 318.804 460.012 m 345 | 440.921 460.012 l 346 | S 347 | 306.054 462.648 m 348 | 428.171 462.648 l 349 | S 350 | 300.054 465.299 m 351 | 422.171 465.299 l 352 | S 353 | 291.804 467.95 m 354 | 413.921 467.95 l 355 | S 356 | 308.054 470.101 m 357 | 430.171 470.101 l 358 | S 359 | 260.834 543.511 m 360 | 382.951 543.511 l 361 | S 362 | 246.066 548.016 m 363 | 368.184 548.016 l 364 | S 365 | 256.066 550.901 m 366 | 378.184 550.901 l 367 | S 368 | 253.566 553.552 m 369 | 375.684 553.552 l 370 | S 371 | 230.316 555.952 m 372 | 352.434 555.952 l 373 | S 374 | 244.566 558.588 m 375 | 366.684 558.588 l 376 | S 377 | 238.566 561.239 m 378 | 360.684 561.239 l 379 | S 380 | 230.316 563.89 m 381 | 352.434 563.89 l 382 | S 383 | 216.566 565.541 m 384 | 338.684 565.541 l 385 | S 386 | 104.443 572.01 m 387 | 226.575 572.209 l 388 | S 389 | 98.682 567.48 m 390 | 220.814 567.68 l 391 | S 392 | 91.688 565.11 m 393 | 213.82 565.31 l 394 | S 395 | 97.192 561.955 m 396 | 219.324 562.155 l 397 | S 398 | 73.943 559.517 m 399 | 196.075 559.717 l 400 | S 401 | 88.199 556.904 m 402 | 210.331 557.103 l 403 | S 404 | 82.203 554.243 m 405 | 204.335 554.443 l 406 | S 407 | 73.956 551.578 m 408 | 196.088 551.778 l 409 | S 410 | 73.707 549.405 m 411 | 195.839 549.605 l 412 | S 413 | 85.302 539.953 m 414 | 207.434 540.152 l 415 | S 416 | 79.541 535.423 m 417 | 201.673 535.623 l 418 | S 419 | 72.547 533.053 m 420 | 194.679 533.253 l 421 | S 422 | 78.051 529.898 m 423 | 200.183 530.098 l 424 | S 425 | 54.802 527.46 m 426 | 176.934 527.66 l 427 | S 428 | 69.058 524.847 m 429 | 191.19 525.046 l 430 | S 431 | 63.061 522.186 m 432 | 185.194 522.385 l 433 | S 434 | 54.815 519.521 m 435 | 176.947 519.721 l 436 | S 437 | 54.566 517.348 m 438 | 176.698 517.547 l 439 | S 440 | u 441 | 189.475 196.879 m 442 | 311.592 196.879 l 443 | S 444 | 176.975 199.265 m 445 | 299.092 199.265 l 446 | S 447 | 174.475 201.916 m 448 | 296.592 201.916 l 449 | S 450 | 178.225 204.316 m 451 | 300.342 204.316 l 452 | S 453 | 165.475 206.952 m 454 | 287.592 206.952 l 455 | S 456 | 177.475 209.603 m 457 | 299.592 209.603 l 458 | S 459 | 155.725 212.254 m 460 | 277.842 212.254 l 461 | S 462 | 167.475 214.404 m 463 | 289.592 214.404 l 464 | S 465 | 156.908 217.133 m 466 | 279.026 217.133 l 467 | S 468 | 144.658 219.533 m 469 | 266.776 219.533 l 470 | S 471 | 161.908 222.169 m 472 | 284.026 222.169 l 473 | S 474 | 153.908 224.82 m 475 | 276.026 224.82 l 476 | S 477 | 163.658 226.971 m 478 | 285.776 226.971 l 479 | S 480 | 152.408 229.121 m 481 | 274.526 229.121 l 482 | S 483 | 145.925 233.316 m 484 | 268.042 233.316 l 485 | S 486 | 157.675 235.466 m 487 | 279.792 235.466 l 488 | S 489 | 147.108 238.195 m 490 | 269.226 238.195 l 491 | S 492 | 134.858 240.595 m 493 | 256.976 240.595 l 494 | S 495 | 137.608 243.231 m 496 | 259.726 243.231 l 497 | S 498 | 144.108 245.882 m 499 | 266.226 245.882 l 500 | S 501 | 153.858 248.033 m 502 | 275.976 248.033 l 503 | S 504 | 155.108 231.183 m 505 | 277.226 231.183 l 506 | S 507 | 103.425 247.816 m 508 | 225.542 247.816 l 509 | S 510 | 100.175 249.966 m 511 | 222.292 249.966 l 512 | S 513 | 89.608 252.695 m 514 | 211.726 252.695 l 515 | S 516 | 77.358 255.095 m 517 | 199.476 255.095 l 518 | S 519 | U 520 | u 521 | 1 g 522 | 0 J 523 | 1 w 524 | 120.001 389.999 m 525 | 170.811 344.713 248.714 349.191 294.001 400.001 c 526 | 339.287 450.811 334.809 528.714 283.999 574.001 c 527 | 233.189 619.287 155.286 614.809 109.999 563.999 c 528 | 64.713 513.189 69.191 435.286 120.001 389.999 c 529 | f 530 | 202 482 m 531 | F 532 | U 533 | u 534 | 258 302 m 535 | 306.6 267.759 373.759 279.4 408 328 c 536 | 442.241 376.6 430.6 443.759 382 478 c 537 | 333.4 512.241 266.241 500.6 232 452 c 538 | 197.759 403.4 209.4 336.241 258 302 c 539 | f 540 | 320 390 m 541 | F 542 | U 543 | u 544 | 196 376 m 545 | 252.332 345.072 323.072 365.668 354 422 c 546 | 384.928 478.332 364.332 549.072 308 580 c 547 | 251.668 610.928 180.928 590.332 150 534 c 548 | 119.072 477.668 139.668 406.928 196 376 c 549 | f 550 | 252 478 m 551 | F 552 | U 553 | u 554 | 106 257 m 555 | 170.064 231.595 242.595 262.936 268 327 c 556 | 293.405 391.064 262.064 463.595 198 489 c 557 | 133.936 514.405 61.405 483.064 36 419 c 558 | 10.595 354.936 41.936 282.405 106 257 c 559 | f 560 | 152 373 m 561 | F 562 | U 563 | u 564 | 366.001 122 m 565 | 415.706 97.7 475.7 118.296 500 168.001 c 566 | 524.3 217.706 503.704 277.7 453.999 302 c 567 | 404.294 326.3 344.3 305.704 320 255.999 c 568 | 295.7 206.294 316.296 146.3 366.001 122 c 569 | f 570 | 410 212 m 571 | F 572 | U 573 | u 574 | 227.999 198 m 575 | 267.763 185.85 309.849 208.236 322 247.999 c 576 | 334.15 287.763 311.764 329.849 272.001 342 c 577 | 232.237 354.15 190.151 331.764 178 292.001 c 578 | 165.85 252.237 188.236 210.151 227.999 198 c 579 | f 580 | 250 270 m 581 | F 582 | U 583 | 0 g 584 | 15.75 71.25 m 585 | 24.25 82.75 24.75 84.75 27.75 82.25 c 586 | 30.75 79.75 31.75 81.25 32.75 82.75 c 587 | 33.75 84.25 30.75 86.75 35.75 88.75 c 588 | 40.75 90.75 41.25 91.75 43.25 89.75 c 589 | 45.25 87.75 39.25 89.25 50.25 88.75 c 590 | 61.25 88.25 70.25 81.75 74.25 75.25 c 591 | 78.25 68.75 77.75 67.25 75.25 63.25 c 592 | 72.75 59.25 68.25 56.75 72.25 57.25 c 593 | 76.25 57.75 75.75 60.75 77.75 56.75 c 594 | 79.75 52.75 80.25 51.25 79.25 49.25 c 595 | 78.25 47.25 74.25 46.75 81.25 46.25 c 596 | 88.25 45.75 91.75 37.557 91.75 40.25 c 597 | 15.752 40.248 l 598 | 15.75 71.25 l 599 | f 600 | 340.75 55.5 m 601 | F 602 | u 603 | u 604 | 3 w 605 | 280.774 44.223 m 606 | 567.893 44.223 l 607 | S 608 | 280.774 48.728 m 609 | 567.893 48.728 l 610 | S 611 | 280.774 53.734 m 612 | 567.893 53.734 l 613 | S 614 | U 615 | u 616 | 280.774 58.739 m 617 | 567.893 58.739 l 618 | S 619 | 280.774 63.245 m 620 | 567.893 63.245 l 621 | S 622 | 280.774 68.251 m 623 | 567.893 68.251 l 624 | S 625 | U 626 | u 627 | 280.774 73.257 m 628 | 567.893 73.257 l 629 | S 630 | 280.774 78.263 m 631 | 567.893 78.263 l 632 | S 633 | U 634 | U 635 | 0.8 g 636 | 0.2 w 637 | 243 252 m 638 | 323 235 l 639 | 346 273 l 640 | 368 248 l 641 | 376 247 376 248 V 642 | 377 174 380.5 121 330.5 40 C 643 | 90.5 40 91.5 40 V 644 | 138.5 129 163 162 214 200 C 645 | 236 229 234.527 240.11 238 254 c 646 | 240 262 243 252 y 647 | b 648 | 0.5 g 649 | 359.5 485 m 650 | 389.267 485 402.5 486.25 415.75 489 c 651 | 429 491.75 435 493.25 439 493.5 c 652 | 443 493.75 490.398 537.797 502.5 562 c 653 | 507 571 514.5 577 517.5 579.5 c 654 | 520.5 582 501.5 591 y 655 | 428 512 428 512.5 v 656 | 428 513 356.5 510 356 509.5 c 657 | 355.5 509 351 488 y 658 | 359 485 359.5 485 v 659 | b 660 | 0.7 g 661 | 370 496.5 m 662 | 368 480.5 365.5 472.5 364.5 471.5 C 663 | 329.5 476.5 l 664 | 323.5 489.5 l 665 | 370 496.5 l 666 | b 667 | 0.5 g 668 | 352.75 494 m 669 | 380 493.25 399.626 496.75 407.5 499 c 670 | 418 502 424.586 497.135 432.75 505.5 c 671 | 453 526.25 473.5 544.5 496.5 586.5 C 672 | 473.5 590 473.5 590.5 V 673 | 456 571.5 443 563.5 434 558 c 674 | 425 552.5 416 544 408.5 534.5 C 675 | 399 533 379.5 537.5 364 537.5 c 676 | 348.5 537.5 352.75 494 y 677 | b 678 | 1 g 679 | 500 583 m 680 | 500.5 577.098 517 573.5 520.5 572 c 681 | 524 570.5 526.353 568.989 526.5 579 c 682 | 526.675 590.992 541 586 539 624 C 683 | 538.5 624 506 628 y 684 | 499.958 583.498 500 583 v 685 | b 686 | 0 g 687 | 1 J 688 | 3 w 689 | 562 629 m 690 | 343 645 217 644 77 601 C 691 | 52 576 L 692 | 59.5 562 80.132 560.877 87 589 c 693 | 89.513 599.292 87 597 101 601 c 694 | 108.323 603.092 265 654 561 617 C 695 | 562 629 l 696 | f 697 | 1 G 698 | 0 J 699 | 0.7 w 700 | 305 634 m 701 | 391.5 636.5 415 635 473 632 c 702 | S 703 | 0.5 w 704 | 213 626.5 m 705 | 153.5 619 125.925 611.699 90.75 602.5 c 706 | 78.654 599.337 82.567 597.884 82.5 592 c 707 | 82.395 582.717 73.75 571 59 572.5 c 708 | S 709 | 1 g 710 | 0 G 711 | 1 w 712 | 73 595.25 m 713 | 79.25 592.5 76.25 574.75 57.25 580 C 714 | 73 595.25 l 715 | f 716 | 0.5 g 717 | 0.2 w 718 | 312 574.25 m 719 | 311.25 570.5 310.687 571.687 306.187 569.187 C 720 | 307.687 564.187 311.106 565.66 304.5 561.5 c 721 | 302.594 560.299 305.598 556.561 305.75 555.5 c 722 | 306.038 553.485 304.629 548.098 297 548.5 c 723 | 292.25 548.75 255.5 536 y 724 | 229.5 608.5 l 725 | 224 650 224.5 650 v 726 | 248.101 650 273.345 678.918 298 655.5 c 727 | 324.857 629.99 316.981 613.501 316.75 612.875 c 728 | 313.346 603.644 313.238 604.937 314.75 597.375 c 729 | 316.88 586.725 317.016 588.834 318.625 584.75 C 730 | 320.25 581.875 318.625 580.375 y 731 | 316.689 578.236 313.081 579.809 310.375 579 c 732 | 307.013 577.994 312 574.25 y 733 | B 734 | 0 g 735 | 0.5 w 736 | 288.5 456 m 737 | S 738 | 0.2 w 739 | 211 511 m 740 | 194.5 518.5 187 520.5 170.5 500 C 741 | 154.5 498.5 149.5 501 131.5 479.5 C 742 | 151 477.5 140 475 161 460 c 743 | 182 445 190.5 436.5 212 461 C 744 | 224.5 458 229 454.5 238.5 447 C 745 | 238 446.5 237 500.5 y 746 | 211 511 l 747 | f 748 | 1 g 749 | 207.5 526.5 m 750 | 206 514.5 204 506 236 490.5 C 751 | 242.5 509.5 l 752 | 207.5 526.5 l 753 | b 754 | 0 g 755 | 1 w 756 | 294.464 627.589 m 757 | 288.571 618.522 284.821 617.313 280 615.5 c 758 | 275.179 613.686 271.429 605.224 277.857 587.089 C 759 | 274.107 586.485 275.179 585.88 275.714 582.858 C 760 | 271.429 599.179 270.357 606.433 259.643 609.455 c 761 | 248.929 612.477 245.714 589.507 247.321 566.537 C 762 | 228.572 554.448 L 763 | 224.639 578.851 235.956 576.38 212.5 600.992 c 764 | 194.17 620.226 195.893 654.791 225.357 658.418 C 765 | 223.214 667.485 233.929 678.97 259.107 677.761 c 766 | 284.286 676.552 281.071 667.485 Y 767 | 302.5 667.485 334.964 665.942 301.429 614.895 C 768 | 306.25 639.679 303.571 643.306 296.607 646.933 C 769 | 299.286 634.239 294.464 627.589 y 770 | f 771 | 0.7 g 772 | 0.2 w 773 | 207.5 524.5 m 774 | 214.75 519.25 241.5 509 y 775 | 239 504.5 l 776 | 232 503 214.5 508.75 206.75 519 C 777 | 207 522.5 207.5 524.5 y 778 | b 779 | 1 g 780 | 298 546.5 m 781 | 272.625 574.625 248.5 596 195.5 568.5 C 782 | 196.26 524.417 214.492 504.333 239.5 510.5 C 783 | 298 546.5 l 784 | b 785 | 0.8 g 786 | 351.5 542 m 787 | 367 540 L 788 | 358.5 509.5 357 489.5 357 482 C 789 | 323.5 482.5 295.5 485.5 284.5 477.5 c 790 | 298.5 468.5 l 791 | 299 457 l 792 | 270.5 451 l 793 | 238.5 483.5 l 794 | 241 513.5 l 795 | 250.5 538 252.5 547.5 282.5 550 C 796 | 306.251 550 334.454 541.702 343.687 542.187 C 797 | 342.576 538.175 346.737 538.055 351.5 542 c 798 | b 799 | 0 g 800 | 1 w 801 | 333.25 484.75 m 802 | 343.25 458.25 371.5 466 349 418.5 C 803 | 359 348.5 378 357 363 336 C 804 | 358.5 333 359 333 v 805 | 359.5 333 353 328 359 327.5 c 806 | 365 327 371 316.5 373.5 253.5 C 807 | 381 245.5 l 808 | 371 221 371 220.5 V 809 | 360.5 247 358 253 351 261.5 C 810 | 340 238 331.5 220.5 328.5 211.5 C 811 | 301 229.5 265 250 232.5 244.5 C 812 | 247.5 287 246 299.5 275 320.5 C 813 | 270 331.5 268.689 334.634 265.75 336.25 c 814 | 255.75 341.75 261.891 340.771 251 375 c 815 | 247.5 386 249.5 384 255.5 399 C 816 | 252.5 397 253.5 401 253.5 402.5 c 817 | 253.5 404 252.057 400.023 251 402.5 c 818 | 235 440 219.5 489.5 249.5 534 C 819 | 238.5 503.5 242.102 477.13 260 463 c 820 | 269.5 455.5 278.75 453.25 291 457.25 C 821 | 297.5 461 299.549 465.787 282 476.75 C 822 | 292.5 487.5 333.25 484.75 y 823 | f 824 | 457.25 576.25 m 825 | 454.936 574.233 453.51 595.217 479.25 583 C 826 | 495.651 573.321 495.931 560.263 482.5 560.5 C 827 | 486.25 566 491.682 565.465 478.5 575 c 828 | 463.444 585.891 460.318 578.924 457.25 576.25 c 829 | f 830 | 1 g 831 | 460.75 581.5 m 832 | 463.387 583.699 467.528 583.937 470.5 583.375 c 833 | 473.752 582.76 473.75 581.75 Y 834 | 461.735 583.841 458.891 579.95 460.75 581.5 c 835 | f 836 | 0 g 837 | 310.393 647.785 m 838 | 329.089 651.66 328.75 623.692 320.178 607.976 C 839 | 319.107 621.274 316.428 636.386 310.536 635.782 c 840 | 304.643 635.177 310.393 647.785 y 841 | f 842 | 284.286 663.858 m 843 | 286.964 677.157 280.536 689.246 281.071 689.246 C 844 | 289.107 677.761 288.036 665.672 y 845 | 284.286 663.858 l 846 | f 847 | 0.2 w 848 | 274.643 683.201 m 849 | 278.929 678.97 280 668.694 279.464 665.672 c 850 | S 851 | 276.25 686.224 m 852 | 284.393 677.036 283.75 662.045 y 853 | S 854 | 1 w 855 | 297.679 661.44 m 856 | 312.602 661.44 312.143 677.157 310.536 680.784 C 857 | 308.929 672.321 305.179 666.276 292.857 664.463 C 858 | 297.679 661.44 l 859 | f 860 | 0.2 w 861 | 295 661.44 m 862 | 298.75 666.276 302.5 675.343 294.464 683.201 c 863 | S 864 | 300.357 681.992 m 865 | 304.265 669.255 303.814 670.807 292.321 656.604 c 866 | S 867 | 311.821 649.078 m 868 | 321.464 649.078 330.571 646.66 329.5 627.921 c 869 | S 870 | 307.536 650.892 m 871 | 316.268 651.33 319.057 653.025 326.821 646.056 c 872 | 330.446 642.802 331.1 637.618 331.107 637.593 c 873 | S 874 | 304.643 665.067 m 875 | 305.629 663.874 321.031 667.072 321.304 651.569 c 876 | S 877 | 0.5 w 878 | 311.071 639.679 m 879 | 317.893 638.968 312.696 617.332 v 880 | S 881 | 1 w 882 | 313.375 612.875 m 883 | 315.455 614.262 313.5 617.375 297.125 615.375 C 884 | 310.375 616.625 311.875 611.875 313.375 612.875 c 885 | f 886 | 1 g 887 | 308.5 604.875 m 888 | 309.833 600.875 309.125 601.25 307.375 599 C 889 | 302.25 600.625 303.25 599.875 299 602.5 C 890 | 304.25 604.75 308.375 605.25 308.5 604.875 c 891 | f 892 | 0 g 893 | 307.5 604.437 m 894 | 305.463 602.811 305.481 601.49 307.375 598.937 C 895 | 309.261 601.307 309.489 602.172 308.562 605.062 C 896 | 308.562 604.937 308.191 604.989 307.5 604.437 c 897 | f 898 | 0.2 w 899 | 305.625 583.75 m 900 | 304.687 582.562 306.5 579.375 308.875 579.75 c 901 | S 902 | 1 w 903 | 311.125 574.5 m 904 | 310.25 573.898 310 573.437 304.937 569.312 C 905 | 306.229 564.611 308.063 564.014 308.312 564.562 C 906 | 309.775 566.476 307.663 569.565 306.687 569.75 C 907 | 311.812 571.75 311.625 572.5 312 574.25 C 908 | 311.687 574.75 311.176 574.535 311.125 574.5 c 909 | f 910 | 298.625 603 m 911 | 302 600.437 304.294 599.524 307.812 598.937 c 912 | 308.187 598.875 308.562 598.5 308.687 597.875 c 913 | S 914 | 297.5 602.25 m 915 | 299.939 602.851 307.687 603.062 311.75 607.812 C 916 | 307.812 606 297.011 602.129 297.5 602.25 c 917 | f 918 | 213.5 576.125 m 919 | 218.674 549.92 230.862 532.355 245.5 526.5 C 920 | 243.75 514.5 209.75 494.25 195.5 568.5 C 921 | 203.75 572.25 213.347 576.901 213.5 576.125 c 922 | f 923 | 0.2 w 924 | 343.375 541.75 m 925 | 333.375 534.75 318.25 525.5 312 521.25 c 926 | S 927 | 351.562 541.937 m 928 | 337.936 530.579 327.2 525.581 313.25 517.75 c 929 | S 930 | 0.3 w 931 | 312.75 495 m 932 | 291.75 483.5 276.25 476 274.25 466 c 933 | S 934 | 0.5 w 935 | 229 580.75 m 936 | 235.5 571 241.25 554.75 245.75 528 c 937 | S 938 | 1 w 939 | 235 581 m 940 | 246 555.75 246.75 537.75 245.75 526 C 941 | 252.125 560.5 243.75 567.75 239.75 581.5 C 942 | 240 581.5 237 581.75 235 581 C 943 | f 944 | 0.7 g 945 | 0.2 w 946 | 248.625 580.5 m 947 | 253.169 564.605 256.75 553.75 250.25 535.75 C 948 | 257.5 552.75 259.125 558.937 252.875 579.687 C 949 | 251.029 580.149 248.517 580.879 248.625 580.5 c 950 | b 951 | 0 g 952 | 1 w 953 | 258.25 577.75 m 954 | 262.047 567.879 262.5 552.5 259.25 544.25 C 955 | 267.75 548.25 275 549.75 278.25 549.75 C 956 | 281.75 555.25 282.75 556.75 279.5 565.25 C 957 | 270.06 573.13 257.909 578.635 258.25 577.75 c 958 | f 959 | 207.5 524.5 m 960 | F 961 | 207.25 514.75 m 962 | 207.185 514.86 228.75 497.5 238 500.75 C 963 | 236 494.5 l 964 | 225 498 213.924 503.454 207.25 514.75 c 965 | f 966 | 1 g 967 | 0.2 w 968 | 191 516 m 969 | 175.472 497.418 168.5 492 171.5 453 C 970 | 185 443.5 189 443.5 200 450.5 C 971 | 186.5 469.5 182 491 198.5 515.5 C 972 | 194.5 516 191.339 516.406 191 516 c 973 | b 974 | 201 515 m 975 | 194 499 187 484 203.5 453 C 976 | 206.5 455 211.5 460.5 212 461 C 977 | 203.5 480.5 193.5 501.5 206 510.5 C 978 | 205 499.5 210.5 490.5 232.5 473.5 C 979 | 232.5 483 231.5 482.5 233 492 C 980 | 221 498 210 505 208 512.5 C 981 | 201 515 l 982 | b 983 | 0 g 984 | 1 G 985 | 0.5 w 986 | 268 442.5 m 987 | 253.5 402.5 l 988 | S 989 | 269.5 435.5 m 990 | 258.5 407 258.5 407.5 v 991 | S 992 | 0.5 G 993 | 0.4 w 994 | 293.5 480.5 m 995 | 297.5 463.5 298.5 460.5 289 445.5 c 996 | S 997 | 1 G 998 | 1 J 999 | 0.3 w 1000 | 349.125 418.125 m 1001 | 338.393 403.978 348.387 416.158 341.625 408.875 c 1002 | S 1003 | u 1004 | 1 g 1005 | 0 G 1006 | 0 J 1007 | 0.2 w 1008 | 336.038 340.015 m 1009 | 338.267 329.694 L 1010 | 342.937 338.843 L 1011 | 340.707 349.164 L 1012 | 336.038 340.015 L 1013 | b 1014 | 339.487 339.429 m 1015 | B 1016 | U 1017 | u 1018 | 328.791 340.569 m 1019 | 331.562 330.38 L 1020 | 335.743 339.762 L 1021 | 332.972 349.952 L 1022 | 328.791 340.569 L 1023 | b 1024 | 332.267 340.166 m 1025 | B 1026 | U 1027 | u 1028 | 321.758 340.67 m 1029 | 325.133 330.664 L 1030 | 328.746 340.28 L 1031 | 325.37 350.286 L 1032 | 321.758 340.67 L 1033 | b 1034 | 325.252 340.475 m 1035 | B 1036 | U 1037 | u 1038 | 314.504 340.97 m 1039 | 317.88 330.964 L 1040 | 321.492 340.58 L 1041 | 318.117 350.586 L 1042 | 314.504 340.97 L 1043 | b 1044 | 317.998 340.775 m 1045 | B 1046 | U 1047 | u 1048 | u 1049 | 307.24 340.468 m 1050 | 311.982 331.033 L 1051 | 314.214 341.059 L 1052 | 309.473 350.494 L 1053 | 307.24 340.468 L 1054 | b 1055 | 310.727 340.764 m 1056 | B 1057 | U 1058 | u 1059 | 300.016 339.751 m 1060 | 304.757 330.316 L 1061 | 306.99 340.342 L 1062 | 302.249 349.777 L 1063 | 300.016 339.751 L 1064 | b 1065 | 303.503 340.047 m 1066 | B 1067 | U 1068 | U 1069 | u 1070 | u 1071 | 292.985 339.2 m 1072 | 298.349 330.104 L 1073 | 299.903 340.258 L 1074 | 294.54 349.353 L 1075 | 292.985 339.2 L 1076 | b 1077 | 296.444 339.729 m 1078 | B 1079 | U 1080 | u 1081 | 285.826 338 m 1082 | 291.189 328.904 L 1083 | 292.744 339.057 L 1084 | 287.38 348.153 L 1085 | 285.826 338 L 1086 | b 1087 | 289.285 338.529 m 1088 | B 1089 | U 1090 | U 1091 | u 1092 | 278.742 336.229 m 1093 | 285.413 328.042 L 1094 | 285.423 338.314 L 1095 | 278.753 346.501 L 1096 | 278.742 336.229 L 1097 | b 1098 | 282.083 337.272 m 1099 | B 1100 | U 1101 | u 1102 | 272.228 332.392 m 1103 | 279.743 324.974 L 1104 | 278.644 335.186 L 1105 | 271.13 342.604 L 1106 | 272.228 332.392 L 1107 | b 1108 | 275.437 333.789 m 1109 | B 1110 | U 1111 | 0 g 1112 | 1 G 1113 | 1 w 1114 | 266.25 335.5 m 1115 | 276.25 351.5 284.659 350 343 350 c 1116 | 364 350 363 336 y 1117 | S 1118 | 271 321 m 1119 | 294 332 309 335 362 324 c 1120 | S 1121 | u 1122 | 1 g 1123 | 0 G 1124 | 0.2 w 1125 | 350.823 325.912 m 1126 | 364.33 322.302 L 1127 | 361.658 347.078 L 1128 | 348.151 350.689 L 1129 | 350.823 325.912 L 1130 | b 1131 | 356.24 336.495 m 1132 | B 1133 | U 1134 | 0 g 1135 | 1 w 1136 | 274 347.5 m 1137 | 281.5 351.5 280.229 357.581 311 338 c 1138 | 316.5 334.5 322.5 338 351 357.5 C 1139 | 282 360 l 1140 | 274 347.5 l 1141 | f 1142 | 1 G 1143 | 0.5 w 1144 | 269.25 355.75 m 1145 | 277.75 353.25 284.25 352.5 288.75 349.75 c 1146 | S 1147 | 353.25 358.25 m 1148 | 347.25 354 345.5 353.5 339.75 349.5 c 1149 | S 1150 | 0.3 w 1151 | 355.25 272.75 m 1152 | 359.75 281.5 361.25 285 363.25 290.75 c 1153 | S 1154 | 0.5 G 1155 | 0.5 w 1156 | 354 219 m 1157 | 339 195 327 176 317 166 c 1158 | S 1159 | 323 197 m 1160 | 310 150 308 135 235 48 c 1161 | S 1162 | 1 w 1163 | 241 241.5 m 1164 | 232 227.5 215.231 198.443 215 198 c 1165 | 192.581 155 178 110 164 71 c 1166 | S 1167 | 0 G 1168 | 0.2 w 1169 | 265.394 600.822 m 1170 | 263.576 606.114 262.122 612.994 253.035 607.173 C 1171 | 250.126 603.468 249.763 601.704 249.763 596.589 c 1172 | 249.763 591.473 254.307 592.179 257.76 587.24 c 1173 | 261.213 582.301 266.484 579.302 267.029 588.475 c 1174 | S 1175 | 0.3 g 1176 | 260.668 605.409 m 1177 | 262.486 601.352 261.94 599.941 257.578 597.824 c 1178 | 253.216 595.707 257.76 591.473 260.305 592.355 c 1179 | 262.849 593.237 263.394 592.532 264.303 591.65 c 1180 | 265.212 590.768 266.666 591.826 264.667 594.119 c 1181 | 262.667 596.413 259.759 593.943 261.032 597.471 c 1182 | 262.304 600.999 260.668 605.409 y 1183 | b 1184 | 0 g 1185 | 257.578 606.644 m 1186 | 254.125 605.056 251.58 604.174 251.58 598.177 c 1187 | 251.58 592.179 258.487 590.415 259.214 588.651 c 1188 | S 1189 | u 1190 | 1 g 1191 | 257.397 584.594 m 1192 | 258.601 581.671 262.019 580.25 265.03 581.419 c 1193 | 268.041 582.588 269.506 585.905 268.302 588.827 c 1194 | 267.097 591.75 263.679 593.172 260.668 592.003 c 1195 | 257.657 590.833 256.192 587.516 257.397 584.594 c 1196 | b 1197 | 262.849 586.711 m 1198 | B 1199 | U 1200 | u 1201 | 0.2 g 1202 | 1 w 1203 | 258.487 586.358 m 1204 | 263.213 582.477 L 1205 | 267.211 587.063 L 1206 | 262.486 590.944 L 1207 | 258.487 586.358 L 1208 | f 1209 | 262.849 586.711 m 1210 | F 1211 | U 1212 | 0 g 1213 | 309.25 579.875 m 1214 | 310.75 580.5 313.25 583.125 314.625 581 c 1215 | F 1216 | 1 g 1217 | 307.964 565.926 m 1218 | 307.88 566.015 306.794 566.513 307.22 566.682 c 1219 | 307.647 566.851 307.68 566.599 307.935 566.639 C 1220 | 307.924 566.13 307.971 566.31 307.964 565.926 c 1221 | f 1222 | 510 104 m 1223 | 509.564 104.895 511.5 89 495.5 74.5 C 1224 | 495.5 68 l 1225 | 506 79 518.582 86.358 510 104 c 1226 | f 1227 | 0 g 1228 | 0.2 w 1229 | 403.75 534.25 m 1230 | 413.25 533.75 415.75 534.25 417.75 534.75 c 1231 | S 1232 | 1 G 1233 | 0.3 w 1234 | 538.5 629 m 1235 | 542 625 547.5 620 y 1236 | S 1237 | 548.75 629.25 m 1238 | 552.25 625.25 557.75 620.25 y 1239 | S 1240 | 0 G 1241 | 0.2 w 1242 | 518.5 587.5 m 1243 | 522.5 586 526 587.5 527 587.5 c 1244 | S 1245 | 514 617.5 m 1246 | 518 614 518.5 611.5 520 607.5 c 1247 | S 1248 | 528.25 613.75 m 1249 | 533.25 615.25 532.5 615.5 538.25 614.25 c 1250 | S 1251 | 1 g 1252 | 538 637.5 m 1253 | 537.25 618 533 617.5 531.25 617.5 c 1254 | 529.5 617.5 528.235 615.255 528.5 622.5 c 1255 | 529.25 643 528.775 643.326 534.25 642.75 c 1256 | 539 642.25 539 642.25 540.5 630.75 C 1257 | 538 631 l 1258 | 538 629 538 631.25 v 1259 | 538 633.5 538 637.5 Y 1260 | b 1261 | 0.7 g 1262 | 507.5 650.75 m 1263 | 510 648.5 510.25 645.75 511.75 643.25 c 1264 | 513.25 640.75 508.5 638.25 508.5 638 c 1265 | 508.5 637.75 507.5 650.75 y 1266 | b 1267 | 1 g 1268 | 529.25 639.25 m 1269 | 528.5 643 527 642.75 524 642.75 c 1270 | 521 642.75 519.75 644 519.5 632.25 C 1271 | 519.75 638 519.75 641 v 1272 | 519.75 644 518.75 644.25 515.25 644.25 c 1273 | 511.75 644.25 511.75 646 509.25 641.25 c 1274 | 506.75 636.5 505.75 633.25 506 633.25 c 1275 | 506.25 633.25 509.75 628.25 Y 1276 | 511.5 620.25 512.75 619.75 515.5 619.5 c 1277 | 518.25 619.25 520.25 618.25 519.5 623.5 C 1278 | 521 618.25 521 617.75 524.75 617 c 1279 | 528.5 616.25 528.5 618.25 528.5 622.5 c 1280 | 528.5 626.75 529.25 639.25 y 1281 | b 1282 | 507.75 636.75 m 1283 | 512.687 638.231 515.604 641 515.25 641 C 1284 | 517.839 637.469 517.494 629.281 508.75 625.5 C 1285 | 508.75 625.25 502 635 502.25 634.75 c 1286 | 502.5 634.5 507.75 636.75 y 1287 | b 1288 | 493.5 571.5 m 1289 | 495.171 563.425 503.634 565.498 503.5 576.25 c 1290 | 503.25 596.25 515.75 586.25 509 636.75 c 1291 | 508.301 641.977 510 650.75 506.5 651.5 c 1292 | 501.514 652.568 500.436 652.26 499.25 644.75 c 1293 | 498.5 640 496.5 646.25 496 648.5 c 1294 | 495.5 650.75 493.75 651 490.75 650.25 c 1295 | 487.75 649.5 488.253 648.665 487.5 645.5 c 1296 | 486.194 640.013 486.75 641.75 484.5 645.5 c 1297 | 482.39 649.016 481.306 648.011 477.5 647.25 c 1298 | 475 646.75 474.784 644.479 475.25 640.75 c 1299 | 475.5 638.75 474 642.25 472.5 644.5 c 1300 | 471 646.75 469.25 645.5 466.5 645.5 c 1301 | 463.75 645.5 463.25 641.003 463.5 635.5 c 1302 | 463.511 635.25 463 626.25 y 1303 | 449.75 627.25 l 1304 | 459.25 618.5 465.606 612.863 468.25 597 c 1305 | 468.75 594 468 592.25 470 592.75 C 1306 | 459.719 593.497 459.195 585.398 461 586 c 1307 | 466.25 587.75 471.75 589.25 476.75 587 c 1308 | 481.75 584.75 486.25 584.25 489.5 586.25 C 1309 | 490.25 582.75 492 578.75 493.5 571.5 c 1310 | b 1311 | 0 g 1312 | 486.25 592.5 m 1313 | 489 595.25 492.117 593.078 492.25 592.75 c 1314 | 494.972 586.028 477 591.75 467.25 593 c 1315 | S 1316 | 0.4 w 1317 | 470 592.75 m 1318 | 474.25 595.75 475 596 481.5 595.75 c 1319 | S 1320 | 1 J 1321 | 2.5 w 1322 | 477.75 630 m 1323 | 478.5 620.75 l 1324 | S 1325 | 479.25 617.5 m 1326 | 480 610.5 l 1327 | S 1328 | 480.25 607.75 m 1329 | 481 600.25 481 600.5 v 1330 | S 1331 | 487.5 631.75 m 1332 | 487.75 623.5 l 1333 | S 1334 | 487.75 620.75 m 1335 | 487.75 612.5 l 1336 | S 1337 | 488 609.25 m 1338 | 488.25 609.25 487.75 602.5 y 1339 | S 1340 | 498 630.75 m 1341 | 497.25 623.75 l 1342 | S 1343 | 496.75 620.75 m 1344 | 495.5 612.5 l 1345 | S 1346 | 495.25 609.5 m 1347 | 493.75 602 l 1348 | S 1349 | 0 J 1350 | 0.2 w 1351 | 465.5 637.25 m 1352 | 464.5 629.75 461.25 628.75 464.75 617 c 1353 | S 1354 | 0.5 w 1355 | 502 589.25 m 1356 | 503.25 585 503.5 583.25 503.5 577 c 1357 | S 1358 | 1 g 1359 | 1 w 1360 | 521.949 86.694 m 1361 | 521.637 87.353 523.021 75.657 511.583 64.988 C 1362 | 511.583 60.205 l 1363 | 519.089 68.299 528.083 73.713 521.949 86.694 c 1364 | f 1365 | 553.457 99.673 m 1366 | 553.091 100.449 554.713 86.67 541.309 74.1 C 1367 | 541.309 68.465 l 1368 | 550.105 78.001 560.646 84.379 553.457 99.673 c 1369 | f 1370 | 482.74 95.04 m 1371 | 482.429 95.699 483.812 84.003 472.375 73.334 C 1372 | 472.375 68.551 l 1373 | 479.881 76.645 488.875 82.059 482.74 95.04 c 1374 | f 1375 | 450.924 87.63 m 1376 | 450.69 88.028 451.731 80.968 443.129 74.528 C 1377 | 443.129 71.641 l 1378 | 448.774 76.527 455.538 79.795 450.924 87.63 c 1379 | f 1380 | 0 g 1381 | 308 61.5 m 1382 | N 1383 | 3 w 1384 | 16.002 40.373 m 1385 | 568.002 40.127 L 1386 | 567.748 716.565 L 1387 | S 1388 | u 1389 | 15.815 40.248 m 1390 | 567.815 40.002 L 1391 | 567.748 716.565 L 1392 | 15.998 716.81 L 1393 | 15.815 40.248 L 1394 | s 1395 | U 1396 | %%Trailer 1397 | _E end 1398 | showpage 1399 | -------------------------------------------------------------------------------- /figures/hitlogo.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.10 (http://cairographics.org) 3 | %%CreationDate: Sat Aug 26 21:27:21 2017 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 98 590 565 677 8 | %%EndComments 9 | %%BeginProlog 10 | save 11 | 50 dict begin 12 | /q { gsave } bind def 13 | /Q { grestore } bind def 14 | /cm { 6 array astore concat } bind def 15 | /w { setlinewidth } bind def 16 | /J { setlinecap } bind def 17 | /j { setlinejoin } bind def 18 | /M { setmiterlimit } bind def 19 | /d { setdash } bind def 20 | /m { moveto } bind def 21 | /l { lineto } bind def 22 | /c { curveto } bind def 23 | /h { closepath } bind def 24 | /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 25 | 0 exch rlineto 0 rlineto closepath } bind def 26 | /S { stroke } bind def 27 | /f { fill } bind def 28 | /f* { eofill } bind def 29 | /n { newpath } bind def 30 | /W { clip } bind def 31 | /W* { eoclip } bind def 32 | /BT { } bind def 33 | /ET { } bind def 34 | /pdfmark where { pop globaldict /?pdfmark /exec load put } 35 | { globaldict begin /?pdfmark /pop load def /pdfmark 36 | /cleartomark load def end } ifelse 37 | /BDC { mark 3 1 roll /BDC pdfmark } bind def 38 | /EMC { mark /EMC pdfmark } bind def 39 | /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def 40 | /Tj { show currentpoint cairo_store_point } bind def 41 | /TJ { 42 | { 43 | dup 44 | type /stringtype eq 45 | { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse 46 | } forall 47 | currentpoint cairo_store_point 48 | } bind def 49 | /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore 50 | cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def 51 | /Tf { pop /cairo_font exch def /cairo_font_matrix where 52 | { pop cairo_selectfont } if } bind def 53 | /Td { matrix translate cairo_font_matrix matrix concatmatrix dup 54 | /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point 55 | /cairo_font where { pop cairo_selectfont } if } bind def 56 | /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def 57 | cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def 58 | /g { setgray } bind def 59 | /rg { setrgbcolor } bind def 60 | /d1 { setcachedevice } bind def 61 | /cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def 62 | /cairo_image { image cairo_flush_ascii85_file } def 63 | /cairo_imagemask { imagemask cairo_flush_ascii85_file } def 64 | %%EndProlog 65 | %%BeginSetup 66 | %%EndSetup 67 | %%Page: 1 1 68 | %%BeginPageSetup 69 | %%PageBoundingBox: 98 590 565 677 70 | %%EndPageSetup 71 | q 98 590 467 87 rectclip q 72 | 0 g 73 | 532.574 596.495 m 527.34 601.503 l 532.105 601.257 l 536.867 601.015 l 74 | 537.176 605.284 l 537.57 610.765 535.727 611.605 529.727 608.679 c 525.621 75 | 606.675 525.082 606.632 522.34 608.054 c 519.105 609.734 518.207 613.554 76 | 521.047 613.554 c 526.309 613.554 535.574 615.941 536.098 617.433 c 536.414 77 | 618.331 537.324 619.831 538.117 620.761 c 539.957 622.917 538.949 624.589 78 | 535.809 624.589 c 534.309 624.589 533.371 625.167 533.371 626.093 c 533.371 79 | 627.132 534.414 627.597 536.746 627.597 c 538.602 627.597 540.684 628.273 80 | 541.367 629.101 c 542.051 629.929 543.152 630.605 543.816 630.605 c 545.504 81 | 630.605 554.359 636.612 554.359 637.753 c 554.359 640.003 551.082 639.741 82 | 548.531 637.292 c 546.605 635.437 545.172 634.859 543.562 635.28 c 542.25 83 | 635.624 540.578 635.269 539.586 634.433 c 538.641 633.64 535.949 632.155 84 | 533.602 631.136 c 529.934 629.542 528.992 629.468 526.855 630.616 c 525.492 85 | 631.351 524.375 632.526 524.375 633.237 c 524.375 634.55 530.199 636.609 86 | 533.93 636.62 c 535.062 636.624 536.859 637.276 537.926 638.069 c 539.75 87 | 639.425 539.766 639.616 538.18 641.234 c 536.59 642.855 536.336 642.855 88 | 533.902 641.253 c 529.945 638.651 527.355 641.421 531.121 644.23 c 532.781 89 | 645.468 532.785 645.62 531.133 647.3 c 529.477 648.987 529.316 648.98 527.637 90 | 647.112 c 526.668 646.034 524.629 643.234 523.109 640.89 c 520.074 636.202 91 | 519.285 635.859 516.941 638.214 c 515.5 639.659 515.535 640.05 517.367 92 | 642.632 c 519.605 645.784 519.863 648.249 518.371 652.194 c 517.082 655.597 93 | 517.922 657.003 520.438 655.651 c 522.004 654.812 522.375 653.526 522.375 94 | 648.929 c 522.375 644.753 522.672 643.542 523.488 644.362 c 525.016 645.898 95 | 524.98 659.335 523.438 664.03 c 522.742 666.136 522.426 668.109 522.73 96 | 668.413 c 523.68 669.37 528.34 667.757 530.293 665.796 c 532.059 664.023 97 | 532.078 663.616 530.602 658.296 c 529.742 655.202 529.355 652.359 529.738 98 | 651.976 c 530.117 651.593 531.637 652.491 533.113 653.972 c 535.215 656.081 99 | 535.535 656.925 534.582 657.878 c 532.492 659.98 533.246 660.816 536.652 100 | 660.175 c 539.746 659.593 540.133 659.859 543.301 664.769 c 545.152 667.632 101 | 546.953 671.386 547.305 673.109 c 548.117 677.101 550.496 677.569 552.109 102 | 674.058 c 554.223 669.452 553.566 667.433 548.82 663.929 c 544.594 660.808 103 | 543.32 658.456 545.219 657.28 c 545.688 656.991 547.113 657.866 548.391 104 | 659.23 c 549.664 660.589 551.164 661.706 551.719 661.706 c 552.273 661.706 105 | 553.707 662.624 554.898 663.749 c 556.094 664.878 558.707 666.066 560.711 106 | 666.39 c 563.699 666.878 564.352 666.679 564.352 665.28 c 564.352 662.866 107 | 562.582 659.78 558.711 655.433 c 556.867 653.362 555.355 651.331 555.355 108 | 650.917 c 555.355 650.507 554.223 648.847 552.836 647.23 c 549.637 643.499 109 | 550.965 641.87 555.352 644.148 c 559.18 646.136 563.352 645.437 563.352 110 | 642.804 c 563.352 640.519 555.363 633.476 551.09 631.995 c 548.676 631.159 111 | 547.922 630.343 548.094 628.757 c 548.223 627.589 547.203 624.968 545.824 112 | 622.929 c 542.656 618.245 543.805 616.956 549.211 619.128 c 553.934 621.023 113 | 556.355 620.526 556.355 617.655 c 556.355 615.093 554.867 614.226 549.359 114 | 613.577 c 544.863 613.05 l 545.203 605.913 l 545.523 599.101 545.395 598.612 115 | 542.348 595.132 c 540.594 593.124 538.855 591.484 538.48 591.484 c 538.109 116 | 591.484 535.449 593.737 532.57 596.495 c h 117 | 545.535 641.296 m 547.727 643.284 547.891 644.651 545.934 644.651 c 544.055 118 | 644.651 541.191 641.734 541.914 640.558 c 542.719 639.253 543.449 639.401 119 | 545.535 641.296 c h 120 | 544.215 645.972 m 545.816 647.913 546.102 653.878 544.613 654.405 c 543.871 121 | 654.671 543.363 653.995 543.363 652.73 c 543.363 651.562 542.691 650.347 122 | 541.867 650.03 c 539.598 649.155 540.055 644.651 542.41 644.651 c 542.801 123 | 644.651 543.613 645.245 544.215 645.972 c h 124 | 551.395 649.917 m 553.59 653.487 554.887 657.499 554.098 658.288 c 553.82 125 | 658.566 552.422 658.499 550.988 658.136 c 548.836 657.593 548.398 656.929 126 | 548.488 654.327 c 548.551 652.593 548.27 650.155 547.863 648.913 c 546.742 127 | 645.472 549.066 646.132 551.395 649.917 c h 128 | 538.367 650.702 m 538.367 653.507 535.695 654.288 533.355 652.163 c 530.906 129 | 649.937 531.66 648.663 535.43 648.663 c 537.715 648.663 538.367 649.116 130 | 538.367 650.702 c h 131 | 282.875 600.261 m 277.797 605.624 277.324 605.894 276.215 604.112 c 272.863 132 | 598.734 269.059 596.937 267.828 600.155 c 267.441 601.167 267.922 602.335 133 | 269.066 603.175 c 270.871 604.503 270.859 604.601 268.73 606.097 c 266.473 134 | 607.683 265.711 612.261 267.395 614.105 c 268.73 615.566 269.637 620.386 135 | 268.684 620.976 c 268.219 621.265 266.312 619.921 264.449 617.987 c 262.059 136 | 615.511 260.328 614.562 258.594 614.765 c 255.715 615.109 254.789 612.874 137 | 254.629 605.21 c 254.535 600.519 253.203 596.495 251.746 596.503 c 251.355 138 | 596.503 249.742 598.905 248.168 601.839 c 245.32 607.136 245.312 607.202 139 | 247.07 610.609 c 248.27 612.944 249.082 617.749 249.594 625.585 c 250.008 140 | 631.933 250.805 638.308 251.363 639.753 c 252.125 641.714 251.977 643.499 141 | 250.781 646.843 c 249.219 651.198 249.508 654.683 251.426 654.683 c 253.09 142 | 654.683 258.27 649.773 258.812 647.679 c 259.164 646.339 258.359 644.612 143 | 256.426 642.53 c 252.633 638.456 251.941 635.39 253.887 631.269 c 255.355 144 | 628.167 255.328 627.573 253.5 622.737 c 252.418 619.882 251.531 616.87 145 | 251.531 616.05 c 251.531 613.741 253.32 614.284 254.043 616.812 c 255.953 146 | 623.487 259.816 632.554 260.559 632.093 c 261.027 631.804 260.547 629.655 147 | 259.492 627.323 c 257.395 622.687 256.992 619.573 258.484 619.573 c 259.879 148 | 619.573 271.633 631.741 272.492 634.069 c 274.375 639.183 269.77 642.163 149 | 265.789 638.409 c 263.043 635.819 264.242 633.862 267.5 635.612 c 270.496 150 | 637.218 271.133 636.206 269.094 633.085 c 266.918 629.749 263.18 630.019 151 | 262.684 633.542 c 262.496 634.882 261.68 636.991 260.871 638.23 c 259.566 152 | 640.226 259.578 640.835 260.961 643.523 c 261.824 645.191 262.527 647.554 153 | 262.527 648.769 c 262.527 650.909 262.59 650.921 264.5 649.191 c 265.586 154 | 648.202 266.754 646.511 267.094 645.429 c 267.617 643.773 268.297 643.566 155 | 271.367 644.109 c 273.375 644.468 276.207 645.612 277.656 646.659 c 280.102 156 | 648.421 281.516 648.39 281.516 646.566 c 281.516 646.151 280.379 644.452 157 | 278.992 642.796 c 277.355 640.847 276.852 639.546 277.555 639.112 c 279.039 158 | 638.191 282.02 641.073 284.074 645.425 c 285.672 648.804 285.859 648.909 159 | 287.145 647.148 c 289.727 643.601 288.723 641.331 282.492 636.651 c 279.207 160 | 634.179 276.52 631.585 276.52 630.882 c 276.52 629.14 277.234 629.265 281.129 161 | 631.679 c 282.973 632.823 284.887 633.503 285.391 633.191 c 285.91 632.87 162 | 286.07 627.23 285.766 620.124 c 285.227 607.624 l 287.703 606.491 l 289.066 163 | 605.866 290.965 604.019 291.93 602.386 c 293.543 599.64 293.555 599.23 164 | 292.07 596.952 c 291.188 595.601 289.984 594.491 289.402 594.491 c 288.816 165 | 594.491 285.883 597.089 282.875 600.261 c h 166 | 273.02 608.37 m 273.02 610.183 271.062 609.855 270.676 607.972 c 270.461 167 | 606.929 270.836 606.468 271.676 606.749 c 272.414 606.999 273.02 607.726 168 | 273.02 608.37 c h 169 | 282.852 607.202 m 283.219 607.569 282.781 608.691 281.883 609.687 c 280.688 170 | 611.011 280.215 613.609 280.133 619.3 c 280.035 625.71 279.75 627.023 278.516 171 | 626.687 c 277.691 626.46 276.098 626.202 274.969 626.116 c 271.961 625.882 172 | 270.523 624.722 270.523 622.523 c 270.523 620.179 271.371 620.081 274.23 173 | 622.089 c 276.879 623.952 277.211 623.409 277.312 617.042 c 277.441 609.073 174 | 280.066 604.405 282.852 607.202 c h 175 | 273.762 615.073 m 273.055 618.792 271.52 619.167 271.52 615.62 c 271.52 176 | 613.698 272.031 612.55 272.883 612.55 c 273.797 612.55 274.086 613.378 177 | 273.762 615.073 c h 178 | 394.883 598.015 m 393.098 602.304 391.578 602.413 388.113 598.507 c 386.641 179 | 596.851 384.613 595.495 383.605 595.495 c 381.195 595.495 378.461 598.601 180 | 378.461 601.335 c 378.461 603.222 378.98 603.487 382.387 603.351 c 386.152 181 | 603.206 391.453 605.589 391.453 607.433 c 391.453 607.905 390.789 608.847 182 | 389.973 609.523 c 387.883 611.269 389.734 614.339 393.125 614.741 c 395.992 183 | 615.081 397.672 617.566 395.035 617.566 c 393.027 617.566 392.965 619.448 184 | 394.945 620.21 c 395.766 620.526 396.172 621.222 395.844 621.753 c 395.516 185 | 622.284 394.617 622.476 393.852 622.179 c 392.133 621.519 389.453 622.46 186 | 389.453 623.726 c 389.453 624.237 391.027 625.589 392.953 626.726 c 396.656 187 | 628.921 397.723 631.148 394.59 630.151 c 393.52 629.808 392.199 630.202 188 | 391.473 631.085 c 389.547 633.413 388.578 633.023 382.863 627.597 c 379.957 189 | 624.839 376.715 622.581 375.656 622.581 c 372.305 622.581 368.316 626.507 190 | 368.66 629.468 c 368.938 631.862 369.391 632.124 373.461 632.249 c 376.531 191 | 632.343 380.18 633.566 384.957 636.101 c 394.23 641.026 394.789 641.616 192 | 393.477 645.089 c 392.566 647.491 392.199 647.694 390.832 646.558 c 389.961 193 | 645.831 388.855 644.202 388.375 642.937 c 387.219 639.886 383.684 639.886 194 | 382.922 642.937 c 382.605 644.198 382.816 646.472 383.391 647.991 c 384.277 195 | 650.327 384.734 650.589 386.379 649.706 c 387.66 649.019 389.188 648.991 196 | 390.844 649.624 c 393.203 650.526 393.383 651.093 393.66 658.405 c 393.945 197 | 666.054 394.008 666.226 396.637 666.53 c 400.406 666.968 403.234 662.734 198 | 401.59 659.109 c 399.938 655.476 400.156 654.683 402.805 654.683 c 404.324 199 | 654.683 406.367 656.109 408.551 658.691 c 410.863 661.421 412.75 662.698 200 | 414.488 662.702 c 420.211 662.714 421.387 656.741 416.188 654.066 c 414.402 201 | 653.148 412.633 651.917 412.258 651.331 c 410.691 648.894 412.91 648.859 202 | 419.168 651.222 c 424.895 653.386 426.004 653.534 427.223 652.312 c 429.281 203 | 650.245 427.848 646.894 424.637 646.273 c 423.152 645.987 418.617 645.484 204 | 414.562 645.155 c 407.32 644.566 399.117 641.452 395.652 637.976 c 393.398 205 | 635.714 395.266 634.98 398.512 636.851 c 401.117 638.351 402.941 637.671 206 | 400.453 636.128 c 399.906 635.788 398.992 634.632 398.418 633.562 c 397.598 207 | 632.019 397.703 631.609 398.922 631.609 c 399.77 631.609 401.816 633.816 208 | 403.473 636.515 c 406.613 641.64 410.02 643.499 412.223 641.288 c 414.098 209 | 639.405 412.746 636.929 409.156 635.671 c 405.512 634.398 401.445 630.839 210 | 401.445 628.929 c 401.445 626.905 403.148 627.335 404.863 629.792 c 406.754 211 | 632.499 408.355 631.3 406.609 628.491 c 405.914 627.378 405.605 625.655 212 | 405.922 624.659 c 406.312 623.417 405.664 622.3 403.863 621.116 c 402.004 213 | 619.894 401.543 619.073 402.297 618.316 c 403.051 617.562 403.785 617.605 214 | 404.812 618.46 c 406.566 619.921 407.676 618.554 406.395 616.515 c 404.566 215 | 613.62 405.332 612.726 409.191 613.241 c 412.043 613.624 413.598 613.222 216 | 415.688 611.569 c 420.625 607.663 418.66 600.019 412.891 600.679 c 410.457 217 | 600.956 409.883 601.534 409.605 603.991 c 409.246 607.144 405.945 612.55 218 | 404.375 612.55 c 403.863 612.55 403.445 609.46 403.445 605.683 c 403.445 219 | 598.589 402.5 596.714 398.145 595.159 c 396.754 594.663 396.004 595.319 220 | 394.883 598.015 c h 221 | 396.797 603.276 m 397.668 604.691 396.223 609.542 394.93 609.542 c 393.551 222 | 609.542 391.23 604.077 392.199 603.105 c 393.039 602.261 396.246 602.382 223 | 396.797 603.276 c h 224 | 402.742 646.757 m 403.496 647.964 403.191 648.917 401.512 650.605 c 398.883 225 | 653.245 398.91 653.265 398.02 648.335 c 397.379 644.776 397.492 644.519 226 | 399.535 644.823 c 400.75 645.003 402.191 645.874 402.742 646.757 c h 227 | 409.371 653.312 m 410.508 654.769 411.441 656.347 411.441 656.823 c 411.441 228 | 658.632 408.605 657.593 407.059 655.218 c 403.922 650.417 405.852 648.823 229 | 409.371 653.312 c h 230 | 214.914 599.761 m 213.449 602.105 211.418 605.245 210.402 606.741 c 208.055 231 | 610.202 208.074 610.874 210.492 609.577 c 213.383 608.023 216.555 608.3 232 | 216.555 610.105 c 216.555 611.011 215.816 611.581 214.805 611.456 c 213.844 233 | 611.335 212.344 611.554 211.477 611.937 c 210.609 612.319 208.68 612.167 234 | 207.191 611.597 c 204.832 610.698 204.625 610.292 205.59 608.48 c 206.457 235 | 606.855 206.352 605.859 205.105 603.956 c 202.848 600.495 200.562 600.796 236 | 200.562 604.558 c 200.562 606.335 199.938 607.835 199.062 608.175 c 196.402 237 | 609.198 192.527 607.558 191.555 604.999 c 190.48 602.155 188.414 601.812 238 | 186.141 604.093 c 184.316 605.925 184.156 609.409 185.629 615.058 c 187.48 239 | 622.14 187.406 622.038 189.418 620.21 c 191.863 617.987 192.836 618.148 240 | 192.047 620.64 c 191.539 622.241 191.781 622.64 193.125 622.394 c 195.914 241 | 621.886 195.902 624.284 193.109 624.987 c 189.305 625.948 190.039 628.273 242 | 194.816 630.398 c 200.5 632.925 201.59 634.495 201.848 640.484 c 202.078 243 | 645.937 200.887 648.109 198.23 647.085 c 196.191 646.3 196.109 644.968 244 | 197.973 643.093 c 200.273 640.784 198.648 637.792 193.09 634.089 c 187.453 245 | 630.335 186.836 630.151 184.598 631.573 c 183.406 632.331 183.977 633.308 246 | 187.598 636.706 c 191.922 640.769 191.949 642.991 187.645 640.679 c 184.664 247 | 639.077 180.711 640.468 179.043 643.71 c 177.273 647.14 178.188 647.987 248 | 184.07 648.378 c 187.996 648.64 202.82 655.359 209.664 659.976 c 223.113 249 | 669.05 230.449 670.456 230.531 663.98 c 230.551 662.155 220.797 657.48 250 | 218.496 658.21 c 216.395 658.882 205.637 652.972 205.586 651.12 c 205.555 251 | 649.89 207.598 647.659 208.758 647.659 c 209.195 647.659 209.559 648.737 252 | 209.559 650.05 c 209.559 651.683 210.27 652.636 211.805 653.046 c 218.297 253 | 654.792 222.848 652.425 221.922 647.776 c 221.543 645.874 221.988 644.562 254 | 223.469 643.218 c 225.973 640.944 226.035 639.921 223.934 635.691 c 222.16 255 | 632.12 221.879 627.03 222.48 609.202 c 222.801 599.722 222.598 597.144 256 | 221.469 596.425 c 218.898 594.792 217.609 595.448 214.914 599.761 c h 257 | 193.641 610.819 m 193.516 612.019 192.148 611.788 191.719 610.495 c 191.496 258 | 609.831 191.855 609.472 192.516 609.691 c 193.176 609.913 193.684 610.421 259 | 193.641 610.819 c h 260 | 207.059 616.562 m 206.574 617.347 206 617.405 205.332 616.737 c 204.785 261 | 616.187 204.66 615.206 205.059 614.558 c 205.543 613.773 206.117 613.714 262 | 206.785 614.382 c 207.332 614.933 207.457 615.913 207.059 616.562 c h 263 | 197.02 615.491 m 198.043 617.148 195.918 617.546 193.965 616.062 c 192.129 264 | 614.667 192.141 614.62 194.258 614.589 c 195.461 614.569 196.707 614.976 265 | 197.02 615.491 c h 266 | 216.555 618.511 m 216.555 620.132 216.102 621.737 215.555 622.081 c 214.957 267 | 622.448 214.555 621.253 214.555 619.128 c 214.555 617.167 215.004 615.558 268 | 215.555 615.558 c 216.102 615.558 216.555 616.886 216.555 618.511 c h 269 | 200.637 620.851 m 200.512 622.05 199.141 621.819 198.715 620.526 c 198.492 270 | 619.862 198.852 619.503 199.512 619.722 c 200.172 619.944 200.68 620.452 271 | 200.637 620.851 c h 272 | 211.555 621.577 m 211.555 623.913 211.547 623.913 207.906 622.523 c 205.68 273 | 621.675 205.418 621.276 206.594 620.534 c 209.141 618.917 211.555 619.425 274 | 211.555 621.577 c h 275 | 201.562 625.53 m 201.562 626.05 201.113 626.753 200.562 627.097 c 200.012 276 | 627.437 199.562 627.011 199.562 626.151 c 199.562 625.292 200.012 624.589 277 | 200.562 624.589 c 201.113 624.589 201.562 625.011 201.562 625.53 c h 278 | 207.559 626.593 m 207.559 627.148 207.109 627.597 206.559 627.597 c 206.008 279 | 627.597 205.559 627.148 205.559 626.593 c 205.559 626.042 206.008 625.593 280 | 206.559 625.593 c 207.109 625.593 207.559 626.042 207.559 626.593 c h 281 | 216.555 628.683 m 216.555 631.128 214.219 630.784 213.73 628.265 c 213.539 282 | 627.276 214.051 626.593 214.98 626.593 c 215.906 626.593 216.555 627.452 283 | 216.555 628.683 c h 284 | 211.555 631.609 m 211.555 632.163 210.656 632.612 209.559 632.612 c 208.457 285 | 632.612 207.559 632.163 207.559 631.609 c 207.559 631.058 208.457 630.609 286 | 209.559 630.609 c 210.656 630.609 211.555 631.058 211.555 631.609 c h 287 | 217.051 635.12 m 217.051 637.28 215.621 637.956 213.668 636.714 c 212.484 288 | 635.964 212.484 635.605 213.668 634.265 c 215.406 632.296 217.051 632.71 289 | 217.051 635.12 c h 290 | 212.828 640.71 m 217.453 644.538 217.516 645.655 213.113 645.655 c 209.266 291 | 645.655 209.074 645.472 208.098 640.89 c 207.23 636.835 208.102 636.804 292 | 212.828 640.71 c h 293 | 128.227 600.8 m 127.195 601.558 126.262 603.929 125.957 606.566 c 125.109 294 | 613.921 125.109 613.921 118.793 609.253 c 109.316 602.253 98.121 600.542 295 | 98.121 606.093 c 98.121 607.441 99.188 608.167 102.031 608.761 c 112.367 296 | 610.917 125.305 623.241 132.859 638.132 c 138.129 648.515 140.203 653.585 297 | 141.551 659.37 c 142.934 665.308 144.477 666.409 147.484 663.597 c 148.641 298 | 662.515 149.59 661.53 149.59 661.409 c 149.59 661.288 150.004 659.753 150.504 299 | 657.991 c 151.281 655.28 151.051 654.37 148.98 651.98 c 144.109 646.359 300 | 144.684 643.757 152.543 635.788 c 155.344 632.948 157.535 631.605 159.375 301 | 631.593 c 165.98 631.558 166.078 627.913 159.559 624.573 c 152.633 621.026 302 | 150.691 621.933 147.234 630.316 c 145.594 634.292 143.684 637.765 142.988 303 | 638.034 c 141.922 638.444 136.598 631.062 136.598 629.175 c 136.598 628.136 304 | 140.172 628.577 141.355 629.761 c 142.23 630.64 142.883 630.612 144.051 305 | 629.64 c 146.699 627.433 145.762 625.593 140.93 623.511 c 137.234 621.925 306 | 136.094 621.773 135.461 622.796 c 134.402 624.495 132.02 623.007 129.785 307 | 619.257 c 128.18 616.558 128.195 616.362 130.098 614.952 c 131.898 613.616 308 | 132.176 613.671 132.996 615.523 c 133.5 616.655 134.855 617.566 136.039 309 | 617.566 c 137.215 617.566 139.926 618.464 142.07 619.558 c 145.691 621.413 310 | 146.094 621.437 147.777 619.905 c 150.16 617.741 150.082 614.421 147.594 311 | 612.28 c 145.211 610.234 145.055 608.96 147.094 608.175 c 148.988 607.444 312 | 149.023 604.816 147.164 602.948 c 145.359 601.136 135.992 600.995 135.223 313 | 602.769 c 134.848 603.628 134.156 603.316 133.016 601.765 c 131.094 599.151 314 | 130.609 599.05 128.227 600.8 c h 315 | 137.023 608.066 m 138.883 610.909 138.379 612.55 135.648 612.55 c 133.48 316 | 612.55 132.523 610.558 133.285 607.632 c 134.008 604.862 135.012 604.976 317 | 137.023 608.066 c h 318 | 439.98 602.456 m 437.832 604.839 438.777 606.734 441.746 605.984 c 444.188 319 | 605.37 450.902 607.831 453.773 610.394 c 455.973 612.359 459.414 618.847 320 | 459.414 621.038 c 459.414 621.886 458.898 622.581 458.266 622.581 c 456.938 321 | 622.581 446.797 615.98 445.906 614.53 c 444.969 613.007 440.812 613.382 322 | 439.375 615.116 c 438.465 616.218 438.355 617.452 439.004 619.276 c 440.008 323 | 622.105 440.91 622.71 446.922 624.589 c 452.84 626.441 458.934 629.319 324 | 460.223 630.878 c 461.512 632.437 463.242 651.933 462.715 658.964 c 462.426 325 | 662.823 462.715 663.804 464.395 664.706 c 466.066 665.605 466.859 665.355 326 | 468.914 663.296 c 471.898 660.3 472.152 655.714 469.926 645.151 c 467.488 327 | 633.605 467.926 632.933 475.637 636.347 c 478.484 637.609 479.691 638.831 328 | 480.098 640.862 c 480.762 644.21 480.73 644.206 484.438 641.452 c 489.152 329 | 637.956 488.227 633.753 482.398 632.187 c 474.547 630.077 466.41 626.163 330 | 466.41 624.495 c 466.41 623.519 467.297 622.433 468.379 622.089 c 469.465 331 | 621.745 471.961 619.573 473.934 617.261 c 478.641 611.741 480.852 610.62 332 | 487.148 610.581 c 490.035 610.558 492.395 610.148 492.395 609.663 c 492.395 333 | 609.183 490.648 606.925 488.512 604.648 c 481.785 597.48 478.121 599.12 334 | 471.395 612.335 c 469.086 616.866 466.902 620.573 466.539 620.573 c 466.176 335 | 620.573 465.102 618.378 464.152 615.691 c 462.457 610.905 455.445 602.851 336 | 451.664 601.347 c 447.969 599.878 441.773 600.464 439.98 602.456 c h 337 | 312.055 609.765 m 310.184 612.444 310.016 616.487 311.75 616.987 c 312.434 338 | 617.187 315.617 617.929 318.82 618.64 c 324.414 619.878 324.938 620.28 339 | 332.062 628.757 c 340.41 638.687 342.074 643.023 335.305 637.206 c 330.438 340 | 633.023 327.645 632.718 323.895 635.952 c 321.719 637.831 321.324 638.819 341 | 321.867 640.999 c 322.516 643.589 322.758 643.683 327.266 643.081 c 331.402 342 | 642.534 332.836 642.901 338.875 646.062 c 347.543 650.601 349.062 650.609 343 | 351.191 646.128 c 352.871 642.589 l 345.676 635.319 l 338.238 627.804 336.664 344 | 624.886 340.73 626.159 c 341.969 626.546 343.867 627.48 344.953 628.234 345 | c 347.512 630.015 348.977 629.964 350.902 628.03 c 353.52 625.401 351.297 346 | 622.948 345.621 622.194 c 342.91 621.831 340.176 620.913 339.547 620.151 347 | c 338.918 619.39 337.34 618.499 336.039 618.171 c 334.742 617.843 331.656 348 | 615.316 329.184 612.554 c 324.812 607.675 324.527 607.534 319.148 607.534 349 | c 314.559 607.534 313.344 607.917 312.055 609.765 c h 350 | 505.375 617.816 m 504.285 619.609 503.395 621.851 503.391 622.8 c 503.391 351 | 624.331 511.609 634.667 513.422 635.413 c 514.961 636.046 515.297 632.331 352 | 513.883 630.304 c 511.719 627.202 512.027 626.288 514.98 627.03 c 516.406 353 | 627.39 517.395 627.327 517.176 626.89 c 516.953 626.452 516.004 624.398 354 | 515.062 622.323 c 512.961 617.694 510.367 614.558 508.648 614.558 c 507.938 355 | 614.558 506.465 616.023 505.375 617.816 c h 356 | 103.352 622.866 m 102.25 624.558 101.918 627.546 102.094 634.269 c 102.43 357 | 647.069 103.199 647.917 109 641.921 c 111.391 639.452 112.613 637.245 112.613 358 | 635.401 c 112.613 631.862 113.738 631.855 115.438 635.378 c 117.777 640.23 359 | 117.848 640.636 116.371 640.636 c 114.98 640.636 110.859 644.405 111.703 360 | 644.905 c 115.488 647.163 122.918 650.667 123.918 650.667 c 125.789 650.667 361 | 130.602 645.37 130.602 643.312 c 130.602 642.359 129.012 640.179 127.07 362 | 638.468 c 123.73 635.523 123.629 635.253 125.211 633.499 c 126.543 632.019 363 | 126.637 631.351 125.664 630.175 c 123.93 628.077 117.938 626.292 115.059 364 | 627.019 c 113.609 627.382 112.613 627.198 112.613 626.566 c 112.613 624.995 365 | 107.938 620.573 106.277 620.573 c 105.492 620.573 104.176 621.605 103.352 366 | 622.866 c h 367 | 269.172 648.128 m 267.156 649.659 267.727 651.675 270.18 651.675 c 272.613 368 | 651.675 278.656 654.737 283.016 658.183 c 288.625 662.62 289.121 662.843 369 | 291.84 662.159 c 294.371 661.523 296.98 657.269 295.91 655.526 c 295.129 370 | 654.257 286.891 650.671 284.758 650.671 c 283.484 650.671 283.617 651.151 371 | 285.414 653.073 c 288.715 656.597 286.133 657.456 282.641 653.995 c 278.672 372 | 650.066 273.848 646.651 272.312 646.691 c 271.602 646.706 270.188 647.355 373 | 269.172 648.128 c h 374 | 276.227 660.691 m 276.555 661.956 276.156 662.909 275.133 663.304 c 272.043 375 | 664.495 273.32 667.347 277.512 668.609 c 285.633 671.05 288.781 665.093 376 | 281.559 660.952 c 276.715 658.175 275.555 658.116 276.227 660.691 c h 377 | 276.227 660.691 m f 378 | Q Q 379 | showpage 380 | %%Trailer 381 | end restore 382 | %%EOF 383 | -------------------------------------------------------------------------------- /front/cover.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \hitsetup{ 4 | %****************************** 5 | % 注意: 6 | % 1. 配置里面不要出现空行 7 | % 2. 不需要的配置信息可以删除 8 | %****************************** 9 | % 10 | %===== 11 | % 秘级 12 | %===== 13 | statesecrets={公开}, 14 | natclassifiedindex={TM301.2}, 15 | intclassifiedindex={62-5}, 16 | % 17 | %========= 18 | % 中文信息 19 | %========= 20 | ctitleone={局部多孔质气体静压},%本科生封面使用 21 | ctitletwo={轴承关键技术的研究},%本科生封面使用 22 | ctitlecover={局部多孔质气体静压轴承关键技术的研究},%放在封面中使用,自由断行 23 | ctitle={局部多孔质气体静压轴承关键技术的研究},%放在原创性声明中使用 24 | csubtitle={一条副标题}, %一般情况没有,可以注释掉 25 | cxueke={工学}, 26 | csubject={机械制造及其自动化}, 27 | caffil={机电工程学院}, 28 | cauthor={于冬梅}, 29 | csupervisor={某某某教授}, 30 | cassosupervisor={某某某教授}, % 副指导老师 31 | ccosupervisor={某某某教授}, % 联合指导老师 32 | % 日期自动使用当前时间,若需指定按如下方式修改: 33 | %cdate={超新星纪元}, 34 | cstudentid={9527}, 35 | cstudenttype={同等学力人员}, %非全日制教育申请学位者 36 | %(同等学力人员)、(工程硕士)、(工商管理硕士)、 37 | %(高级管理人员工商管理硕士)、(公共管理硕士)、(中职教师)、(高校教师)等 38 | % 39 | % 40 | %========= 41 | % 英文信息 42 | %========= 43 | etitle={Research on key technologies of partial porous externally pressurized gas bearing}, 44 | esubtitle={This is the sub title}, 45 | exueke={Engineering}, 46 | esubject={Computer Science and Technology}, 47 | eaffil={\emultiline[t]{School of Mechatronics Engineering \\ Mechatronics Engineering}}, 48 | eauthor={Yu Dongmei}, 49 | esupervisor={Professor XXX}, 50 | eassosupervisor={XXX}, 51 | % 日期自动生成,若需指定按如下方式修改: 52 | edate={December, 2017}, 53 | estudenttype={Master of Art}, 54 | % 55 | % 关键词用“英文逗号”分割 56 | ckeywords={\TeX, \LaTeX, CJK, 嗨!, thesis}, 57 | ekeywords={\TeX, \LaTeX, CJK, template, thesis}, 58 | } 59 | 60 | \begin{cabstract} 61 | 62 | 摘要的字数(以汉字计),硕士学位论文一般为500 $\sim$ 1000字,博士学位论文为1000 $\sim$ 2000字, 63 | 均以能将规定内容阐述清楚为原则,文字要精练,段落衔接要流畅。摘要页不需写出论文题目。 64 | 英文摘要与中文摘要的内容应完全一致,在语法、用词上应准确无误,语言简练通顺。 65 | 留学生的英文版博士学位论文中应有不少于3000字的“详细中文摘要”。 66 | 67 | 关键词是为了文献标引工作、用以表示全文主要内容信息的单词或术语。关键词不超过 5 68 | 个,每个关键词中间用分号分隔。(模板作者注:关键词分隔符不用考虑,模板会自动处 69 | 理。英文关键词同理。) 70 | \end{cabstract} 71 | 72 | \begin{eabstract} 73 | An abstract of a dissertation is a summary and extraction of research work 74 | and contributions. Included in an abstract should be description of research 75 | topic and research objective, brief introduction to methodology and research 76 | process, and summarization of conclusion and contributions of the 77 | research. An abstract should be characterized by independence and clarity and 78 | carry identical information with the dissertation. It should be such that the 79 | general idea and major contributions of the dissertation are conveyed without 80 | reading the dissertation. 81 | 82 | An abstract should be concise and to the point. It is a misunderstanding to 83 | make an abstract an outline of the dissertation and words ``the first 84 | chapter'', ``the second chapter'' and the like should be avoided in the 85 | abstract. 86 | 87 | Key words are terms used in a dissertation for indexing, reflecting core 88 | information of the dissertation. An abstract may contain a maximum of 5 key 89 | words, with semi-colons used in between to separate one another. 90 | \end{eabstract} 91 | -------------------------------------------------------------------------------- /front/custom_definition.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %在下面添加自定义宏包、命令 3 | 4 | %------------以下是自定义添加的宏包(下面为示例,可删除)------------------ 5 | \usepackage{leftidx} %左上标 6 | \usepackage{multirow} %表格多行合并 7 | \usepackage{slashed} % 场论slash 8 | \usepackage{cancel} 9 | \usepackage{setspace} %用于调整多行公式间距, \begin{spacing}{1.6} \begin{equation}..\end{equation}\end{spacing} !!!caution:使用宏包同时也会改变表格的行距需在每个表格\begin{table}后添加:\renewcommand\arraystretch{1.55} 10 | 11 | 12 | 13 | 14 | 15 | 16 | %------------以下是自定义添加的命令(下面为示例,可删除)------------------ 17 | 18 | %重新定义section和subsection标号格式,去掉Chapter继承标号,因为开题等报告没有Chapter层级 19 | %\renewcommand\thesection{\arabic {section}.} 20 | %\renewcommand\thesubsection{\thesection \arabic {subsection}} 21 | 22 | %-------罗马数字定义------- 23 | \makeatletter 24 | \newcommand{\rmnum}[1]{\romannumeral #1} 25 | \newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral #1@} 26 | \makeatother 27 | 28 | 29 | %---------正体字母定义------------ 30 | \newcommand{\ud}{\mathrm{d}} 31 | \newcommand{\ue}{\mathrm{e}} 32 | \newcommand{\ui}{\mathrm{i}} 33 | 34 | %---------度°符号定义------------- 35 | \def\degree{\ensuremath{{}^{\circ}}} 36 | 37 | %---------tabular行距------------ 38 | %\renewcommand{\arraystretch}{1.25} 39 | 40 | -------------------------------------------------------------------------------- /front/denotation.tex: -------------------------------------------------------------------------------- 1 | \begin{denotation} 2 | \begin{table}[h]%此处最好是h 3 | \caption{国际单位制中具有专门名称的导出单位} 4 | \vspace{0.5em}\centering\wuhao 5 | \begin{tabular}{ccccc} 6 | \toprule[1.5pt] 7 | 量的名称&单位名称&单位符号&其它表示实例\\ 8 | \midrule[1pt] 9 | 频率&赫[兹]&Hz&s-1\\ 10 | \bottomrule[1.5pt] 11 | \end{tabular} 12 | \end{table} 13 | \end{denotation} 14 | -------------------------------------------------------------------------------- /front/reportcover.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %开题/中期等报告用的封面页 3 | \hitsetup{ 4 | %****************************** 5 | % 注意: 6 | % 1. 配置里面不要出现空行 7 | % 2. 不需要的配置信息可以删除 8 | %****************************** 9 | % 10 | %===== 11 | % 秘级 12 | %===== 13 | % 14 | %========= 15 | % 中文信息 16 | %========= 17 | ctitleone={局部多孔质气体静压局部多孔质气体静压}, %论文题目,第一行此处最多12个字,多出的字放在\ctitletwo 18 | ctitletwo={轴承关键技术的研究}, %选填项,论文题目第二行,第一行放不下的文字放在这里 19 | csubject={机械制造及其自动化}, 20 | cclassid={1604104}, %班号,威海校区特有,仅选择威海校区时有效 21 | caffil={机电工程学院}, 22 | cauthor={于冬梅}, 23 | csupervisor={某某某教授}, 24 | % ccosupervisor={某某某教授}, % 联合指导老师 25 | % 日期自动使用当前时间,若需指定按如下方式修改: 26 | cdate={超新星纪元}, 27 | cstudentid={9527}, 28 | %cstudenttype={同等学力人员}, %非全日制教育申请学位者 29 | %(同等学力人员)、(工程硕士)、(工商管理硕士)、 30 | %(高级管理人员工商管理硕士)、(公共管理硕士)、(中职教师)、(高校教师)等 31 | % 32 | % 33 | %配置 34 | %\renewcommand\thesection{\arabic {section}.} 35 | %\renewcommand\thesubsection{\thesection \arabic {subsection}} 36 | %\setcounter{page}{0} 37 | } -------------------------------------------------------------------------------- /front/硕士学位论文中期封面样例.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/front/硕士学位论文中期封面样例.docx -------------------------------------------------------------------------------- /hithesis.ins: -------------------------------------------------------------------------------- 1 | %% 2 | %% Copyright (C) 2017- by Chu Yanshuo 3 | %% 4 | %% This file is part of the hithesis package project. 5 | %% --------------------------------------------------- 6 | %% 7 | %% This file may be distributed and/or modified under the 8 | %% conditions of the LaTeX Project Public License, either version 1.3a 9 | %% of this license or (at your option) any later version. 10 | %% The latest version of this license is in: 11 | %% 12 | %% http://www.latex-project.org/lppl.txt 13 | %% 14 | %% and version 1.3a or later is part of all distributions of LaTeX 15 | %% version 2004/10/01 or later. 16 | %% 17 | % %2018/12/19 start a new branch hithesis-alpha by Tan 18 | %% Base on original v2.0.6, creating v2.0.6a 19 | % %New add proposal/midterm report template. 20 | %% 21 | 22 | \input docstrip 23 | 24 | \askforoverwritefalse 25 | %\askonceonly 26 | \showprogress 27 | \keepsilent 28 | 29 | \usedir{tex/latex/hithesis} 30 | 31 | \preamble 32 | 33 | This is a generated file. 34 | 35 | Copyright (C) 2017-\the\year by Chu Yanshuo 36 | 37 | This file may be distributed and/or modified under the 38 | conditions of the LaTeX Project Public License, either version 1.3a 39 | of this license or (at your option) any later version. 40 | The latest version of this license is in: 41 | 42 | http://www.latex-project.org/lppl.txt 43 | 44 | and version 1.3a or later is part of all distributions of LaTeX 45 | version 2004/10/01 or later. 46 | 47 | To produce the documentation run the original source files ending with `.dtx' 48 | through LaTeX. 49 | 50 | \endpreamble 51 | 52 | \declarepreamble\cfgpreamble 53 | 54 | This is a generated file. 55 | 56 | Copyright (C) 2017-\the\year by Chu Yanshuo 57 | 58 | This file may be distributed and/or modified under the 59 | conditions of the LaTeX Project Public License, either version 1.3a 60 | of this license or (at your option) any later version. 61 | The latest version of this license is in: 62 | 63 | http://www.latex-project.org/lppl.txt 64 | 65 | and version 1.3a or later is part of all distributions of LaTeX 66 | version 2004/10/01 or later. 67 | 68 | This is the configuration file of the hithesis package with LaTeX2e. 69 | 70 | \endpreamble 71 | \declarepreamble\istpreamble 72 | 73 | This is a generated file. 74 | 75 | Copyright (C) 2017-\the\year by Chu Yanshuo 76 | 77 | This file may be distributed and/or modified under the 78 | conditions of the LaTeX Project Public License, either version 1.3a 79 | of this license or (at your option) any later version. 80 | The latest version of this license is in: 81 | 82 | http://www.latex-project.org/lppl.txt 83 | 84 | and version 1.3a or later is part of all distributions of LaTeX 85 | version 2004/10/01 or later. 86 | 87 | This is the configuration file of the hithesis package with LaTeX2e. 88 | 89 | \endpreamble 90 | 91 | \generate{ 92 | \file{\jobname.cls}{\from{\jobname.dtx}{cls}} 93 | \usepreamble\cfgpreamble 94 | \file{\jobname.cfg}{\from{\jobname.dtx}{cfg}} 95 | \usepreamble\istpreamble 96 | \file{\jobname.ist}{\from{\jobname.dtx}{ist}} 97 | \usepreamble\defaultpreamble\usepostamble\defaultpostamble 98 | \file{dtx-style.sty}{\from{\jobname.dtx}{dtx-style}}} 99 | 100 | \edef\epspreamble{\perCent!PS-Adobe-3.0 EPSF-3.0} 101 | \generate{\usepreamble\epspreamble 102 | \usepostamble\empty 103 | \file{figures/hitlogo.eps}{\from{\jobname.dtx}{hitlogo}} 104 | \file{figures/bthesistitle.eps}{\from{\jobname.dtx}{bthesistitle}} 105 | \file{wct1.eps}{\from{\jobname.dtx}{wct1}} 106 | \file{wct5.eps}{\from{\jobname.dtx}{wct5}} 107 | \file{wct10.eps}{\from{\jobname.dtx}{wct10}} 108 | \file{zfb.eps}{\from{\jobname.dtx}{zfb}}} 109 | 110 | \ifToplevel{% 111 | \Msg{***********************************************************} 112 | \Msg{*} 113 | \Msg{* To finish the installation you have to move the following} 114 | \Msg{* files into a directory searched by TeX:} 115 | \Msg{*} 116 | \Msg{* The recommended directory is TEXMF/tex/latex/hithesis} 117 | \Msg{*} 118 | \Msg{* \space\space hithesis.cls} 119 | \Msg{* \space\space hithesis.cfg} 120 | \Msg{* \space\space hithesis.ist} 121 | \Msg{* \space\space figures/hitlogo.eps} 122 | \Msg{* \space\space figures/bthesistitle.eps} 123 | \Msg{* \space\space wct1.eps} 124 | \Msg{* \space\space wct5.eps} 125 | \Msg{* \space\space wct10.eps} 126 | \Msg{* \space\space zfb.eps} 127 | \Msg{*} 128 | \Msg{* To produce the documentation run the files ending with} 129 | \Msg{* `.dtx' through LaTeX.} 130 | \Msg{*} 131 | \Msg{* Happy TeXing!} 132 | \Msg{***********************************************************}} 133 | 134 | \endbatchfile 135 | -------------------------------------------------------------------------------- /hithesis.sty: -------------------------------------------------------------------------------- 1 | \ProvidesPackage{hithesis}[2018/02/19 1.0.10 Harbin Institute of Technology 2 | Thesis Template Extension] 3 | % 此文件声明不在规范中要求的格式所使用的宏包。 4 | % (所以,格式基本上是自由发挥的。) 5 | 6 | % 根据窝工规范中对数字书写规范的规定(6): 7 | % 凡4位或4位以上的数都从个位起每3位数空半个数码(1/4汉字)。 8 | % 注意此处,除此任何空格都是错误的(包括\:\;\ 等) 9 | \RequirePackage{siunitx} 10 | \sisetup{group-minimum-digits=4, group-separator= \hspace{0.25em}} 11 | 12 | % 处理数学公式中的黑斜体的宏包 13 | \RequirePackage{bm} 14 | % 不同于 \mathcal \mathfrak 之类的英文花体字体 15 | \RequirePackage{mathrsfs} 16 | % 支持彩色 17 | \RequirePackage{xcolor} 18 | 19 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 20 | % set global color theme of thesis % 21 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 22 | 23 | \definecolor{colorzero}{rgb}{0, 0, 0} 24 | \definecolor{colorone}{rgb}{1, 0, 0} 25 | \definecolor{colortwo}{rgb}{0, 0, 1} 26 | \definecolor{colorthree}{rgb}{0, 1, 0} 27 | % 图形和表格的控制旋转 28 | \RequirePackage{rotating} 29 | 30 | 31 | 32 | % 算法的宏包,注意宏包兼容性,先后顺序为float、hyperref、algorithm(2e),否则无法 33 | % 生成算法列表。我工算法混乱问题详见hithesis文档。各个实验室设置具体方法详见 34 | % hithesis文档或者示例中给出的地址。 35 | \RequirePackage[boxed,linesnumbered,algochapter]{algorithm2e} 36 | \newcommand{\algoenname}{Algo.} %算法英文标题 37 | \newfloatlist[chapter]{algoen}{aen}{\listalgoenname}{\algoenname} 38 | \newfixedcaption{\algoencaption}{algoen} 39 | \renewcommand{\thealgoen}{\thechapter-\arabic{algocf}} 40 | \renewcommand{\@cftmakeaentitle}{\chapter*{\listalgoenname\@mkboth{\bfseries\listalgoenname}{\bfseries\listalgoenname}} 41 | } 42 | \renewcommand{\algorithmcfname}{算法} 43 | \setlength\AlCapSkip{1.2ex} 44 | \SetAlgoSkip{1pt} 45 | \renewcommand{\algocf@captiontext}[2]{\wuhao#1\algocf@typo ~ \AlCapFnt{}#2} % text of caption 46 | \expandafter\ifx\csname algocf@within\endcsname\relax% if \algocf@within doesn't exist 47 | \renewcommand\thealgocf{\@arabic\c@algocf} % and the way it is printed 48 | \else% else 49 | \renewcommand\thealgocf{\csname the\algocf@within\endcsname-\@arabic\c@algocf} 50 | \fi 51 | \renewcommand{\algocf@makecaption}[2]{%中英文双标题一定多于一行,因此去掉单行时的判断,并将\parbox中标题设置为居中 52 | \addtolength{\hsize}{\algomargin}% 53 | \sbox\@tempboxa{\algocf@captiontext{#1}{#2}}% 54 | \hskip .5\algomargin% 55 | \parbox[t]{\hsize}{\centering\algocf@captiontext{#1}{#2}}% 56 | \addtolength{\hsize}{-\algomargin}% 57 | } 58 | \newcommand{\AlgoBiCaption}[2]{%直接取出自定义的中英文标题条目加入到真正的\caption 中 59 | \caption[#1]{\protect\setlength{\baselineskip}{1.5em}#1 \protect \\ Algo. \thealgocf~~ #2} % \algoencaption{#2} 60 | \addcontentsline{aen}{algoen}{\protect\numberline{\thealgoen}{#2}} 61 | } 62 | 63 | % 排版源码所使用的环境可以有两种。listings和minted 64 | \RequirePackage{listings} 65 | \lstset{ 66 | % basicstyle=\small\ttfamily, 67 | columns=flexible, 68 | breaklines=true 69 | } 70 | 71 | % 或者使用minted 包。如果使用该包,需要在编译时加-shell-escape选项,且需要安装 72 | % pygmentatize 工具对代码进行高亮。 73 | % \RequirePackage{minted} 74 | % 75 | 76 | % 术语宏包,用来处理首次全写,之后缩写的问题 77 | \RequirePackage{glossaries} 78 | \setacronymstyle{short-long} 79 | \renewcommand*{\genacrfullformat}[2]{% 80 | \glsentrylong{#1}% 81 | } 82 | \makeglossaries 83 | % 添加术语举例 84 | 85 | \newacronym{tssbp}{树结构折筷过程}{树结构折筷过程(Tree-structured Stick-breaking process)} 86 | \def\gtssbp{\gls{tssbp}\sindex[china]{shu!树结构折筷过程}\sindex[english]{Tree-structured Stick-breaking process}} 87 | 88 | \newacronym[shortplural=SCNAs,longplural={体细胞拷贝数变异(Somatic copy number alternation,SCNA)}]{scna}{SCNA}{体细胞拷贝数变异(Somatic copy number alternation,SCNA)} 89 | \def\gscna{\gls{scna}\sindex[china]{ti!体细胞拷贝数变异}\sindex[english]{Somatic copy number alternation}\ignorespaces} 90 | \def\gscnas{\glspl{scna}\sindex[china]{ti!体细胞拷贝数变异}\sindex[english]{Somatic copy number alternation}\ignorespaces} 91 | 92 | % tikz做图宏宏包 93 | \usepackage{tikz} 94 | % 此处可以定义一些tikz全局样式 95 | % \tikzstyle{nodestyle}= [circle, fill=gray!60] 96 | % \tikzstyle{edgestyle}= [-latex] 97 | 98 | \tikzstyle{maternal}= [colorone] 99 | \tikzstyle{paternal}= [colortwo] 100 | \tikzstyle{variant}= [colorthree!80!colorzero] 101 | \tikzstyle{reference}= [colorzero] 102 | 103 | \tikzstyle{aallele}= [colorzero,rotate=90] 104 | \tikzstyle{ballele}= [colorthree!80!colorzero,rotate=90] 105 | 106 | \tikzstyle{refseg}= [colorzero,draw=colorzero, opacity=0.2] 107 | \tikzstyle{mseg}= [colorone,draw=colorone, opacity=0.2] 108 | \tikzstyle{pseg}= [colortwo,draw=colortwo, opacity=0.2] 109 | \tikzstyle{vseg}= [colorthree!80!colorzero,draw=colorthree!80!colorzero, opacity=0.6] 110 | 111 | \tikzstyle{bncell}= [draw=colorzero,opacity=0.2,line width=2pt, rounded corners=1pt] 112 | \tikzstyle{btcell}= [draw=colorone,opacity=0.6, line width=2pt, rounded corners=1pt] 113 | 114 | \tikzstyle{tncell}= [colorzero,opacity=0.9] 115 | \tikzstyle{ttcell}= [colorone,opacity=0.6] 116 | \tikzstyle{tscell}= [colorzero] 117 | \tikzstyle{refcell}= [colorzero] 118 | 119 | \tikzstyle{evolve}= [->,draw=colortwo,opacity=0.3,line width=1.5pt] 120 | \tikzstyle{fakeevolve}= [->,draw=colorzero,opacity=0.3,line width=1.5pt] 121 | 122 | \tikzstyle{refline}= [dashed,draw=colorzero,line width=1pt] 123 | \tikzstyle{tnline}= [dashed,draw=colorzero,opacity=0.3,line width=1pt] 124 | 125 | \newcommand{\gseg}[9]{% 126 | \pgfmathsetmacro{\sstartx}{#1} 127 | \pgfmathsetmacro{\slengx}{#2} 128 | \pgfmathsetmacro{\sy}{#3} 129 | \pgfmathsetmacro{\sdy}{#4} 130 | \pgfmathsetmacro{\sdx}{#5} 131 | \pgfmathsetmacro{\sdxh}{#7} 132 | \pgfmathsetmacro{\sdxt}{#8} 133 | \fill[#6](\sstartx,\sy)--(\sstartx-\sdx,\sy+\sdy)-- 134 | (\slengx+\sstartx+1.5-\sdx,\sy+\sdy)--(\slengx+\sstartx+1.5,\sy)-- 135 | (\slengx+\sstartx+1.5-\sdx,\sy-\sdy)--(\sstartx-\sdx,\sy-\sdy)--cycle; 136 | \draw[#9] (\sstartx-\sdxh,\sy) -- (\sstartx, \sy); 137 | \draw[#9] (\slengx+\sstartx+1.5, \sy) -- (\slengx+\sstartx+1.5+\sdxt,\sy); 138 | } 139 | \newcommand{\gsegr}[9]{% 140 | \pgfmathsetmacro{\sstartx}{#1} 141 | \pgfmathsetmacro{\slengx}{#2} 142 | \pgfmathsetmacro{\sy}{#3} 143 | \pgfmathsetmacro{\sdy}{#4} 144 | \pgfmathsetmacro{\sdx}{#5} 145 | \pgfmathsetmacro{\sdxh}{#7} 146 | \pgfmathsetmacro{\sdxt}{#8} 147 | \fill[#6](\sstartx-0.5,\sy)--(\sstartx+\sdx-0.5,\sy+\sdy)-- 148 | (\slengx+\sstartx+1.5+\sdx-0.5,\sy+\sdy)--(\slengx+\sstartx+1.5-0.5,\sy)-- 149 | (\slengx+\sstartx+1.5+\sdx-0.5,\sy-\sdy)--(\sstartx+\sdx-0.5,\sy-\sdy)--cycle; 150 | \draw[#9] (\sstartx-\sdxh-0.5,\sy) -- (\sstartx-0.5, \sy); 151 | \draw[#9] (\slengx+\sstartx+1.5-0.5, \sy) -- (\slengx+\sstartx+1.5+\sdxt-0.5,\sy); 152 | } 153 | 154 | \newcommand{\rcell}[2]{% 155 | \pgfmathsetmacro{\x}{#1} 156 | \pgfmathsetmacro{\y}{#2} 157 | %\node at (\x+10, \y) {Reference}; 158 | \draw (\x+1,\y) node[aallele]{A}; 159 | \draw (\x+2,\y) node[aallele]{C}; 160 | \draw (\x+3,\y) node[aallele]{T}; 161 | \draw (\x+4,\y) node[aallele]{C}; 162 | \gseg{\x}{4}{\y}{0.2}{0.5}{refseg}{1.5}{1}{reference}; 163 | } 164 | 165 | \newcommand{\ncell}[2]{% 166 | \pgfmathsetmacro{\x}{#1} 167 | \pgfmathsetmacro{\y}{#2} 168 | %\node [maternal] at (\x+8, \y) {M}; 169 | %\node [paternal] at (\x+8, \y-0.5) {P}; 170 | \draw[bncell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 171 | (\x+7,\y-1)--(\x-2,\y-1)--cycle; 172 | \draw (\x+1,\y) node[aallele]{A}; 173 | \draw (\x+2,\y) node[ballele]{G}; 174 | \draw (\x+3,\y) node[aallele]{T}; 175 | \draw (\x+4,\y) node[aallele]{C}; 176 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 177 | \draw (\x+1,\y-0.5) node[ballele]{T}; 178 | \draw (\x+2,\y-0.5) node[aallele]{C}; 179 | \draw (\x+3,\y-0.5) node[aallele]{T}; 180 | \draw (\x+4,\y-0.5) node[ballele]{A}; 181 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 182 | } 183 | 184 | \newcommand{\tcellone}[2]{% 185 | \pgfmathsetmacro{\x}{#1} 186 | \pgfmathsetmacro{\y}{#2} 187 | %\node [maternal] at (\x+8, \y) {M}; 188 | %\node [maternal] at (\x+8, \y-0.5) {M}; 189 | %\node [paternal] at (\x+8, \y-1) {P}; 190 | \draw[btcell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 191 | (\x+7,\y-1.5)--(\x-2,\y-1.5)--cycle; 192 | \draw (\x+1,\y) node[aallele]{A}; 193 | \draw (\x+2,\y) node[ballele]{G}; 194 | \draw (\x+3,\y) node[aallele]{T}; 195 | \draw (\x+4,\y) node[aallele]{C}; 196 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 197 | \draw (\x+1,\y-0.5) node[aallele]{A}; 198 | \draw (\x+2,\y-0.5) node[ballele]{G}; 199 | \draw (\x+3,\y-0.5) node[aallele]{T}; 200 | \draw (\x+4,\y-0.5) node[aallele]{C}; 201 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 202 | \draw (\x+1,\y-1) node[ballele]{T}; 203 | \draw (\x+2,\y-1) node[aallele]{C}; 204 | \draw (\x+3,\y-1) node[aallele]{T}; 205 | \draw (\x+4,\y-1) node[ballele]{A}; 206 | \gseg{\x}{4}{\y-1}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 207 | } 208 | 209 | \newcommand{\tcellthree}[2]{% 210 | \pgfmathsetmacro{\x}{#1} 211 | \pgfmathsetmacro{\y}{#2} 212 | %\node [maternal] at (\x+12, \y) {M}; 213 | %\node [paternal] at (\x+12, \y-0.5) {P}; 214 | \draw[btcell](\x-2,\y+0.5)--(\x+11,\y+0.5)-- 215 | (\x+11,\y-1)--(\x-2,\y-1)--cycle; 216 | \draw (\x+1,\y) node[aallele]{A}; 217 | \draw (\x+2,\y) node[ballele]{G}; 218 | \gseg{\x}{2}{\y}{0.2}{0.5}{mseg}{1.5}{0}{maternal}; 219 | \gseg{\x+4}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 220 | \draw (\x+7,\y) node[aallele]{T}; 221 | \draw (\x+8,\y) node[aallele]{C}; 222 | \gseg{\x+6}{2}{\y}{0.2}{0.5}{mseg}{0}{1}{maternal}; 223 | \draw (\x+1,\y-0.5) node[ballele]{T}; 224 | \draw (\x+2,\y-0.5) node[aallele]{C}; 225 | \draw (\x+3,\y-0.5) node[aallele]{T}; 226 | \draw (\x+4,\y-0.5) node[ballele]{A}; 227 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 228 | } 229 | 230 | \newcommand{\tcellfour}[2]{% 231 | \pgfmathsetmacro{\x}{#1} 232 | \pgfmathsetmacro{\y}{#2} 233 | %\node [maternal] at (\x+18, \y) {M}; 234 | %\node [paternal] at (\x+18, \y-0.5) {P}; 235 | \draw[btcell](\x-2,\y+0.5)--(\x+15,\y+0.5)-- 236 | (\x+15,\y-1)--(\x-2,\y-1)--cycle; 237 | \draw (\x+1,\y) node[aallele]{A}; 238 | \draw (\x+2,\y) node[ballele]{G}; 239 | \gseg{\x}{2}{\y}{0.2}{0.5}{mseg}{1.5}{0}{maternal}; 240 | \gseg{\x+4}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 241 | \draw (\x+7,\y) node[aallele]{T}; 242 | \gseg{\x+6}{1}{\y}{0.2}{0.5}{mseg}{0}{0}{maternal}; 243 | \gseg{\x+9}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 244 | \draw (\x+12,\y) node[aallele]{C}; 245 | \gseg{\x+11}{1}{\y}{0.2}{0.5}{mseg}{0}{1}{maternal}; 246 | \draw (\x+1,\y-0.5) node[ballele]{T}; 247 | \draw (\x+2,\y-0.5) node[aallele]{C}; 248 | \draw (\x+3,\y-0.5) node[aallele]{T}; 249 | \draw (\x+4,\y-0.5) node[ballele]{A}; 250 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 251 | } 252 | 253 | \newcommand{\tcelltwo}[2]{% 254 | \pgfmathsetmacro{\x}{#1} 255 | \pgfmathsetmacro{\y}{#2} 256 | %\node [maternal] at (\x+8, \y) {M}; 257 | %\node [maternal] at (\x+8, \y-0.5) {M}; 258 | %\node [paternal] at (\x+8, \y-1) {P}; 259 | \draw[btcell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 260 | (\x+7,\y-1.5)--(\x-2,\y-1.5)--cycle; 261 | \draw (\x+1,\y) node[aallele]{A}; 262 | \draw (\x+2,\y) node[ballele]{G}; 263 | \draw (\x+3,\y) node[aallele]{T}; 264 | \draw (\x+4,\y) node[aallele]{C}; 265 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 266 | \draw (\x+1,\y-0.5) node[aallele]{A}; 267 | \draw (\x+2,\y-0.5) node[ballele]{G}; 268 | \draw (\x+3,\y-0.5) node[aallele]{T}; 269 | \draw (\x+4,\y-0.5) node[ballele]{G}; 270 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 271 | \draw (\x+1,\y-1) node[ballele]{T}; 272 | \draw (\x+2,\y-1) node[aallele]{C}; 273 | \draw (\x+3,\y-1) node[aallele]{T}; 274 | \draw (\x+4,\y-1) node[ballele]{A}; 275 | \gseg{\x}{4}{\y-1}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 276 | } 277 | 278 | 279 | \newcommand{\tcellfive}[2]{% 280 | \pgfmathsetmacro{\x}{#1} 281 | \pgfmathsetmacro{\y}{#2} 282 | %\node [maternal] at (\x+8, \y) {M}; 283 | %\node [maternal] at (\x+8, \y-0.5) {M}; 284 | %\node [paternal] at (\x+8, \y-1) {P}; 285 | \draw[btcell](\x-2,\y+0.5)--(\x+9.5,\y+0.5)-- 286 | (\x+9.5,\y-1.5)--(\x-2,\y-1.5)--cycle; 287 | \draw (\x+1,\y) node[aallele]{A}; 288 | \draw (\x+2,\y) node[ballele]{G}; 289 | \draw (\x+3,\y) node[aallele]{T}; 290 | \draw (\x+4,\y) node[aallele]{C}; 291 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 292 | \draw (\x+1,\y-0.5) node[aallele]{A}; 293 | \draw (\x+2,\y-0.5) node[ballele]{G}; 294 | \draw (\x+3,\y-0.5) node[aallele]{T}; 295 | \draw (\x+4,\y-0.5) node[aallele]{C}; 296 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 297 | \draw (\x+1,\y-1) node[ballele]{T}; 298 | \gseg{\x}{1}{\y-1}{0.2}{0.5}{pseg}{1.5}{0}{paternal}; 299 | \draw (\x+4.5,\y-1) node[ballele]{A}; 300 | \draw (\x+5.5,\y-1) node[aallele]{T}; 301 | \draw (\x+6.5,\y-1) node[aallele]{C}; 302 | \gsegr{\x+3.5}{3}{\y-1}{0.2}{0.5}{pseg}{0.5}{1.5}{paternal}; 303 | } 304 | 305 | % 最后定义一些常见的数学公式样式。格式和内容分离,是LaTeX的巨大优势 306 | % 例如如下定义: 307 | \newcommand{\theVector}[1]{\bm{#1}} 308 | \newcommand{\theMatrix}[1]{\mathbb{#1}} 309 | \newcommand{\theSet}[1]{\mathcal{#1}} 310 | \newcommand{\theDirected}[1]{{\overrightarrow{#1}}} 311 | \newcommand{\theUndirected}[1]{{\overline{#1}}} 312 | \newcommand{\theNetwork}[1]{\mathscr{#1}} 313 | \newcommand{\theNode}[1]{{\text{#1}}} 314 | \newcommand{\theDirectedEdge}[2]{{\overrightarrow{{#1}{#2}}}} 315 | \newcommand{\theUndirectedEdge}[2]{{\overline{{#1}{#2}}}} 316 | % 如果想要修改论文中所有的表示网络的数学符号的样式,不必在正文中处处修改,只需要 317 | % 在这里修改就可以了。 318 | 319 | % 定义命令 320 | \def\cmd#1{\cs{\expandafter\cmd@to@cs\string#1}} 321 | \def\cmd@to@cs#1#2{\char\number`#2\relax} 322 | \DeclareRobustCommand\cs[1]{\texttt{\char`\\#1}} 323 | \endinput 324 | -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- 1 | # vim: set ft=perl: 2 | @default_files = ('main.tex'); 3 | 4 | $pdf_mode = 1; 5 | $bibtex_use = 2; 6 | $recorder = 1; 7 | $preview_continuous_mode = 1; 8 | $clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx"; 9 | $pdflatex = "xelatex -file-line-error --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S;cp %D %R.pdf"; 10 | $pdf_update_method = 0; 11 | 12 | @cus_dep_list = (@cus_dep_list, "idx ind 0 makenomenclature"); 13 | sub makenomenclature { 14 | system("splitindex $_[0] -- -s $_[0].ist"); } 15 | @generated_exts = (@generated_exts, 'glo'); 16 | 17 | -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %hithesis-alpha 用来测试添加开题/中期报告功能,非正式 3 | %\documentclass[newtxmath=true,newgeometry=two,capcenterlast=true,subcapcenterlast=true,openright=true,absupper=true,fontset=windowsnew,type=doctor]{hithesis} 4 | %\newcommand{\customheader}{自定义页眉} 5 | %在这里自定义页眉文字(此命令需在最前),并在documentclass中设置headersetting=customizeheader _modified by hithesis-alpha 6 | \documentclass[newtxmath=true,newgeometry=two,capcenterlast=true,subcapcenterlast=true,openright=false,absupper=true,type=master,stage=zhongqi,campus=weihai]{hithesis} 7 | 8 | %%开题/中期等报告无右翻页问题,需设置openright=false,大论文时需参照原hithesis说明自行设置(一般博士论文在双面打印才需要设置右翻页) 9 | %%如果改回大论文模板编译出现makecover错误,记得在下面修改回原模板的封面文件哦\input{front/cover} _modified by hithesis-alpha: 10 | % 此处选项中不要有空格 11 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 12 | % 必填选项 13 | % type=doctor|master|bachelor 14 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 15 | % 选填选项(选填选项的缺省值已经尽可能满足了大多数需求,除非明确知道自己有什么 16 | % 需求) 17 | % campus=shenzhen|weihai|harbin 18 | % 含义:校区选项,默认harbin 19 | % glue=true|false 20 | % 含义:由于我工规范中要求字体行距在一个闭区间内,这个选项为true表示tex自 21 | % 动选择,为false表示区间内一个最接近版心要求行数的要求的默认值,缺省值为 22 | % false。 23 | % tocfour=true|false 24 | % 含义:是否添加第四级目录,只对本科文科个别要求四级目录有效,缺省值为 25 | % false 26 | % fontset=siyuan|windowsnew|windowsold 27 | % 含义:注意这个选项视为了解决特殊问题而设置,比如用有些发行版本的linux排 28 | % 版时可能(大多数发行版不会)会遇到的字体无法载入的问题,或者字体载入之 29 | % 后出现无法复制的问题以及想要解决排版如 biang biang 面的 biang 这类中易 30 | % 宋体无法识别的汉字的问题。没有特殊的需要不推荐使用这个选项。 31 | % 32 | % 如果是安装了 windowns 字体的 linux 系统,可以填写windowsnew(win vista 33 | % 以后 的字体)或 windowsold(vista 以前)或者想用思源宋体并且是已经安装 34 | % 了思源宋体的任何系统,填写siyuan选项。缺省值为空,自动识别系统并匹配字体 35 | % 。模板版中给出的思源字体定义文件定义的思源字体的版本是Adobe版,其他字体 36 | % 是windowsnew字体。更多字体问题可以查看文件夹中说明。 37 | % tocblank=true|false 38 | % 含义:目录中第一章之前,是否加一行空白。缺省值为true。 39 | % chapterhang=true|false 40 | % 含义:目录的章标题是否悬挂居中,规范中要求章标题少于15字,所以这个选项 41 | % 有无没什么用,除了特殊需求。缺省值为true。 42 | % fulltime=true|false 43 | % 含义:是否全日制,缺省值为true。非全日制如同等学力等,要在cover中设置类 44 | % 型,封面中不同格式 45 | % subtitle=true|false 46 | % 含义:论文题目是否含有副标题,缺省值为false,如果有要在cover中设置副标 47 | % 题内容,封面中显示。 48 | % newgeometry=one|two 49 | % 含义:规范中的自相矛盾之处,版芯是否包含页眉页脚,旧方法是按照包含页眉 50 | % 页脚来设置。该选项是多选选项,如果没有这个选项,缺省值是旧模板的版芯设 51 | % 置方法,如果设置该选项one或two,分别对应两种页眉页码对应版芯线的相对位 52 | % 置。第一种是严格按照规范要求,难看。第二种微调了页眉页码位置,好一点。 53 | % debug=true|false 54 | % 含义:是否显示版芯框和行号,用来调试。默认否。 55 | % openright=true|false 56 | % 含义:博士论文是否要求章节首页必须在奇数页,此选项不在规范要求中,按个 57 | % 人喜好自行决定。 默认否。注意,窝工的默认情况是打印版博士论文要求右翻页 58 | % ,电子版要求非右翻页且无空白页。如果想DIY(或身不由己DIY)在什么地方右 59 | % 翻页,将这个选项设置为false,然后在目标位置添加`\cleardoublepage`命令即 60 | % 可。 61 | % library=true|false 62 | % 含义:是否为提交到图书馆的电子版。默认否。注意:如果设置成true,那么 63 | % openright选项将被强制转换为false。 64 | % capcenterlast=true|false 65 | % 含义:图题、表题最后一行是否居中对齐(我工规范要求居中,但不要求居中对 66 | % 齐),此选项不在规范要求中,按个人喜好自行决定。默认否。 67 | % subcapcenterlast=true|false 68 | % 含义:子图图题最后一行是否居中对齐(我工规范要求居中,但不要求居中对齐 69 | % ),此选项不在规范要求中,按个人喜好自行决定。默认否。 70 | % absupper=true|false 71 | % 含义:中文目录中的英文摘要在中文目录中的大小写样式歧义,在规范中要求首 72 | % 字母大写,在work样例中是全大写。该选项控制是否全大写。默认否。 73 | % bsmainpagenumberline=true|false 74 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 75 | % 置是否在正文中显示页码横线,默认否。 76 | % bsfrontpagenumberline=true|false 77 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 78 | % 置是否在前文中显示页码横线,默认否。 79 | % bsheadrule=true|false 80 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 81 | % 置是否显示页眉横线,默认显示。 82 | % splitbibitem=true|false 83 | % 含义:参考文献每一个条目内能不能断页,应广大刀客要求添加。默认否。 84 | % newtxmath=true|false 85 | % 含义:数学字体是否使用新罗马。默认是。 86 | 87 | %% _modified by hithesis-alpha: 88 | %%开题/中期报告需修改: 89 | % 首先依然正常选择type=doctor/master/bachelor 90 | %stage=kaiti/zhongqi 91 | % 含义:开题报告或中期报告时选填,需放在type项前,去掉该项缺省为false即原本硕博毕业论文格式(去掉该项若makecover报错,请在下方切换封面页->\input{front/cover},)。 92 | %headersetting=noheader/customizeheader 93 | % 含义:自定义页眉选项(合并原noheader选项),删除该项default默认自动显示; 94 | % 选择noheader:全局“没有页眉”,某些老师可能要求开题、中期报告没有页眉,如果在bachelor下使用,优先级高于bsheadrule; 95 | % 选择customize:自定义页眉文字,需在文件开头填写自定义文字\newcommand{\customheader}{自定义页眉},可灵活用于综合考评、实验报告等其它场景。 96 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 97 | \fancyhf{} 98 | \usepackage{hithesis} 99 | \graphicspath{{figures/}} 100 | 101 | \include{front/custom_definition} %插入自定义宏包、命令文件_t 102 | 103 | \begin{document} 104 | 105 | \frontmatter 106 | %\setcounter{page}{0} %如果使用开题/中期报告时,目录页码不正确时使用,重置页码计数器 107 | %\includepdfmerge{front/report_cover.pdf} 108 | %如果自动生成封面不满足需要,可以自行填写学校word模板封面,生成pdf文件,放入front文件夹,手动插入该pdf封面,并手动注释掉下面\input{front/reportcover} 及 \makecover 两行。 109 | \input{front/reportcover} % 开题/中期封面 110 | %\input{front/cover} % 毕业论文封面 111 | \makecover %若maketitle报错,可在上面两行切换对应的封面文件 112 | %\input{front/denotation}%物理量名称表,符合规范为主,有要求添加 113 | %\cleardoublepage %自定义在什么位置进行右翻页 114 | \tableofcontents % 中文目录,有些专业研究生开题要求添加目录,中期、本科不要求,以教学秘书发送模板要求为准, 自行添加 115 | %\cleardoublepage %自定义在什么位置进行右翻页 116 | %\tableofengcontents % 英文目录,硕本不要求,开题/中期不要求 117 | 118 | \mainmatter 119 | %\linenumbers %debug 选项 120 | %\layout %debug 选项 121 | %\floatdiagram %debug 选项 122 | %\begin{figure} %debug 选项 123 | %\currentfloat %debug 选项 124 | %\tryintextsep{\intextsep} %debug 选项 125 | %\trytopfigrule{0.5pt} %debug 选项 126 | %\trybotfigrule{1pt} %debug 选项 127 | %\setlayoutscale{0.9} %debug 选项 128 | %\floatdesign %debug 选项 129 | %\caption{Float layout with rules}\label{fig:fludf} %debug 选项 130 | %\end{figure} %debug 选项 131 | \include{body/introduction} 132 | 133 | 134 | \backmatter 135 | %硕博书序 136 | %\include{back/conclusion} % 结论 137 | \bibliographystyle{hithesis} %如果没有参考文献时候 138 | %\bibliography{reference} %开题/中期报告如果需要添加参考文献,需要注释此行,然后将此行内容添加到body文档正文末尾,否则会另起新页;对于正常毕业论文,则保留此行,去掉body文档末尾该项。 139 | %\begin{appendix}%附录 140 | %\input{back/appA.tex} 141 | %\end{appendix} 142 | %\include{back/publications} % 所发文章 143 | %\include{back/ceindex} % 索引, 根据自己的情况添加或者不添加,选择自动添加或者手工添加。 144 | %\authorization %授权 145 | %%\authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 146 | %\include{back/acknowledgements} %致谢 147 | %\include{back/resume} % 博士学位论文有个人简介 148 | 149 | %本科书序为: 150 | %\include{body/conclusion} % 结论 151 | %\bibliographystyle{hithesis} 152 | %\bibliography{reference} 153 | %\authorization %授权 154 | %%\authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 155 | %\include{body/acknowledgements} %致谢 156 | %\begin{appendix}%附录 157 | %\input{body/appendix01}%本科生翻译论文 158 | %\end{appendix} 159 | 160 | %开题/中期书序: 161 | 162 | 163 | \end{document} 164 | -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | @INPROCEEDINGS{cnproceed, 4 | author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, 5 | title = {武林高手从入门到精通}, 6 | booktitle = {第~$N$~次华山论剑}, 7 | year = 2006, 8 | address = {西安, 中国}, 9 | month = sep, 10 | language ="zh", 11 | } 12 | 13 | @ARTICLE{cnarticle, 14 | AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", 15 | TITLE = "论刘姥姥食量大如牛之现实意义", 16 | JOURNAL = "红楼梦杂谈", 17 | PAGES = "260--266", 18 | VOLUME = "224", 19 | YEAR = "1800", 20 | language ="zh", 21 | } 22 | 23 | 24 | @inbook{Lin1992, 25 | language ="zh", 26 | AUTHOR = "林来兴", 27 | TITLE = "空间控制技术", 28 | PUBLISHER = "宇航出版社", 29 | YEAR = "1992", 30 | Pages = "25-42", 31 | ADDRESS = "北京", 32 | } 33 | 34 | @book{xin1994, 35 | language ="zh", 36 | title={信息技术与信息服务国际研讨会论文集}, 37 | author={辛希孟 and 中国科学院文献信息中心 and 孟广均 and 信息学}, 38 | year={1994}, 39 | publisher={中国社会科学出版社}, 40 | pages={45-49}, 41 | address={北京}, 42 | typeoflit={C}, 43 | } 44 | 45 | @book{zhao1998, 46 | language ="zh", 47 | title={新时代的工业工程师}, 48 | author={赵耀东}, 49 | year={1998}, 50 | citedate = {1998-09-26}, 51 | address={台北}, 52 | publisher={天下文化出版社}, 53 | url={http://www.ie.nthu.edu.tw/info/ie.newie.htm(Big5)}, 54 | typeoflit={M/OL}, 55 | } 56 | 57 | @phdthesis{Chen1992, 58 | language ="zh", 59 | Author = {谌颖}, 60 | Title = {空间最优交会控制理论与方法研究}, 61 | ADDRESS = "哈尔滨", 62 | School = {哈尔滨工业大学}, 63 | Year = {1992}, 64 | pages= {8-13}, 65 | } 66 | 67 | @article{hithesis2017, 68 | title={Hi!Thesis!,Harbin Institue of Technology}, 69 | author={Yanshuo Chu}, 70 | journal={Github}, 71 | volume={001}, 72 | number={0001}, 73 | pages={000-999}, 74 | year={2017}, 75 | } 76 | -------------------------------------------------------------------------------- /templete_jpg/templete_bachelor_zhongqi_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_bachelor_zhongqi_0.jpg -------------------------------------------------------------------------------- /templete_jpg/templete_bachelor_zhongqi_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_bachelor_zhongqi_1.jpg -------------------------------------------------------------------------------- /templete_jpg/templete_bachelor_zhongqi_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_bachelor_zhongqi_2.jpg -------------------------------------------------------------------------------- /templete_jpg/templete_master_kaiti_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_master_kaiti_0.jpg -------------------------------------------------------------------------------- /templete_jpg/templete_master_kaiti_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_master_kaiti_1.jpg -------------------------------------------------------------------------------- /templete_jpg/templete_master_kaiti_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulust/hithesis-alpha/3d617f5133198f326b35ea05a8a869f27c56d5bf/templete_jpg/templete_master_kaiti_2.jpg -------------------------------------------------------------------------------- /关于字体问题.txt: -------------------------------------------------------------------------------- 1 | Linux和Mac没有隶书,解决办法如下: 2 | ubuntu解决方案 3 | 4 | 1. 首先安装对应字体,可以在windows上弄下来,也可以下载并安装。 5 | 2. 然后修改文件:/usr/share/texlive/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-fandol.def 6 | 3. 修改内部的代码: 7 | 8 | - 在 \NewDocumentCommand \kaishu { } { \CJKfamily { zhkai } } 后添加 \NewDocumentCommand \lishu { } { \CJKfamily { zhli } } 9 | - 在 \setCJKfamilyfont { zhkai } [ Extension = .otf ] { FandolKai-Regular } 后添加 \setCJKfamilyfont { zhli } { LiSu } 10 | 11 | 修改完成的文件附带在此文件夹中,可以直接替换 ctex-fontset-fandol.def 12 | 13 | Mac解决办法 14 | 15 | 安装对应字体,可以在windows上弄下来,也可以下载并安装 16 | 修改文件/usr/local/texlive/2017/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def(注意安装的texlive版本,我这里是2017): 17 | 在\setCJKfamilyfont { zhkai } { STKaiti } 下面添加 \setCJKfamilyfont { zhli } { LiSu } 18 | 在\NewDocumentCommand \kaishu { } { \CJKfamily { zhkai } } 后面添加 \NewDocumentCommand \lishu { } { \CJKfamily { zhli } } 19 | 20 | 修改完成的文件附带在此文件夹中,可以直接替换 ctex-fontset-mac.def 21 | 22 | 可以查看:https://github.com/Regulust/hithesis-alpha/issues/1 --------------------------------------------------------------------------------