├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── compile.bat ├── compile.sh ├── figure ├── controlpage.pdf ├── line.png ├── line1.png ├── line2.png ├── lstm1.png ├── lstm2.png ├── njulogo.eps ├── njuname.eps └── style.png ├── njuthesis.cfg ├── njuthesis.cls ├── sample.bib └── sample.tex /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build LaTeX document 2 | on: [push] 3 | jobs: 4 | build_latex: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Set up Git repository 8 | uses: actions/checkout@v2 9 | 10 | - name: Compile to PDF 11 | uses: HermitSun/latex-action@v3 12 | with: 13 | root_file: sample.tex 14 | latexmk_use_xelatex: true 15 | args: '-bibtex' 16 | 17 | - name: Upload PDF 18 | uses: actions/upload-artifact@v2 19 | with: 20 | name: PDF 21 | path: sample.pdf 22 | 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | 15 | ## Intermediate documents: 16 | *.dvi 17 | *.xdv 18 | *-converted-to.* 19 | # these rules might exclude image files for figures etc. 20 | # *.ps 21 | # *.eps 22 | # *.pdf 23 | 24 | ## Generated if empty string is given at "Please type another file name for output:" 25 | *.pdf 26 | 27 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 28 | *.bbl 29 | *.bcf 30 | *.blg 31 | *-blx.aux 32 | *-blx.bib 33 | *.run.xml 34 | 35 | ## Build tool auxiliary files: 36 | *.fdb_latexmk 37 | *.synctex 38 | *.synctex(busy) 39 | *.synctex.gz 40 | *.synctex.gz(busy) 41 | *.pdfsync 42 | 43 | ## Build tool directories for auxiliary files 44 | # latexrun 45 | latex.out/ 46 | 47 | ## Auxiliary and intermediate files from other packages: 48 | # algorithms 49 | *.alg 50 | *.loa 51 | 52 | # achemso 53 | acs-*.bib 54 | 55 | # amsthm 56 | *.thm 57 | 58 | # beamer 59 | *.nav 60 | *.pre 61 | *.snm 62 | *.vrb 63 | 64 | # changes 65 | *.soc 66 | 67 | # comment 68 | *.cut 69 | 70 | # cprotect 71 | *.cpt 72 | 73 | # elsarticle (documentclass of Elsevier journals) 74 | *.spl 75 | 76 | # endnotes 77 | *.ent 78 | 79 | # fixme 80 | *.lox 81 | 82 | # feynmf/feynmp 83 | *.mf 84 | *.mp 85 | *.t[1-9] 86 | *.t[1-9][0-9] 87 | *.tfm 88 | 89 | #(r)(e)ledmac/(r)(e)ledpar 90 | *.end 91 | *.?end 92 | *.[1-9] 93 | *.[1-9][0-9] 94 | *.[1-9][0-9][0-9] 95 | *.[1-9]R 96 | *.[1-9][0-9]R 97 | *.[1-9][0-9][0-9]R 98 | *.eledsec[1-9] 99 | *.eledsec[1-9]R 100 | *.eledsec[1-9][0-9] 101 | *.eledsec[1-9][0-9]R 102 | *.eledsec[1-9][0-9][0-9] 103 | *.eledsec[1-9][0-9][0-9]R 104 | 105 | # glossaries 106 | *.acn 107 | *.acr 108 | *.glg 109 | *.glo 110 | *.gls 111 | *.glsdefs 112 | *.lzo 113 | *.lzs 114 | 115 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 116 | # *.ist 117 | 118 | # gnuplottex 119 | *-gnuplottex-* 120 | 121 | # gregoriotex 122 | *.gaux 123 | *.gtex 124 | 125 | # htlatex 126 | *.4ct 127 | *.4tc 128 | *.idv 129 | *.lg 130 | *.trc 131 | *.xref 132 | 133 | # hyperref 134 | *.brf 135 | 136 | # knitr 137 | *-concordance.tex 138 | # TODO Comment the next line if you want to keep your tikz graphics files 139 | *.tikz 140 | *-tikzDictionary 141 | 142 | # listings 143 | *.lol 144 | 145 | # luatexja-ruby 146 | *.ltjruby 147 | 148 | # makeidx 149 | *.idx 150 | *.ilg 151 | *.ind 152 | 153 | # minitoc 154 | *.maf 155 | *.mlf 156 | *.mlt 157 | *.mtc[0-9]* 158 | *.slf[0-9]* 159 | *.slt[0-9]* 160 | *.stc[0-9]* 161 | 162 | # minted 163 | _minted* 164 | *.pyg 165 | 166 | # morewrites 167 | *.mw 168 | 169 | # nomencl 170 | *.nlg 171 | *.nlo 172 | *.nls 173 | 174 | # pax 175 | *.pax 176 | 177 | # pdfpcnotes 178 | *.pdfpc 179 | 180 | # sagetex 181 | *.sagetex.sage 182 | *.sagetex.py 183 | *.sagetex.scmd 184 | 185 | # scrwfile 186 | *.wrt 187 | 188 | # sympy 189 | *.sout 190 | *.sympy 191 | sympy-plots-for-*.tex/ 192 | 193 | # pdfcomment 194 | *.upa 195 | *.upb 196 | 197 | # pythontex 198 | *.pytxcode 199 | pythontex-files-*/ 200 | 201 | # tcolorbox 202 | *.listing 203 | 204 | # thmtools 205 | *.loe 206 | 207 | # TikZ & PGF 208 | *.dpth 209 | *.md5 210 | *.auxlock 211 | 212 | # todonotes 213 | *.tdo 214 | 215 | # vhistory 216 | *.hst 217 | *.ver 218 | 219 | # easy-todo 220 | *.lod 221 | 222 | # xcolor 223 | *.xcp 224 | 225 | # xmpincl 226 | *.xmpi 227 | 228 | # xindy 229 | *.xdy 230 | 231 | # xypic precompiled matrices and outlines 232 | *.xyc 233 | *.xyd 234 | 235 | # endfloat 236 | *.ttt 237 | *.fff 238 | 239 | # Latexian 240 | TSWLatexianTemp* 241 | 242 | ## Editors: 243 | # WinEdt 244 | *.bak 245 | *.sav 246 | 247 | # Texpad 248 | .texpadtmp 249 | 250 | # LyX 251 | *.lyx~ 252 | 253 | # Kile 254 | *.backup 255 | 256 | # gummi 257 | .*.swp 258 | 259 | # KBibTeX 260 | *~[0-9]* 261 | 262 | # TeXnicCenter 263 | *.tps 264 | 265 | # auto folder when using emacs and auctex 266 | ./auto/* 267 | *.el 268 | 269 | # expex forward references with \gathertags 270 | *-tags.tex 271 | 272 | # standalone packages 273 | *.sta 274 | 275 | # Makeindex log files 276 | *.lpz 277 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "latex-workshop.latex.tools": [ 3 | { 4 | "name": "xelatex", 5 | "command": "xelatex", 6 | "args": [ 7 | "-synctex=1", 8 | "-interaction=nonstopmode", 9 | "-file-line-error", 10 | "%DOCFILE%" 11 | ] 12 | }, 13 | { 14 | "name": "pdflatex", 15 | "command": "pdflatex", 16 | "args": [ 17 | "-synctex=1", 18 | "-interaction=nonstopmode", 19 | "-file-line-error", 20 | "%DOCFILE%" 21 | ] 22 | }, 23 | { 24 | "name": "bibtex", 25 | "command": "bibtex", 26 | "args": [ 27 | "%DOCFILE%" 28 | ] 29 | } 30 | ], 31 | "latex-workshop.latex.recipes": [ 32 | { 33 | "name": "xelatex", 34 | "tools": [ 35 | "xelatex" 36 | ] 37 | }, 38 | { 39 | "name": "pdflatex", 40 | "tools": [ 41 | "pdflatex" 42 | ] 43 | }, 44 | { 45 | "name": "xe->bib->xe->xe", 46 | "tools": [ 47 | "xelatex", 48 | "bibtex", 49 | "xelatex", 50 | "xelatex" 51 | ] 52 | } 53 | ] 54 | } 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NJU Thesis 2021 2 | 3 | [![njuthesis](https://img.shields.io/badge/njuthesis-latex-blue)](https://git.nju.edu.cn/nju-lug/nju-latex-templates) 4 | [![overleaf](https://img.shields.io/badge/overleaf-supported-brightgreen)](https://tex.nju.edu.cn) 5 | 6 | 南京大学本科生毕业论文LaTex模板(2021版) 7 | 8 | ## 重要事项 9 | 10 | > 该仓库符合**2021**年本科毕业论文要求,并且**不再维护❌** 11 | 12 | 因为NJU Thesis 2021所继承的模板太过古老,在维护过程中经常产生奇怪的并且难以修复的bug,所以为了模板的可持续发展,我们决定对NJU Thesis进行**重构**,项目将被挂载于[**NJU-LUG**](https://github.com/nju-lug)组织仓库下,项目名[NJUThesis](https://github.com/nju-lug/NJUThesisUndergraduate),由NJU-LUG进行维护。 13 | 14 | *** 15 | **重要提醒:希望大家实时关注模板更新,定稿前最好使用最新版本的模板!** 16 | 17 | [NJU GitLab同步镜像](https://git.nju.edu.cn/nju-lug/nju-latex-templates/NJUThesis2021) 18 | 19 | ## 使用说明 20 | 21 | ### 环境配置 22 | 23 | GitHub提供打包下载,如果GitHub速度过慢,可以去[NJU GitLab同步镜像](https://git.nju.edu.cn/nju-lug/nju-latex-templates/NJUThesis2021)下载。 24 | 25 | 推荐使用最新的**TexLive 2021**或者**MikTex 21**以避免潜在的兼容性问题。 26 | 27 | 如果要在南京大学[Overleaf](tex.nju.edu.cn)中使用,请先使用winfonts,linuxfonts和adobefonts暂时没有安装完全,会出现timeout。 28 | 29 | 下表是目前实测可用的环境。如果有其他可用环境或不可用的环境,欢迎补充。 30 | 31 | > macOS系统可以正常编译`tex`文件, 但由于字体原因, 实际输出结果会与其他环境有细微不同, 请谨慎使用. 32 | 33 | | OS | Tex | 测试情况 | 34 | | ------------ | ------------ | -------- | 35 | | Windows 10 | TexLive 2021 | ✔ | 36 | | Windows 10 | TexLive 2020 | ✔ | 37 | | Windows 10 | TexLive 2017 | ❌ | 38 | | Windows 10 | MikTex 21.2 | ✔ | 39 | | Ubuntu 20.04 | TexLive 2021 | ✔ | 40 | | Ubuntu 20.04 | TexLive 2020 | ✔ (e8502e版) | 41 | | Ubuntu 18.04 | TexLive 2017 | ❌ | 42 | | macOS Big Sur 11.3.1 | TexLive 2020 | ✔ | 43 | | tex.nju.edu.cn | Overleaf | ✔ | 44 | 45 | - Mac系统请使用为MacTex(TexLive+Texshop)-->XeLatex,Windows系统请使用TexLive(TeXworks/Vscode)-->XeLatex,其他环境下还未测试。 46 | 47 | - 点击这里下载TexLive:[TexLive下载地址][TexLive] 48 | 49 | - 点击这里下载MacTex:[MacTex下载地址][MacTex] 50 | 51 | ### 注意事项 52 | 53 | - 使用时应该采用XeLaTex->BibTex->XeLaTex->XeLaTex的顺序编译,以生成正确的参考文献目录和编号。 54 | 55 | - 编译产物为 sample.pdf。 56 | 57 | - 推荐使用 VSCode + LaTeX Workshop(插件)完成论文编写,也可以使用其他编辑器,如 texworks、texstudio。 58 | 59 | 本项目在 `.vscode/` 中附带一份乞丐版配置,可以直接使用。 60 | 61 | - 如果直接使用文本编辑器,也可以在完成编写后,执行项目根目录的编译脚本,以获取编译后的 PDF。 62 | 63 | - Windows: 64 | 65 | ```powershell 66 | .\compile.bat 67 | ``` 68 | 69 | - Linux / macOS: 70 | 71 | ```shell 72 | ./compile.sh 73 | ``` 74 | 75 | - **不同的平台需要加载的字体不同,请根据tex文件中的提示使用不同的参数**。如果遇到字体无法加载的问题请确认系统装有相应字体。不同平台下请反注释相应的代码,例如在windows下,应为: 76 | 77 | ```latex 78 | %% 如需Adobe字体请用 79 | %% 如果字体不全使用Adobe选项可能会报错 80 | %\documentclass[adobefonts, thesis]{njuthesis} 81 | %% MacOS系统请用 82 | %\documentclass[macfonts, thesis]{njuthesis} 83 | %% Windows系统请用 84 | \documentclass[winfonts, thesis]{njuthesis} 85 | %% Linux系统请用 86 | % \documentclass[linuxfonts, thesis]{njuthesis} 87 | ``` 88 | 89 | ### 常见问题 90 | 91 | 如果有其他问题,欢迎在 issue 里或加入QQ群991559926进行讨论。 92 | 93 | #### 安装与配置 94 | 95 | 1. **如何选择 TexLive / MacTex 版本** 96 | 97 | 为了避免不必要的麻烦,尽可能下载 full 版本,如 `texlive-full`。简而言之,下载大的那个。 98 | 99 | 并且,尽可能使用**最新版**(截至目前是 2021)。2020 及之前版本使用 PDF 格式的图片可能会出现加粗问题。 100 | 101 | #### 字体 102 | 103 | 1. **Ubuntu 下 缺失字体 WenQuanYi Zen Hei Mono 或 Times New Roman** 104 | 105 | 安装对应字体即可。使用以下指令下载: 106 | 107 | ``` 108 | sudo apt install fonts-wqy-zenhei ttf-mscorefonts-installer 109 | ``` 110 | 111 | 2. **macOS 下提示 Package fontspec Warning: Font "STSong" does not contain requested Script "CJK"** 112 | 113 | 忽略即可,不影响使用。 114 | 115 | #### 内容 116 | 117 | 1. **标题一行放不下怎么办 / 如何使用长标题** 118 | 119 | 使用`\titlea`、`\titleb` 和 `\titlec`,分别填入标题的一部分。举例来说,《基于A的B的设计与实现》可以按照如下方式书写。 120 | 121 | **两行标题** 122 | 123 | ```tex 124 | \titlea{基于A的B} % 第一行 125 | \titleb{的设计与实现} % 第二行 126 | ``` 127 | 128 | **三行标题** 129 | 130 | ```tex 131 | \titlea{基于A的B} % 第一行 132 | \titleb{的设计} % 第二行 133 | \titlec{与实现} % 第三行 134 | ``` 135 | 136 | 2. **使用长标题后摘要部分的题目不见了** 137 | 138 | 使用`\titlea`、`\titleb` 和 `\titlec` 的同时需要保留 `\title`。举例来说,《基于A的B的设计与实现》需要按照如下方式书写。 139 | 140 | **两行标题** 141 | 142 | ```tex 143 | \title{基于A的B的设计与实现} 144 | \titlea{基于A的B} 145 | \titleb{的设计与实现} 146 | ``` 147 | 148 | **三行标题** 149 | 150 | ```tex 151 | \title{基于A的B的设计与实现} 152 | \titlea{基于A的B} 153 | \titleb{的设计} 154 | \titlec{与实现} 155 | ``` 156 | 157 | 这样才能在摘要部分正常显示标题。 158 | 159 | 3. **使用长标题后封面内容出错** 160 | 161 | 请使用最新的模板,在某些老版本模板中会出现此问题。 162 | 163 | 4. **如何取消另页右页开始(即去除空白页)** 164 | 165 | 在cls文件约537行中有如下定义: 166 | ```tex 167 | % 不另页右页开始 168 | % \def\cleardoublepage{ 169 | % \clearpage\if@twoside \ifodd\c@page\fi\fi 170 | % } 171 | 172 | %%%%%% 173 | % 另页右页开始 174 | \def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else 175 | \hbox{}\thispagestyle{empty}\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi} 176 | %%%%% 177 | ``` 178 | 反注释对应定义即可。 179 | 180 | 5. **无法生成参考文献 / 无法正常显示参考文献** 181 | 182 | 一般是因为没有使用 bibtex进行编译,请确认按照 xelatex - bibtex - xelatex - xelatex 的顺序对 tex 文件进行编译。 183 | 184 | 可以使用 vscode 插件、IDE(如 tex studio)或项目根目录的编译脚本,以确保能正确生成参考文献。 185 | 186 | 6. **正文行距不是 1.5 倍** 187 | 188 | 可能是因为使用了旧版本,或者是直接替换了 cls。如果已经使用了旧版本,需要按如下步骤进行迁移: 189 | 190 | 1. 使用新的 cls 文件对现有的 cls 文件进行替换 191 | 192 | 2. 使用新的 tex 文件对现有的 tex 文件进行替换,或删除在tex文件中的: 193 | 194 | ```tex 195 | % 开头部分 196 | \linespread{1.25} 197 | ``` 198 | 199 | 7. **如何将封面中的“毕业论文”替换为“毕业设计”** 200 | 201 | 将 tex 文件开头的 thesis 选项替换为 design ,如下所示: 202 | 203 | ```tex 204 | %% Windows系统请用 205 | \documentclass[winfonts, design]{njuthesis} 206 | ``` 207 | 208 | 8. **使用design选项后报错** 209 | 210 | 可能是没有替换cfg和cls文件,替换即可 211 | 212 | 9. **如何在论文中展示代码** 213 | 214 | 1. 截图,然后以图片形式插入论文 215 | 2. 使用模板中的代码段示例。模板中提供了一份基础样式,如果有更多需要,可以自行修改样式。 216 | 217 | 10. **如何添加第二导师**(issue #23) 218 | 219 | 使用如下命令,会同时在封面和中文摘要中包含第二导师: 220 | 221 | ```tex 222 | \secondsupervisor{导师姓名} 223 | \secondsupervisortitle{职称} 224 | ``` 225 | 226 | 如果需要在英文摘要中包含第二导师,需要增加以下命令: 227 | 228 | ```tex 229 | \englishsecondsupervisor{Professor} 230 | ``` 231 | 232 | 可以在模板中查看具体的例子。 233 | 234 | 11. **使用PDF格式的图片内容会被加粗**(issue #24) 235 | 236 | 目前看来是 caption 宏包的 bug,升级到 texlive 2021,或者使用新版 miktex 可以解决这个问题。 237 | 238 | 11. **表格字号不是5号** 239 | 240 | 在表格中临时使用`\zihao{5}`来实现。 241 | 这是因为模板在多年以前重定义了table和tabular,并且用于封面排版,所以正文表格字号可能会显示为小四,但由于直接修改cls文件封面会出现排版问题,因此需要用户自行调整字号。 242 | 243 | 12. **图表标号(label)未加粗** 244 | 245 | 这是因为文件中只写了图表题目加粗,并未提到标号加粗,故模板未加,如果想要加粗,将cls文件中约550行处的 246 | ```tex 247 | \captionsetup[table]{position=top,textfont=songtibf} 248 | \captionsetup[figure]{position=below,textfont=songtibf} 249 | ``` 250 | 改为 251 | ```tex 252 | \captionsetup[table]{position=below,textfont=songtibf,labelfont=songtibf} 253 | \captionsetup[figure]{position=below,textfont=songtibf,labelfont=songtibf} 254 | ``` 255 | 256 | [TexLive]: https://www.tug.org/texlive/ 257 | 258 | [MacTex]:https://tug.org/mactex/ 259 | 260 | ## 鸣谢 261 | 262 | - 本模板由学长学姐的南京大学硕士博士学位论文模板改编而来。 263 | 264 | - 本版本从AnyiRao仓库fork修改而来 265 | 266 | - 原作者RAY个人主页 267 | 268 | - 原作者个人仓库 269 | 270 | ## 声明 271 | 272 | - 此模版用于生成符合南京大学学位论文排版要求和相应的国家规范、行业标准的学位论文。 273 | 274 | - 基于本科生院的论文撰写规范修改。 275 | 276 | - 限于精力未提供**详细**使用说明。 277 | 278 | - 本模板旨在为同学提供毕业论文书写的方便,如有模板问题或者版权问题,请联系作者。 279 | 280 | ## 相关项目 281 | 282 | - [南京大学科技报告XeLaTeX模板][nju-report] 283 | 284 | - [符合国家标准《GB/T 7714-2015 文后参考文献著录规则》的BibTeX样式文件][gbt7714-2015-bst] 285 | 286 | - [中文书刊排版相关标准和规范][typesetting-standard] 287 | -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 2 | bibtex sample 3 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 4 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 5 | -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 2 | bibtex sample 3 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 4 | xelatex -synctex=1 -interaction=nonstopmode -file-line-error sample 5 | -------------------------------------------------------------------------------- /figure/controlpage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/controlpage.pdf -------------------------------------------------------------------------------- /figure/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/line.png -------------------------------------------------------------------------------- /figure/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/line1.png -------------------------------------------------------------------------------- /figure/line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/line2.png -------------------------------------------------------------------------------- /figure/lstm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/lstm1.png -------------------------------------------------------------------------------- /figure/lstm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/lstm2.png -------------------------------------------------------------------------------- /figure/njulogo.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.8 (http://cairographics.org) 3 | %%CreationDate: Sat May 19 15:02:35 2018 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 0 -1 1116 1400 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 | %%EndProlog 62 | %%BeginSetup 63 | %%EndSetup 64 | %%Page: 1 1 65 | %%BeginPageSetup 66 | %%PageBoundingBox: 0 -1 1116 1400 67 | %%EndPageSetup 68 | q 0 -1 1116 1401 rectclip q 69 | 0 g 70 | 0.203 1280.599 m 0.605 1215.201 1.105 1079.502 1.406 978.798 c 1.906 793.502 71 | 2.605 683.099 3.305 675.798 c 3.504 673.599 4.004 666.002 4.305 658.798 72 | c 8.203 577.502 17.504 514.798 32.605 468.002 c 69.504 353.201 139.605 73 | 254.4 238.406 177.701 c 275.504 148.9 300.703 133.4 346.203 111.298 c 386.703 74 | 91.701 407.203 81.502 425.406 72.099 c 435.305 66.9 453.305 57.599 465.406 75 | 51.4 c 516.605 24.9 532.406 16.298 550.203 5.002 c 558.004 0.002 l 560.203 76 | 2.099 l 562.504 4.298 577.004 12.298 614.203 32.002 c 647.805 49.798 664.906 77 | 58.599 705.406 78.9 c 776.906 114.9 801.906 128.002 824.906 141.599 c 913.004 78 | 193.9 984.504 269.002 1040.605 368.298 c 1071.406 422.798 1089.605 475.4 79 | 1100.406 540.798 c 1106.906 580.798 1110.203 616.298 1112.805 676.798 c 80 | 1113.305 686.201 1113.605 773.701 1113.703 871.298 c 1113.703 968.9 1114.203 81 | 1086.4 1114.805 1132.298 c 1115.406 1178.201 1115.906 1257.099 1115.906 82 | 1307.599 c 1115.906 1399.4 l 1108.703 1395.298 l 1056.203 1365.4 981.305 83 | 1341.798 912.406 1333.298 c 869.105 1327.9 803.906 1326.798 764.906 1330.798 84 | c 683.906 1339.099 621.406 1357.002 569.703 1386.599 c 563.305 1390.298 85 | 557.906 1393.298 557.504 1393.298 c 557.203 1393.298 553.906 1391.4 550.203 86 | 1389.099 c 531.406 1377.599 498.504 1363.099 471.605 1354.4 c 436.105 1342.9 87 | 385.605 1333.298 347.406 1330.798 c 341.906 1330.4 336.305 1329.9 334.906 88 | 1329.599 c 329.805 1328.701 255.004 1328.4 241.906 1329.298 c 155.805 1335.4 89 | 74.703 1358.002 11.105 1393.701 c 5.605 1396.798 0.805 1399.298 0.406 1399.298 90 | c -0.094 1399.298 -0.094 1345.9 0.203 1280.599 c h 91 | 573.004 1347.701 m 633.105 1320.099 686.305 1307.099 769.805 1299.798 c 92 | 782.305 1298.701 830.605 1297.4 843.406 1297.798 c 870.805 1298.701 883.004 93 | 1299.4 899.406 1300.9 c 960.805 1306.4 1011.004 1318.798 1063.105 1341.4 94 | c 1070.703 1344.599 1077.605 1347.298 1078.504 1347.298 c 1080.105 1347.298 95 | 1080.203 1342.9 1079.605 1280.599 c 1079.203 1243.798 1078.906 1098.798 96 | 1078.805 958.298 c 1078.805 817.798 1078.406 692.002 1077.906 678.798 c 97 | 1072.906 547.701 1056.305 472.4 1013.906 388.798 c 984.906 331.599 948.105 98 | 281.798 900.105 235.201 c 852.504 188.9 813.504 162.9 745.406 131.798 c 99 | 736.105 127.502 706.406 113.502 679.406 100.502 c 652.504 87.599 625.906 100 | 74.9 620.406 72.298 c 614.906 69.701 598.906 61.9 584.906 55.099 c 559.406 101 | 42.701 l 542.406 50.9 l 533.004 55.4 514.203 64.599 500.406 71.298 c 467.305 102 | 87.502 418.906 110.502 384.406 126.502 c 315.105 158.701 285.305 176.701 103 | 243.906 211.099 c 228.504 224.002 190.906 261.701 177.504 277.798 c 129.605 104 | 335.4 95.105 395.502 71.703 461.798 c 54.703 510.099 43.406 572.201 39.406 105 | 639.298 c 39.105 644.502 38.504 651.298 38.105 654.298 c 37.703 657.298 106 | 37.406 744.599 37.406 848.298 c 37.406 952.002 37.004 1106.701 36.504 1192.099 107 | c 35.605 1347.298 l 38.004 1347.298 l 39.305 1347.298 42.203 1346.298 44.406 108 | 1345.201 c 56.504 1338.701 84.605 1328.099 106.406 1321.798 c 144.703 1310.9 109 | 181.305 1304.201 228.406 1299.798 c 260.906 1296.798 322.703 1296.701 351.906 110 | 1299.798 c 354.406 1300.002 359.605 1300.502 363.406 1300.798 c 411.004 111 | 1305.002 466.805 1316.798 505.703 1330.9 c 520.105 1336.099 544.906 1346.9 112 | 552.406 1351.201 c 555.203 1352.798 557.703 1354.099 558.004 1354.201 c 113 | 558.406 1354.298 565.105 1351.298 573.004 1347.701 c h 114 | 573.004 1347.701 m f 115 | 556.004 1312.201 m 552.703 1310.9 551.305 1308.798 548.906 1301.599 c 547.703 116 | 1298.099 546.305 1295.099 545.805 1294.701 c 545.203 1294.4 540.406 1293.201 117 | 535.105 1292.201 c 504.805 1286.002 479.203 1272.798 459.406 1252.9 c 444.906 118 | 1238.4 434.605 1221.599 428.004 1201.701 c 423.203 1187.4 421.805 1178.9 119 | 421.203 1161.298 c 420.105 1130.4 424.406 1114.298 433.605 1114.298 c 438.305 120 | 1114.298 440.406 1117.798 439.504 1124.099 c 438.906 1128.9 l 449.105 1132.201 121 | l 456.805 1134.599 463.004 1135.798 473.703 1136.798 c 490.406 1138.298 122 | 492.906 1139.502 492.906 1145.9 c 492.906 1150.002 491.004 1151.502 485.105 123 | 1152.002 c 479.703 1152.502 459.406 1149.4 445.703 1145.9 c 440.605 1144.599 124 | 436.004 1143.798 435.605 1144.298 c 435.105 1144.701 434.906 1146.701 435.105 125 | 1148.798 c 435.406 1152.298 435.805 1152.599 441.105 1154.9 c 450.305 1158.798 126 | 465.406 1162.201 479.305 1163.701 c 489.703 1164.701 492.504 1165.298 493.504 127 | 1166.798 c 495.805 1169.9 495.203 1173.9 492.203 1176.298 c 489.605 1178.4 128 | 488.605 1178.502 479.906 1178.002 c 470.105 1177.4 459.906 1175.4 444.703 129 | 1171.201 c 439.906 1169.9 435.805 1169.099 435.504 1169.4 c 435.203 1169.701 130 | 435.504 1172.099 436.203 1174.798 c 437.406 1179.502 437.605 1179.701 442.906 131 | 1181.502 c 455.504 1185.798 465.105 1188.201 474.406 1189.201 c 487.605 132 | 1190.701 494.203 1192.099 495.105 1193.599 c 495.504 1194.298 495.906 1196.298 133 | 495.906 1198.002 c 495.906 1206.298 485.004 1206.701 454.105 1199.701 c 134 | 447.805 1198.298 442.504 1197.298 442.305 1197.599 c 441.703 1198.201 446.004 135 | 1208.599 449.504 1215.002 c 467.406 1247.298 491.406 1266.201 525.703 1274.9 136 | c 530.906 1276.201 536.203 1277.298 537.504 1277.298 c 539.805 1277.298 137 | l 537.406 1271.599 l 529.703 1252.298 517.805 1217.798 518.305 1215.798 138 | c 518.805 1213.798 518.504 1213.599 513.805 1213.502 c 506.703 1213.4 503.906 139 | 1211.298 503.906 1206.298 c 503.906 1203.099 504.406 1202.002 506.605 1200.599 140 | c 509.004 1199.002 511.504 1198.798 529.504 1199.099 c 549.605 1199.4 l 141 | 550.305 1197.099 l 551.203 1193.502 551.004 1173.002 549.906 1171.298 c 142 | 549.004 1169.798 546.406 1169.701 523.305 1170.298 c 510.105 1170.599 506.406 143 | 1169.599 504.305 1165.502 c 502.703 1162.4 503.605 1159.502 506.703 1157.502 144 | c 509.605 1155.599 520.504 1155.201 535.703 1156.502 c 540.305 1156.798 145 | 545.605 1156.9 547.504 1156.599 c 550.906 1156.002 l 550.906 1146.298 l 146 | 550.906 1134.701 552.305 1131.9 558.004 1132.099 c 563.504 1132.201 564.906 147 | 1135.002 564.906 1145.201 c 564.906 1149.9 565.406 1154.502 565.906 1155.298 148 | c 566.703 1156.502 568.805 1156.701 578.105 1156.4 c 600.605 1155.502 606.305 149 | 1155.701 609.105 1157.502 c 612.105 1159.502 612.805 1161.701 611.703 1166.002 150 | c 610.406 1171.099 606.805 1171.701 587.305 1170.298 c 578.305 1169.701 151 | 569.605 1169.4 568.004 1169.798 c 565.105 1170.4 l 565.004 1182.298 l 564.906 152 | 1188.798 565.105 1195.4 565.504 1196.9 c 566.203 1199.599 l 583.305 1199.002 153 | l 600.703 1198.502 608.805 1199.298 610.906 1201.798 c 611.504 1202.502 154 | 612.105 1204.599 612.105 1206.4 c 612.305 1210.9 609.105 1213.298 602.805 155 | 1213.298 c 598.105 1213.298 597.906 1213.4 597.906 1216.099 c 597.906 1217.599 156 | 594.906 1226.9 591.305 1236.798 c 579.105 1270.099 576.605 1277.298 577.203 157 | 1277.9 c 577.504 1278.201 582.105 1277.298 587.504 1275.9 c 623.105 1266.9 158 | 650.004 1246.4 666.504 1215.798 c 672.906 1203.9 675.406 1202.201 680.504 159 | 1206.599 c 685.203 1210.701 683.906 1215.701 674.105 1230.798 c 658.504 160 | 1255.201 634.305 1274.701 607.203 1284.9 c 599.406 1287.9 583.105 1291.9 161 | 575.703 1292.798 c 570.004 1293.502 l 568.305 1298.201 l 565.203 1307.099 162 | 563.504 1310.502 561.504 1311.9 c 559.203 1313.502 559.203 1313.502 556.004 163 | 1312.201 c h 164 | 560.805 1277.701 m 562.004 1276.201 562.906 1274.599 562.906 1274.099 c 165 | 562.906 1273.298 576.805 1234.4 582.305 1220.099 c 584.805 1213.298 l 565.906 166 | 1213.298 l 565.906 1217.201 l 565.906 1222.502 564.504 1225.9 561.605 1227.798 167 | c 556.105 1231.298 549.906 1225.9 549.906 1217.599 c 549.906 1213.298 l 168 | 540.906 1213.298 l 536.004 1213.298 531.906 1213.599 531.906 1214.002 c 169 | 531.906 1216.298 552.406 1271.502 555.504 1277.4 c 557.305 1281.002 558.203 170 | 1281.002 560.805 1277.701 c h 171 | 560.805 1277.701 m f 172 | 230.906 1244.599 m 225.105 1241.701 217.305 1233.002 213.203 1224.599 c 173 | 209.406 1216.9 l 209.105 1197.298 l 208.805 1177.701 l 212.805 1170.798 174 | l 215.004 1167.002 217.406 1161.502 218.004 1158.599 c 219.203 1153.4 219.203 175 | 1153.201 216.406 1150.298 c 213.504 1147.298 l 200.305 1147.298 l 188.605 176 | 1147.298 186.605 1147.599 181.805 1149.701 c 171.305 1154.4 152.703 1153.9 177 | 136.504 1148.502 c 127.605 1145.599 116.703 1138.798 110.203 1132.099 c 178 | 106.504 1128.4 105.605 1126.502 103.305 1117.798 c 100.906 1108.798 100.605 179 | 1105.798 100.305 1087.798 c 100.105 1076.502 100.504 1065.201 101.105 1061.798 180 | c 102.703 1052.798 102.105 1042.4 99.805 1038.502 c 95.504 1031.099 98.406 181 | 1026.099 107.805 1024.298 c 110.906 1023.701 118.406 1021.701 124.406 1019.798 182 | c 130.504 1018.002 136.406 1016.201 137.703 1016.002 c 141.406 1015.201 183 | 146.805 1017.201 151.004 1021.002 c 154.906 1024.502 154.906 1024.599 154.906 184 | 1031.9 c 154.906 1040.9 153.203 1045.298 147.703 1051.002 c 144.406 1054.4 185 | 143.805 1055.599 144.305 1057.798 c 145.504 1062.502 149.004 1063.099 157.703 186 | 1060.002 c 162.004 1058.502 166.703 1057.298 168.203 1057.298 c 172.105 187 | 1057.298 177.504 1054.798 178.805 1052.502 c 179.406 1051.4 180.305 1048.4 188 | 180.906 1045.701 c 182.504 1038.599 188.605 1031.4 198.605 1024.599 c 207.105 189 | 1018.798 l 217.605 1019.099 l 225.406 1019.201 229.004 1018.9 231.203 1017.798 190 | c 235.605 1015.599 242.906 1016.002 250.504 1018.798 c 265.203 1024.298 191 | 272.906 1030.4 272.906 1036.599 c 272.906 1041.502 270.605 1043.9 263.004 192 | 1046.798 c 255.805 1049.502 254.203 1051.4 255.406 1055.298 c 256.504 1058.798 193 | 261.406 1060.4 274.105 1061.4 c 283.906 1062.099 286.406 1062.002 287.305 194 | 1060.9 c 294.703 1051.798 297.105 1048.002 298.203 1043.201 c 299.703 1036.4 195 | 305.406 1030.4 314.203 1026.201 c 323.504 1021.798 327.504 1022.298 337.504 196 | 1028.9 c 340.406 1030.9 344.105 1032.798 345.605 1033.201 c 347.906 1033.798 197 | 348.605 1034.798 349.504 1038.298 c 351.605 1047.201 348.805 1051.298 340.305 198 | 1051.298 c 336.805 1051.298 335.605 1051.9 333.105 1054.701 c 329.605 1058.798 199 | 324.906 1072.002 324.203 1080.201 c 323.504 1087.4 324.906 1091.9 329.906 200 | 1098.201 c 337.605 1108.002 338.406 1110.298 338.305 1124.798 c 338.305 201 | 1139.201 337.203 1146.002 332.703 1157.599 c 330.203 1164.099 329.105 1165.798 202 | 325.504 1168.201 c 320.004 1172.002 314.805 1177.798 309.105 1186.599 c 203 | 306.605 1190.599 302.105 1196.201 299.203 1199.099 c 296.305 1202.002 293.906 204 | 1205.201 293.906 1206.201 c 293.906 1207.201 294.805 1210.599 295.906 1213.798 205 | c 298.605 1221.701 298.504 1224.4 295.203 1227.502 c 291.305 1231.099 288.305 206 | 1232.502 282.504 1233.201 c 277.504 1233.798 l 277.504 1237.798 l 277.406 207 | 1241.798 277.406 1241.798 272.504 1242.701 c 269.203 1243.298 266.004 1243.201 208 | 263.004 1242.4 c 259.105 1241.502 257.504 1241.599 251.906 1243.298 c 242.504 209 | 1246.298 235.203 1246.798 230.906 1244.599 c h 210 | 250.805 1227.599 m 251.906 1223.599 251.203 1221.502 247.105 1217.099 c 211 | 242.605 1212.298 241.703 1213.701 244.906 1220.599 c 246.605 1224.002 247.906 212 | 1228.099 247.906 1229.599 c 247.906 1233.298 249.605 1232.201 250.805 1227.599 213 | c h 214 | 226.605 1225.9 m 226.305 1225.099 225.504 1222.701 224.805 1220.4 c 224.004 215 | 1217.502 223.004 1216.298 221.703 1216.298 c 217.203 1216.298 221.504 1226.798 216 | 226.305 1227.201 c 226.703 1227.298 226.906 1226.701 226.605 1225.9 c h 217 | 269.605 1221.002 m 268.906 1219.298 265.703 1215.798 262.605 1213.298 c 218 | 259.504 1210.798 255.305 1206.701 253.406 1204.099 c 249.703 1199.201 246.406 219 | 1197.4 244.605 1199.201 c 242.703 1201.099 246.805 1207.298 252.805 1211.502 220 | c 255.703 1213.502 259.504 1217.099 261.203 1219.4 c 266.004 1225.9 272.004 221 | 1227.099 269.605 1221.002 c h 222 | 271.605 1191.201 m 274.805 1192.599 276.906 1191.201 276.906 1187.599 c 223 | 276.906 1185.201 276.703 1185.099 273.703 1185.9 c 270.305 1186.701 263.805 224 | 1186.9 260.504 1186.201 c 259.504 1186.002 258.203 1186.599 257.504 1187.599 225 | c 255.605 1190.701 258.906 1192.298 264.504 1191.099 c 267.805 1190.4 269.906 226 | 1190.4 271.605 1191.201 c h 227 | 299.203 1186.502 m 300.805 1183.599 301.906 1180.798 301.703 1180.298 c 228 | 301.203 1178.798 294.805 1182.4 292.605 1185.4 c 291.004 1187.599 290.906 229 | 1188.4 291.906 1190.201 c 293.703 1193.599 296.105 1192.298 299.203 1186.502 230 | c h 231 | 247.305 1178.002 m 252.605 1169.798 252.406 1169.798 262.703 1172.798 c 232 | 267.605 1174.201 275.105 1175.798 279.305 1176.201 c 287.004 1177.099 l 233 | 293.203 1173.4 l 302.703 1167.599 304.906 1161.002 300.203 1151.9 c 298.605 234 | 1148.9 l 296.805 1151.099 l 295.805 1152.4 294.305 1155.798 293.504 1158.701 235 | c 292.605 1161.701 291.105 1165.099 290.105 1166.298 c 288.406 1168.4 288.004 236 | 1168.502 285.305 1167.201 c 281.703 1165.4 281.203 1163.002 283.504 1158.798 237 | c 285.004 1156.002 285.105 1155.002 284.105 1152.798 c 283.406 1151.4 282.906 238 | 1149.002 282.906 1147.502 c 282.805 1140.4 279.004 1141.201 276.906 1148.798 239 | c 276.203 1151.298 275.105 1153.701 274.504 1154.099 c 273.906 1154.599 240 | 270.406 1155.298 266.605 1155.599 c 259.906 1156.201 l 254.805 1151.701 241 | l 249.906 1147.298 249.504 1147.201 245.004 1147.798 c 241.004 1148.298 242 | 239.805 1148.002 235.906 1145.4 c 229.605 1141.298 226.105 1137.298 225.703 243 | 1133.9 c 225.406 1131.099 l 222.703 1133.298 l 219.406 1135.9 219.203 1138.099 244 | 221.906 1141.099 c 224.906 1144.298 248.605 1159.502 253.305 1161.298 c 245 | 258.504 1163.298 259.406 1166.298 254.906 1166.298 c 251.605 1166.298 246.605 246 | 1170.502 245.406 1174.298 c 244.406 1177.4 241.805 1177.599 238.703 1174.701 247 | c 235.203 1171.298 234.305 1172.002 236.203 1176.599 c 237.605 1179.701 248 | 241.203 1183.298 243.105 1183.298 c 243.605 1183.298 245.406 1180.9 247.305 249 | 1178.002 c h 250 | 312.805 1154.201 m 314.605 1150.9 313.504 1146.002 311.105 1146.502 c 308.906 251 | 1146.9 307.406 1151.298 308.305 1154.701 c 309.105 1157.9 310.805 1157.701 252 | 312.805 1154.201 c h 253 | 267.504 1145.9 m 269.203 1144.599 269.305 1144.201 268.004 1142.099 c 264.504 254 | 1136.502 263.906 1134.502 264.805 1132.002 c 266.004 1128.9 268.805 1127.9 255 | 276.203 1128.099 c 281.805 1128.298 281.906 1128.201 281.805 1125.502 c 256 | 281.805 1124.002 281.203 1121.4 280.605 1119.798 c 278.105 1113.298 274.703 257 | 1110.599 268.203 1109.701 c 266.203 1109.502 264.504 1109.201 264.406 1109.002 258 | c 264.305 1108.9 262.406 1105.599 260.105 1101.798 c 254.703 1092.4 252.906 259 | 1090.9 246.906 1090.701 c 242.906 1090.599 241.305 1090.002 238.406 1087.4 260 | c 236.406 1085.701 233.805 1084.298 232.406 1084.298 c 229.906 1084.298 261 | 226.906 1081.201 224.906 1076.4 c 222.105 1069.502 216.906 1073.002 216.906 262 | 1081.798 c 216.906 1088.099 217.605 1088.701 225.805 1089.599 c 229.305 263 | 1090.002 232.805 1091.298 236.004 1093.298 c 239.203 1095.4 242.605 1096.599 264 | 246.105 1097.002 c 252.605 1097.701 254.105 1098.4 257.406 1102.599 c 261.004 265 | 1107.502 261.504 1111.201 258.906 1114.599 c 257.703 1116.099 255.906 1117.298 266 | 254.805 1117.298 c 252.504 1117.298 252.305 1118.599 254.406 1120.298 c 267 | 255.605 1121.298 256.406 1121.002 259.004 1118.9 c 262.504 1115.9 265.105 268 | 1115.599 267.004 1117.9 c 268.004 1119.201 267.805 1120.298 265.605 1124.9 269 | c 264.105 1127.9 262.906 1131.599 262.906 1133.201 c 262.906 1135.502 262.105 270 | 1136.599 259.305 1138.201 c 255.906 1140.201 255.805 1140.502 257.203 1142.599 271 | c 258.605 1144.798 262.406 1147.298 264.504 1147.298 c 265.004 1147.298 272 | 266.406 1146.701 267.504 1145.9 c h 273 | 159.504 1139.4 m 160.703 1137.201 160.406 1136.9 152.105 1132.701 c 147.406 274 | 1130.298 143.004 1128.298 142.504 1128.298 c 141.906 1128.298 140.004 1129.599 275 | 138.203 1131.099 c 135.004 1133.798 l 137.906 1137.099 l 140.406 1139.798 276 | 141.203 1140.099 142.703 1139.201 c 144.105 1138.298 145.305 1138.502 148.406 277 | 1140.201 c 153.504 1142.9 158.004 1142.599 159.504 1139.4 c h 278 | 179.504 1139.798 m 181.004 1137.502 181.004 1137.099 179.406 1134.599 c 279 | 177.605 1131.9 l 175.805 1134.201 l 173.203 1137.4 173.305 1142.298 175.906 280 | 1142.298 c 177.004 1142.298 178.605 1141.201 179.504 1139.798 c h 281 | 204.703 1127.099 m 205.406 1126.4 205.906 1124.4 205.906 1122.599 c 205.906 282 | 1120.002 205.504 1119.298 204.004 1119.298 c 201.703 1119.298 200.504 1122.4 283 | 201.305 1125.9 c 202.004 1128.599 202.906 1128.9 204.703 1127.099 c h 284 | 121.906 1122.599 m 122.004 1122.099 122.406 1119.798 122.906 1117.298 c 285 | 123.504 1114.099 123.406 1112.599 122.605 1112.099 c 120.805 1111.002 111.105 286 | 1111.099 110.406 1112.298 c 109.406 1113.9 111.703 1117.201 116.105 1120.298 287 | c 120.203 1123.298 121.906 1123.9 121.906 1122.599 c h 288 | 220.703 1114.701 m 223.305 1112.9 223.605 1110.798 221.305 1109.9 c 218.805 289 | 1108.9 209.105 1109.201 208.406 1110.298 c 208.105 1110.798 208.906 1112.4 290 | 210.305 1113.798 c 213.203 1116.701 217.406 1117.099 220.703 1114.701 c 291 | h 292 | 153.805 1101.002 m 155.105 1099.4 152.703 1097.002 146.703 1093.502 c 143.605 293 | 1091.701 142.906 1091.599 141.805 1092.9 c 138.906 1096.4 133.906 1092.701 294 | 133.906 1087.002 c 133.906 1082.4 125.105 1070.298 121.703 1070.298 c 115.504 295 | 1070.298 113.906 1063.798 118.406 1057.099 c 122.805 1050.701 121.004 1045.599 296 | 115.305 1048.099 c 111.406 1049.9 108.906 1055.002 108.906 1061.4 c 108.906 297 | 1066.298 109.305 1067.298 112.004 1069.9 c 113.703 1071.502 115.504 1073.798 298 | 115.906 1074.9 c 116.406 1076.099 118.004 1077.298 119.406 1077.701 c 125.504 299 | 1079.201 130.906 1085.701 132.305 1093.099 c 132.906 1096.298 131.703 1097.4 300 | 130.203 1094.9 c 129.703 1094.002 128.305 1093.701 126.105 1094.002 c 123.004 301 | 1094.502 122.906 1094.599 124.504 1096.4 c 125.805 1097.798 126.605 1098.002 302 | 128.105 1097.201 c 129.605 1096.4 130.605 1096.701 133.105 1098.798 c 135.906 303 | 1101.099 136.305 1101.201 137.906 1099.798 c 140.105 1097.798 141.805 1097.9 304 | 145.406 1100.298 c 148.906 1102.599 152.203 1102.9 153.805 1101.002 c h 305 | 114.906 1096.9 m 114.906 1092.701 113.305 1088.298 111.906 1088.298 c 109.703 306 | 1088.298 108.805 1093.201 110.406 1096.798 c 112.305 1101.502 114.906 1101.502 307 | 114.906 1096.9 c h 308 | 143.906 1088.798 m 143.906 1088.002 143.504 1087.298 142.906 1087.298 c 309 | 142.406 1087.298 142.203 1088.002 142.504 1088.798 c 142.906 1089.599 143.305 310 | 1090.298 143.504 1090.298 c 143.703 1090.298 143.906 1089.599 143.906 1088.798 311 | c h 312 | 194.906 1086.201 m 194.906 1085.099 191.105 1084.002 189.805 1084.798 c 313 | 189.105 1085.298 189.406 1086.099 190.504 1087.4 c 191.805 1088.798 192.504 314 | 1089.002 193.605 1088.201 c 194.305 1087.599 194.906 1086.701 194.906 1086.201 315 | c h 316 | 238.906 1076.099 m 235.605 1070.201 236.305 1060.298 240.406 1054.201 c 317 | 242.105 1051.798 243.605 1048.9 243.906 1047.798 c 244.203 1046.701 246.504 318 | 1044.798 248.906 1043.502 c 251.406 1042.298 253.504 1040.9 253.703 1040.4 319 | c 254.105 1039.099 246.305 1036.298 242.105 1036.298 c 239.703 1036.298 320 | 236.805 1037.298 234.105 1039.002 c 230.406 1041.4 229.906 1042.201 229.906 321 | 1045.599 c 229.906 1052.701 226.406 1055.701 223.504 1051.099 c 222.805 322 | 1049.798 221.906 1046.201 221.605 1043.002 c 221.305 1039.798 220.504 1036.502 323 | 219.805 1035.599 c 218.703 1034.298 218.406 1034.4 217.703 1036.4 c 217.203 324 | 1037.701 217.105 1041.4 217.406 1044.599 c 218.004 1049.9 217.805 1050.798 325 | 215.406 1054.4 c 212.504 1058.502 210.906 1058.701 210.906 1054.701 c 210.906 326 | 1053.4 210.504 1052.298 209.906 1052.298 c 208.703 1052.298 208.605 1058.298 327 | 209.805 1060.099 c 210.504 1061.298 211.203 1061.201 213.703 1059.9 c 216.703 328 | 1058.4 217.004 1058.4 220.504 1060.798 c 224.504 1063.502 226.906 1063.9 329 | 229.906 1062.298 c 232.605 1060.9 234.305 1064.298 233.504 1069.4 c 233.004 330 | 1072.502 233.305 1073.701 234.906 1075.298 c 236.004 1076.4 237.305 1077.298 331 | 237.805 1077.298 c 238.305 1077.298 239.105 1078.798 239.504 1080.599 c 332 | 240.105 1082.9 240.406 1083.298 240.703 1081.9 c 240.906 1080.9 240.105 333 | 1078.201 238.906 1076.099 c h 334 | 136.004 1041.4 m 139.203 1038.798 137.703 1037.599 134.203 1039.9 c 132.703 335 | 1041.002 130.504 1042.099 129.406 1042.502 c 127.906 1043.002 128.105 1043.099 336 | 130.504 1043.201 c 132.305 1043.298 134.703 1042.4 136.004 1041.4 c h 337 | 136.004 1041.4 m f 338 | 879.906 1244.798 m 876.305 1244.002 872.004 1243.002 870.305 1242.502 c 339 | 868.203 1241.798 865.805 1241.9 863.105 1242.599 c 860.406 1243.298 857.406 340 | 1243.4 854.203 1242.701 c 849.406 1241.798 849.406 1241.798 849.305 1237.798 341 | c 849.305 1233.798 l 844.305 1233.201 l 838.203 1232.4 836.406 1231.502 342 | 832.105 1227.099 c 828.805 1223.599 l 830.906 1215.201 l 833.605 1203.9 343 | 833.504 1202.798 829.906 1201.298 c 826.305 1199.798 823.406 1196.099 818.406 344 | 1186.502 c 814.703 1179.298 811.805 1176.298 801.906 1169.002 c 796.805 345 | 1165.201 792.805 1158.099 790.906 1149.502 c 789.504 1142.9 788.305 1114.701 346 | 789.305 1110.9 c 789.605 1109.502 792.004 1105.9 794.406 1102.798 c 801.805 347 | 1093.701 802.906 1091.502 802.906 1084.798 c 802.906 1075.002 797.004 1057.099 348 | 792.605 1053.502 c 791.805 1052.798 788.504 1051.798 785.305 1051.298 c 349 | 778.203 1050.099 776.703 1048.798 776.703 1043.201 c 776.703 1036.798 778.203 350 | 1033.701 781.605 1033.002 c 783.105 1032.701 787.605 1030.298 791.406 1027.798 351 | c 797.906 1023.502 798.805 1023.201 803.504 1023.502 c 814.805 1024.4 827.004 352 | 1033.798 828.305 1042.599 c 828.805 1045.9 830.504 1049.298 834.203 1054.502 353 | c 839.504 1061.798 l 844.406 1061.701 l 853.305 1061.599 868.203 1059.4 354 | 869.504 1058.099 c 870.305 1057.4 871.105 1055.298 871.504 1053.599 c 872.004 355 | 1051.002 871.805 1050.201 870.305 1049.701 c 862.203 1046.9 856.605 1043.701 356 | 855.305 1041.002 c 851.703 1034.201 856.305 1027.798 868.906 1021.9 c 879.605 357 | 1016.798 886.605 1015.502 892.703 1017.298 c 895.305 1018.099 902.203 1018.798 358 | 908.203 1019.002 c 919.004 1019.099 l 925.703 1023.4 l 940.105 1032.599 359 | 944.105 1037.201 945.504 1046.4 c 946.406 1051.9 949.504 1054.798 956.203 360 | 1056.298 c 959.105 1056.9 964.906 1058.599 969.105 1060.002 c 979.105 1063.201 361 | 982.805 1062.201 982.906 1056.502 c 982.906 1055.099 981.105 1052.4 978.406 362 | 1049.701 c 973.406 1044.599 971.906 1040.502 971.906 1032.002 c 971.906 363 | 1019.298 979.406 1014.4 993.906 1017.599 c 1010.004 1021.201 1024.504 1025.599 364 | 1026.703 1027.599 c 1029.406 1030.099 1029.605 1034.798 1027.203 1038.201 365 | c 1024.305 1042.4 1023.906 1048.099 1025.703 1057.798 c 1026.805 1064.298 366 | 1027.305 1072.701 1027.406 1087.798 c 1027.406 1108.798 l 1024.305 1115.798 367 | l 1022.605 1119.701 1020.906 1124.201 1020.504 1125.798 c 1020.105 1127.502 368 | 1018.605 1129.798 1017.105 1131.099 c 996.605 1148.502 986.504 1152.599 369 | 964.406 1152.701 c 952.203 1152.798 951.105 1152.599 945.805 1150.002 c 370 | 940.605 1147.502 939.406 1147.298 927.004 1147.298 c 913.703 1147.298 l 371 | 910.703 1150.298 l 907.406 1153.599 907.305 1156.502 910.305 1162.201 c 372 | 911.004 1163.599 913.105 1167.701 915.004 1171.298 c 918.406 1177.798 l 373 | 918.406 1213.002 l 913.906 1221.9 l 907.605 1234.4 902.004 1241.599 896.703 374 | 1244.201 c 891.703 1246.599 889.105 1246.701 879.906 1244.798 c h 375 | 879.906 1226.798 m 879.906 1223.599 880.605 1221.701 882.406 1219.502 c 376 | 886.906 1214.099 885.105 1212.4 879.906 1217.099 c 876.406 1220.201 874.906 377 | 1226.502 876.805 1230.201 c 878.504 1233.298 879.906 1231.798 879.906 1226.798 378 | c h 379 | 902.805 1226.298 m 905.004 1225.201 907.305 1219.9 906.504 1217.798 c 905.406 380 | 1214.798 903.406 1216.4 901.805 1221.798 c 900.105 1227.701 900.105 1227.798 381 | 902.805 1226.298 c h 382 | 865.504 1219.9 m 867.504 1217.4 871.305 1214.099 873.906 1212.4 c 880.605 383 | 1208.099 883.305 1203.599 881.805 1199.502 c 880.605 1196.298 878.004 1197.9 384 | 874.004 1204.201 c 872.105 1207.002 868.703 1210.502 866.004 1212.201 c 385 | 860.305 1215.9 858.406 1217.9 857.004 1221.599 c 856.004 1224.201 856.105 386 | 1224.298 858.906 1224.298 c 861.105 1224.298 862.703 1223.298 865.504 1219.9 387 | c h 388 | 835.305 1190.099 m 836.105 1188.798 835.906 1187.701 834.305 1185.599 c 389 | 832.406 1183.002 826.004 1178.9 825.105 1179.701 c 824.703 1180.201 827.605 390 | 1187.201 829.504 1190.099 c 831.203 1192.701 833.605 1192.701 835.305 1190.099 391 | c h 392 | 857.605 1191.099 m 860.305 1190.099 861.406 1190.099 862.906 1191.099 c 393 | 865.703 1192.798 867.703 1192.599 868.906 1190.4 c 870.305 1187.798 869.105 394 | 1185.002 867.004 1185.9 c 863.906 1187.298 859.203 1187.502 855.305 1186.4 395 | c 850.605 1185.099 849.105 1186.201 850.703 1189.798 c 852.004 1192.599 396 | 852.906 1192.798 857.605 1191.099 c h 397 | 888.203 1180.298 m 893.203 1174.502 892.906 1170.002 888.004 1174.701 c 398 | 884.605 1177.9 883.805 1177.599 880.203 1172.002 c 877.105 1167.002 876.203 399 | 1166.298 872.605 1166.298 c 870.203 1166.298 869.805 1165.9 870.105 1164.099 400 | c 870.305 1162.4 871.605 1161.4 875.004 1160.298 c 877.504 1159.502 882.004 401 | 1157.201 885.004 1155.201 c 888.004 1153.201 893.605 1149.701 897.504 1147.502 402 | c 901.406 1145.201 905.105 1142.701 905.906 1141.9 c 907.906 1139.4 907.406 403 | 1135.099 904.906 1133.099 c 901.906 1130.701 900.906 1130.798 900.906 1133.599 404 | c 900.906 1137.002 898.504 1139.798 891.805 1144.4 c 887.703 1147.201 885.203 405 | 1148.201 883.805 1147.798 c 880.504 1146.701 876.105 1148.298 871.203 1152.4 406 | c 866.605 1156.099 866.305 1156.201 860.906 1155.701 c 853.504 1154.9 851.305 407 | 1153.298 849.703 1147.599 c 848.703 1144.002 847.906 1142.798 846.406 1142.798 408 | c 844.906 1142.798 844.305 1143.599 844.105 1145.798 c 844.004 1147.502 409 | 843.406 1150.4 842.805 1152.298 c 841.906 1155.4 842.004 1156.4 843.906 410 | 1159.599 c 846.105 1163.201 846.105 1163.502 844.406 1165.298 c 840.406 411 | 1169.701 836.906 1167.4 833.504 1158.298 c 832.605 1155.798 831.004 1152.701 412 | 829.906 1151.298 c 828.004 1148.798 l 826.504 1152.502 l 824.703 1156.701 413 | 824.406 1164.502 825.906 1167.201 c 826.406 1168.201 829.906 1170.798 833.605 414 | 1173.099 c 840.406 1177.099 l 847.906 1176.201 l 852.105 1175.701 859.504 415 | 1174.201 864.305 1172.798 c 874.406 1169.9 874.203 1169.798 879.504 1178.002 416 | c 881.406 1180.9 883.504 1183.298 884.305 1183.298 c 885.105 1183.298 886.906 417 | 1182.002 888.203 1180.298 c h 418 | 818.906 1154.002 m 818.906 1149.599 816.203 1145.798 814.305 1147.4 c 811.703 419 | 1149.502 814.305 1157.298 817.504 1157.298 c 818.406 1157.298 818.906 1156.099 420 | 818.906 1154.002 c h 421 | 867.703 1145.099 m 868.406 1144.502 869.504 1143.099 870.004 1142.099 c 422 | 870.805 1140.599 870.406 1139.9 867.406 1138.201 c 864.605 1136.502 863.906 423 | 1135.502 863.906 1133.002 c 863.906 1131.201 862.703 1127.502 861.305 1124.599 424 | c 859.105 1120.298 858.805 1119.099 859.906 1117.798 c 861.703 1115.599 425 | 864.305 1115.9 867.805 1118.9 c 870.406 1121.002 871.203 1121.298 872.406 426 | 1120.298 c 874.305 1118.701 873.504 1117.599 869.305 1115.798 c 865.203 427 | 1114.099 865.105 1112.599 868.406 1105.599 c 871.406 1099.002 875.504 1096.298 428 | 882.406 1096.298 c 886.504 1096.298 888.105 1095.798 891.105 1093.298 c 429 | 894.004 1090.9 896.203 1090.099 901.906 1089.4 c 905.906 1088.9 909.305 430 | 1088.201 909.605 1087.9 c 909.906 1087.599 910.203 1084.9 910.305 1081.9 431 | c 910.406 1072.099 904.805 1069.599 901.004 1077.701 c 898.805 1082.502 432 | 897.504 1083.798 893.703 1084.701 c 892.203 1085.002 889.406 1086.701 887.504 433 | 1088.298 c 885.004 1090.599 883.105 1091.298 880.203 1091.298 c 874.906 434 | 1091.298 872.105 1093.599 866.305 1102.798 c 861.703 1110.002 861.406 1110.298 435 | 857.703 1110.298 c 855.504 1110.298 852.906 1110.798 851.805 1111.298 c 436 | 849.305 1112.701 846.105 1119.002 845.305 1124.201 c 844.605 1128.298 l 437 | 851.504 1128.298 l 858.906 1128.298 862.906 1130.002 862.906 1133.099 c 438 | 862.906 1134.099 861.703 1137.002 860.305 1139.701 c 857.805 1144.502 857.703 439 | 1144.701 859.504 1146.002 c 861.504 1147.502 865.406 1147.002 867.703 1145.099 440 | c h 441 | 953.203 1141.002 m 953.805 1139.502 951.605 1133.798 950.004 1132.9 c 949.504 442 | 1132.502 948.203 1133.4 947.305 1134.798 c 945.805 1137.099 945.805 1137.502 443 | 947.305 1139.798 c 949.105 1142.502 952.406 1143.099 953.203 1141.002 c 444 | h 445 | 978.805 1139.9 m 981.004 1137.9 982.805 1137.9 985.105 1140.002 c 986.504 446 | 1141.201 986.906 1141.298 986.906 1140.298 c 986.906 1139.502 988.105 1137.701 447 | 989.504 1136.201 c 992.504 1133.002 992.305 1132.502 987.504 1129.9 c 983.906 448 | 1128.002 l 977.605 1131.298 l 974.203 1133.099 970.406 1135.099 969.203 449 | 1135.701 c 966.703 1136.9 966.203 1139.201 968.203 1141.201 c 969.805 1142.798 450 | 976.406 1142.002 978.805 1139.9 c h 451 | 925.703 1124.002 m 925.906 1121.298 925.504 1120.201 924.105 1119.4 c 923.004 452 | 1118.798 921.906 1118.701 921.504 1119.002 c 920.504 1120.002 920.805 1124.201 453 | 922.004 1126.4 c 923.504 1129.298 925.406 1128.201 925.703 1124.002 c h 454 | 1009.906 1121.099 m 1014.004 1118.201 1017.406 1113.9 1016.504 1112.4 c 455 | 1015.703 1111.201 1004.203 1110.9 1003.605 1112.099 c 1003.406 1112.502 456 | 1003.406 1115.201 1003.703 1118.099 c 1004.105 1124.002 1005.004 1124.4 457 | 1009.906 1121.099 c h 458 | 916.504 1113.798 m 917.906 1112.4 918.703 1110.798 918.406 1110.298 c 917.504 459 | 1108.798 907.605 1109.099 905.406 1110.599 c 903.703 1111.9 903.703 1112.099 460 | 905.703 1114.099 c 908.703 1117.099 913.305 1116.9 916.504 1113.798 c h 461 | 982.203 1100.298 m 984.906 1098.099 987.406 1097.701 988.406 1099.298 c 462 | 989.406 1100.9 992.504 1100.4 994.406 1098.298 c 995.605 1097.002 996.906 463 | 1096.599 998.805 1096.9 c 1000.605 1097.298 1002.004 1096.9 1002.805 1095.9 464 | c 1004.004 1094.502 1003.703 1094.298 1000.703 1094.298 c 998.805 1094.298 465 | 996.805 1094.798 996.105 1095.502 c 995.203 1096.4 994.906 1095.9 994.906 466 | 1093.201 c 994.906 1087.599 999.906 1080.9 1006.504 1077.701 c 1009.504 467 | 1076.298 1011.906 1074.599 1011.906 1074.099 c 1011.906 1073.502 1013.305 468 | 1071.502 1014.906 1069.599 c 1017.406 1066.798 1017.906 1065.4 1017.906 469 | 1061.201 c 1017.906 1052.599 1014.504 1047.298 1009.004 1047.298 c 1005.406 470 | 1047.298 1005.406 1051.298 1008.906 1058.002 c 1012.703 1065.298 1012.406 471 | 1068.798 1007.703 1069.701 c 1006.004 1070.002 1002.605 1071.9 1000.305 472 | 1073.798 c 996.703 1076.798 995.605 1078.502 993.906 1084.298 c 991.805 473 | 1091.298 989.906 1094.298 987.504 1094.298 c 985.406 1094.298 983.906 1091.9 474 | 984.605 1089.502 c 984.906 1088.201 984.703 1087.298 984.004 1087.298 c 475 | 983.406 1087.298 982.906 1088.4 982.906 1089.701 c 982.906 1091.4 981.805 476 | 1092.798 979.203 1094.4 c 973.004 1098.099 971.703 1099.4 973.004 1101.002 477 | c 974.703 1102.9 979.305 1102.599 982.203 1100.298 c h 478 | 1015.605 1099.099 m 1017.305 1096.9 1017.805 1093.201 1016.805 1090.4 c 479 | 1015.703 1087.798 l 1013.805 1090.201 l 1012.805 1091.502 1011.906 1094.002 480 | 1011.906 1095.701 c 1011.906 1100.201 1013.605 1101.701 1015.605 1099.099 481 | c h 482 | 936.305 1087.701 m 939.105 1086.599 938.203 1084.4 935.203 1084.9 c 931.906 483 | 1085.502 931.504 1085.798 932.406 1087.201 c 933.105 1088.4 934.105 1088.599 484 | 936.305 1087.701 c h 485 | 891.805 1075.201 m 893.504 1073.599 893.906 1072.4 893.406 1070.201 c 893.004 486 | 1068.599 893.004 1065.9 893.406 1064.201 c 893.906 1061.9 894.504 1061.298 487 | 895.703 1061.9 c 900.305 1063.9 903.805 1063.502 906.504 1060.798 c 909.203 488 | 1058.099 909.305 1058.099 912.605 1059.701 c 914.504 1060.599 916.504 1061.099 489 | 917.004 1060.798 c 918.203 1060.002 918.203 1052.298 916.906 1052.298 c 490 | 916.406 1052.298 915.906 1053.599 915.906 1055.298 c 915.906 1059.002 914.004 491 | 1058.502 911.406 1054.002 c 909.906 1051.4 909.504 1049.201 909.805 1043.099 492 | c 910.004 1036.701 909.805 1035.298 908.605 1035.298 c 906.703 1035.298 493 | 906.305 1036.599 905.406 1043.9 c 904.703 1049.298 902.805 1053.298 900.805 494 | 1053.298 c 898.703 1053.298 896.906 1049.798 896.906 1045.9 c 896.906 1039.798 495 | 894.504 1038.002 885.906 1037.502 c 878.305 1037.002 871.004 1038.798 872.805 496 | 1040.599 c 873.406 1041.201 875.805 1042.4 878.105 1043.298 c 881.203 1044.4 497 | 882.406 1045.502 883.004 1047.701 c 883.504 1049.298 884.906 1051.798 886.305 498 | 1053.201 c 888.504 1055.502 888.805 1056.798 889.105 1064.798 c 889.305 499 | 1072.099 889.004 1074.298 887.605 1076.298 c 886.703 1077.599 885.906 1079.701 500 | 885.906 1080.798 c 885.906 1082.502 886.105 1082.4 887.703 1080.002 c 888.703 501 | 1078.502 890.605 1076.298 891.805 1075.201 c h 502 | 994.703 1040.798 m 990.805 1038.201 988.906 1037.701 988.906 1039.201 c 503 | 988.906 1040.798 993.203 1043.298 995.906 1043.298 c 998.203 1043.298 998.203 504 | 1043.201 994.703 1040.798 c h 505 | 994.703 1040.798 m f 506 | 621.605 1202.201 m 619.406 1199.099 619.406 1195.002 621.703 1193.099 c 507 | 622.805 1192.002 627.203 1191.099 634.406 1190.4 c 646.203 1189.099 666.004 508 | 1185.002 672.105 1182.599 c 677.203 1180.599 680.906 1176.002 680.906 1171.9 509 | c 680.906 1168.599 l 668.703 1172.002 l 656.605 1175.298 637.906 1178.298 510 | 629.504 1178.298 c 626.305 1178.298 624.703 1177.701 623.105 1176.002 c 511 | 620.504 1173.298 620.203 1168.099 622.406 1166.298 c 623.203 1165.599 628.305 512 | 1164.599 633.703 1164.099 c 647.406 1162.798 661.805 1159.701 671.805 1156.002 513 | c 680.406 1152.798 l 680.703 1148.9 l 680.906 1146.798 680.703 1144.701 514 | 680.203 1144.201 c 679.703 1143.701 675.406 1144.502 670.504 1145.798 c 515 | 651.105 1151.099 627.805 1153.599 624.805 1150.599 c 624.305 1150.099 623.406 516 | 1148.201 622.906 1146.4 c 621.605 1141.701 625.004 1138.298 631.105 1138.298 517 | c 641.004 1138.298 661.605 1134.298 672.406 1130.201 c 677.605 1128.298 518 | l 677.105 1123.798 l 676.605 1118.599 677.703 1116.701 682.105 1115.798 519 | c 688.805 1114.298 692.906 1122.701 694.906 1141.798 c 697.305 1164.099 520 | 693.906 1192.099 688.203 1197.798 c 686.203 1199.9 681.203 1199.701 678.406 521 | 1197.4 c 676.105 1195.599 675.805 1195.599 670.703 1197.4 c 661.703 1200.4 522 | 644.906 1203.4 633.805 1204.002 c 623.504 1204.599 623.203 1204.502 621.605 523 | 1202.201 c h 524 | 621.605 1202.201 m f 525 | 526.406 1127.798 m 500.004 1125.099 459.605 1116.9 444.406 1111.201 c 438.305 526 | 1108.9 432.906 1104.4 432.906 1101.599 c 432.906 1095.502 448.004 1074.002 527 | 461.805 1060.298 c 480.504 1041.701 512.906 1024.9 519.406 1030.298 c 520.203 528 | 1031.002 520.906 1033.201 520.906 1035.201 c 520.906 1040.099 518.305 1042.4 529 | 509.805 1045.201 c 506.105 1046.4 502.406 1048.201 501.406 1049.298 c 499.805 530 | 1051.099 499.906 1051.201 503.605 1052.201 c 516.504 1055.701 548.406 1059.002 531 | 554.805 1057.502 c 557.906 1056.798 558.406 1056.201 559.605 1051.798 c 532 | 560.906 1046.502 561.305 1039.502 560.305 1036.9 c 559.605 1035.002 556.605 533 | 1034.9 543.906 1036.502 c 536.004 1037.4 533.906 1037.4 531.406 1036.201 534 | c 528.504 1034.798 526.906 1031.298 527.703 1028.099 c 528.703 1024.099 535 | 540.906 1021.002 555.906 1020.9 c 567.906 1020.798 570.504 1021.9 573.504 536 | 1028.099 c 574.906 1031.201 575.105 1033.502 574.504 1044.502 c 573.805 537 | 1057.298 l 578.605 1057.298 l 585.004 1057.298 608.406 1053.798 613.203 538 | 1052.099 c 620.406 1049.599 618.004 1047.798 601.605 1043.4 c 590.305 1040.298 539 | 583.504 1037.201 582.504 1034.798 c 580.703 1030.002 583.105 1025.298 587.305 540 | 1025.298 c 600.906 1025.298 630.906 1038.701 647.105 1051.9 c 657.605 1060.599 541 | 671.305 1077.201 678.805 1090.502 c 687.305 1105.502 685.906 1107.201 656.906 542 | 1116.099 c 636.406 1122.502 630.004 1124.002 612.406 1126.502 c 593.605 543 | 1129.099 546.805 1129.798 526.406 1127.798 c h 544 | 602.406 1112.798 m 621.406 1110.599 638.805 1107.002 653.605 1102.201 c 545 | 666.004 1098.201 l 662.805 1092.502 l 655.906 1080.099 645.805 1068.201 546 | 637.805 1062.9 c 635.203 1061.298 634.805 1061.298 624.906 1064.298 c 619.203 547 | 1065.9 613.406 1067.298 611.805 1067.298 c 606.105 1067.298 607.703 1070.201 548 | 615.805 1074.298 c 618.203 1075.502 622.805 1079.002 626.004 1082.201 c 549 | 637.504 1093.298 633.004 1097.9 604.805 1103.701 c 574.406 1109.9 539.406 550 | 1110.099 510.406 1104.099 c 492.406 1100.502 484.906 1096.599 484.906 1091.099 551 | c 484.906 1086.502 488.004 1083.099 498.906 1075.701 c 509.004 1068.9 510.504 552 | 1067.298 507.004 1067.298 c 505.406 1067.298 494.203 1064.502 484.105 1061.701 553 | c 482.203 1061.201 480.203 1062.701 471.805 1070.9 c 463.605 1079.002 450.906 554 | 1095.201 450.906 1097.599 c 450.906 1098.599 468.605 1103.9 480.906 1106.701 555 | c 499.305 1110.701 518.805 1113.4 540.406 1114.701 c 552.605 1115.502 588.805 556 | 1114.298 602.406 1112.798 c h 557 | 590.406 1091.9 m 595.406 1091.002 601.703 1089.701 604.406 1089.002 c 609.406 558 | 1087.701 l 604.906 1084.798 l 598.305 1080.599 587.605 1076.701 577.406 559 | 1074.798 c 565.203 1072.502 542.805 1073.201 531.605 1076.201 c 521.203 560 | 1078.9 506.504 1086.201 508.105 1087.798 c 509.004 1088.701 526.605 1092.298 561 | 535.105 1093.201 c 546.805 1094.599 579.605 1093.701 590.406 1091.9 c h 562 | 590.406 1091.9 m f 563 | 211.605 979.099 m 210.305 970.701 212.004 659.002 213.406 650.099 c 213.605 564 | 648.798 214.004 643.798 214.406 638.798 c 215.305 625.798 219.504 595.099 565 | 222.504 579.9 c 235.406 513.298 257.105 463.002 292.004 419.298 c 302.305 566 | 406.298 330.805 377.599 345.203 365.701 c 388.105 330.4 413.703 315.798 567 | 494.406 280.798 c 509.305 274.4 529.605 265.099 539.703 260.201 c 558.004 568 | 251.4 l 574.203 259.201 l 583.105 263.502 597.805 270.298 606.906 274.298 569 | c 695.004 313.002 712.504 322.298 746.406 347.599 c 826.105 407.298 862.906 570 | 459.502 885.305 544.298 c 896.105 585.298 902.105 630.599 903.906 685.798 571 | c 905.004 717.9 905.203 909.298 904.203 953.099 c 903.605 982.298 l 212.105 572 | 982.298 l h 573 | 564.004 903.701 m 574.605 862.798 594.906 820.201 619.805 786.502 c 622.906 574 | 782.298 625.805 778.298 626.203 777.701 c 627.504 775.599 605.703 778.201 575 | 595.105 781.502 c 591.605 782.502 588.406 783.298 587.906 783.099 c 586.504 576 | 782.599 590.703 771.599 595.605 762.9 c 606.203 744.099 627.605 720.201 577 | 659.406 691.502 c 677.605 675.201 681.203 671.502 680.406 670.298 c 679.605 578 | 669.002 659.004 669.002 649.504 670.298 c 645.305 670.9 636.805 672.701 579 | 630.504 674.201 c 619.105 677.002 l 620.504 674.798 l 623.406 670.4 651.703 580 | 647.599 669.906 635.099 c 686.703 623.502 721.305 603.701 748.605 590.002 581 | c 755.406 586.502 757.703 584.701 756.605 583.701 c 756.406 583.4 750.105 582 | 582.9 742.805 582.4 c 717.004 580.9 690.305 584.201 664.504 592.298 c 643.504 583 | 598.9 633.406 600.701 617.406 600.701 c 607.504 600.701 601.305 600.201 584 | 596.406 598.9 c 587.605 596.798 574.703 590.599 568.004 585.298 c 562.906 585 | 581.298 l 557.105 585.298 l 533.906 601.099 511.203 604.4 474.305 597.201 586 | c 468.805 596.201 459.504 594.002 453.805 592.4 c 433.305 586.701 416.203 587 | 583.798 395.906 582.701 c 380.805 581.9 363.605 582.9 364.203 584.599 c 588 | 364.406 585.298 369.203 588.201 375.004 591.201 c 402.703 605.4 433.605 589 | 623.4 452.805 636.4 c 476.305 652.4 506.004 677.298 499.906 675.798 c 487.305 590 | 672.9 472.105 671.099 456.703 670.599 c 446.906 670.298 438.906 670.201 591 | 438.906 670.502 c 438.906 670.798 447.805 679.099 458.703 689.002 c 494.004 592 | 721.298 511.906 741.099 523.105 760.298 c 528.305 769.201 534.305 782.201 593 | 533.605 782.9 c 533.305 783.201 530.004 782.502 526.203 781.4 c 518.504 594 | 779.201 510.703 777.701 500.406 776.701 c 493.504 776.002 493.504 776.002 595 | 494.906 778.099 c 495.703 779.298 499.805 785.099 504.105 791.002 c 530.105 596 | 827.701 546.504 864.099 558.906 912.201 c 559.504 914.502 560.203 916.298 597 | 560.406 916.099 c 560.703 915.9 562.305 910.298 564.004 903.701 c h 598 | 644.906 582.798 m 655.504 580.798 666.703 577.599 683.406 571.9 c 703.805 599 | 565.002 740.004 558.002 766.805 555.701 c 775.105 555.002 l 787.105 538.9 600 | l 799.004 522.798 l 696.406 522.502 l 593.805 522.298 l 594.406 517.002 601 | l 594.805 514.201 595.203 510.798 595.504 509.599 c 595.906 507.298 l 529.703 602 | 507.298 l 530.406 514.798 l 531.105 522.298 l 426.406 522.502 l 321.605 603 | 522.798 l 334.305 538.298 l 346.906 553.9 l 363.703 555.701 l 392.406 558.701 604 | 425.406 566.099 449.406 574.798 c 472.906 583.4 498.605 586.4 518.906 582.9 605 | c 534.504 580.099 551.105 573.701 562.105 566.099 c 563.504 565.099 564.805 606 | 565.599 569.605 569.002 c 581.504 577.298 594.703 582.502 608.406 584.201 607 | c 618.004 585.4 634.703 584.701 644.906 582.798 c h 608 | 477.906 388.298 m 477.906 359.298 l 470.805 359.298 l 470.906 380.599 l 609 | 471.105 408.502 471.305 405.9 469.203 404.099 c 467.105 402.298 458.504 610 | 397.298 457.605 397.298 c 457.203 397.298 456.906 398.502 456.906 400.099 611 | c 456.906 402.201 457.805 403.298 460.703 404.9 c 462.703 406.099 466.406 612 | 409.298 468.906 412.099 c 471.605 415.099 474.305 417.099 475.703 417.201 613 | c 477.906 417.298 l h 614 | 532.504 415.4 m 541.105 411.502 544.406 403.002 543.703 386.4 c 542.906 615 | 367.4 536.605 358.798 523.305 358.798 c 515.805 358.798 512.504 360.798 616 | 509.105 367.4 c 506.906 371.798 l 509.105 372.502 l 513.105 373.599 513.504 617 | 373.4 514.805 369.701 c 517.605 362.002 528.504 361.701 533.305 369.099 618 | c 535.406 372.298 537.906 381.502 537.906 386.099 c 537.906 387.002 536.406 619 | 386.201 534.004 384.002 c 527.004 377.701 518.406 377.798 511.906 384.298 620 | c 507.305 388.9 505.504 394.502 506.406 401.4 c 508.203 414.002 520.703 621 | 420.798 532.504 415.4 c h 622 | 589.703 414.701 m 600.605 406.701 601.906 374.298 591.605 363.599 c 583.703 623 | 355.298 569.906 357.4 565.004 367.599 c 557.203 383.701 561.004 410.099 624 | 572.004 415.599 c 576.504 417.9 585.906 417.4 589.703 414.701 c h 625 | 645.605 414.701 m 650.105 411.4 652.906 406.502 652.906 402.002 c 652.906 626 | 395.502 649.504 389.9 640.605 382.002 c 628.406 371.099 624.906 367.599 627 | 624.906 366.4 c 624.906 365.599 629.305 365.298 638.906 365.298 c 652.906 628 | 365.298 l 652.906 359.298 l 633.906 359.298 l 619.906 359.298 614.906 359.599 629 | 614.906 360.502 c 614.906 364.502 620.105 371.201 631.004 381.4 c 643.605 630 | 393.201 645.906 396.201 646.105 401.599 c 646.203 405.9 644.504 408.9 640.906 631 | 410.798 c 634.004 414.4 625.805 411.298 623.906 404.298 c 622.906 400.599 632 | 622.605 400.298 620.105 400.9 c 616.504 401.798 616.605 401.701 617.406 633 | 405.298 c 618.305 409.201 622.406 414.201 626.406 415.9 c 630.906 418.002 634 | 642.105 417.298 645.605 414.701 c h 635 | 645.605 414.701 m f 636 | 519.105 410.298 m 513.504 406.9 511.406 398.798 514.305 392.002 c 516.105 637 | 387.599 519.906 385.298 525.305 385.298 c 536.504 385.298 541.004 400.4 638 | 532.406 409.002 c 528.504 412.9 524.105 413.4 519.105 410.298 c h 639 | 519.105 410.298 m f 640 | 574.305 410.502 m 569.406 406.599 568.406 402.798 568.406 387.798 c 568.406 641 | 373.099 569.203 370.099 573.605 366.099 c 578.406 361.701 585.906 363.798 642 | 589.605 370.502 c 592.203 375.298 592.203 400.298 589.703 405.002 c 586.004 643 | 411.701 578.906 414.298 574.305 410.502 c h 644 | 574.305 410.502 m f 645 | 160.504 766.099 m 159.504 760.9 156.203 756.298 152.203 754.701 c 149.305 646 | 753.4 143.805 753.201 120.004 753.502 c 99.203 753.701 90.805 754.099 89.203 647 | 755.099 c 87.703 755.9 86.406 758.298 85.406 761.798 c 84.004 766.502 83.406 648 | 767.298 81.305 767.298 c 78.906 767.298 l 79.105 749.599 l 79.406 732.298 649 | 79.504 731.798 81.504 731.502 c 83.305 731.201 83.906 731.9 84.805 736.002 650 | c 87.406 746.4 88.105 746.599 121.406 747.002 c 143.105 747.201 148.105 651 | 747.002 146.805 746.002 c 146.004 745.4 130.105 733.599 111.605 719.9 c 652 | 80.906 697.298 77.906 694.798 77.906 692.201 c 77.906 689.298 l 112.703 653 | 689.298 l 131.805 689.201 149.406 688.798 151.906 688.4 c 157.105 687.298 654 | 159.504 684.798 160.406 679.298 c 161.004 675.9 161.504 675.298 163.504 655 | 675.298 c 165.906 675.298 l 165.906 693.4 l 165.906 711.4 165.906 711.4 656 | 163.703 711.099 c 162.004 710.9 161.105 709.599 159.906 705.599 c 157.305 657 | 696.502 158.605 696.798 128.105 696.599 c 104.105 696.298 101.605 696.502 658 | 103.406 697.798 c 104.504 698.599 119.004 709.298 135.703 721.502 c 165.906 659 | 743.701 l 165.906 769.298 l 163.504 769.298 l 161.605 769.298 161.004 768.599 660 | 160.504 766.099 c h 661 | 160.504 766.099 m f 662 | 949.906 765.599 m 949.805 763.502 949.703 756.599 949.605 750.298 c 949.406 663 | 739.4 949.504 738.798 951.406 738.798 c 953.703 738.798 954.703 740.599 664 | 954.805 744.502 c 954.906 748.502 957.305 750.502 960.703 749.201 c 964.406 665 | 747.798 990.906 731.298 990.906 730.4 c 990.906 730.002 983.203 725.701 666 | 973.703 720.798 c 957.605 712.502 956.504 712.099 955.203 713.798 c 954.504 667 | 714.9 953.906 717.4 953.906 719.502 c 953.906 722.9 953.605 723.298 951.406 668 | 723.298 c 948.906 723.298 948.906 723.201 948.906 714.599 c 948.906 709.701 669 | 948.703 701.4 948.504 696.099 c 948.203 686.599 948.305 686.298 950.406 670 | 686.298 c 952.105 686.298 953.004 687.298 954.305 690.701 c 956.406 696.298 671 | 959.305 698.298 982.906 710.201 c 1000.703 719.298 l 1013.305 719.298 l 672 | 1028.105 719.298 1029.203 718.701 1030.406 710.4 c 1031.004 705.9 1031.406 673 | 705.298 1033.504 705.298 c 1035.906 705.298 l 1035.906 719.599 l 1036.004 674 | 727.4 1036.105 736.599 1036.203 740.099 c 1036.406 746.201 1036.305 746.4 675 | 1034.004 746.099 c 1032.105 745.9 1031.406 744.9 1030.406 741.002 c 1028.406 676 | 733.099 1027.703 732.798 1013.703 733.099 c 999.703 733.502 999.004 733.701 677 | 983.605 743.002 c 962.504 755.701 954.906 762.201 954.906 767.502 c 954.906 678 | 768.798 954.105 769.298 952.406 769.298 c 950.203 769.298 949.906 768.9 679 | 949.906 765.599 c h 680 | 949.906 765.599 m f 681 | 948.406 675.002 m 948.203 674.4 947.805 665.298 947.504 654.798 c 946.305 682 | 616.9 945.703 602.798 945.406 601.701 c 945.004 600.502 954.203 599.298 683 | 964.203 599.298 c 969.605 599.298 969.906 599.4 969.906 601.701 c 969.906 684 | 603.4 969.203 604.4 967.703 604.798 c 963.703 606.002 954.805 612.502 953.305 685 | 615.4 c 952.504 617.002 951.906 621.002 951.906 624.798 c 951.906 631.4 686 | l 961.703 630.798 l 967.004 630.502 983.004 629.798 997.105 629.298 c 1011.305 687 | 628.701 1023.605 628.002 1024.406 627.599 c 1026.504 626.798 1027.906 623.201 688 | 1027.906 618.4 c 1027.906 615.099 1028.305 614.502 1030.305 614.099 c 1032.703 689 | 613.599 1032.805 613.798 1033.305 620.701 c 1033.605 624.599 1034.105 634.002 690 | 1034.406 641.599 c 1035.004 655.298 l 1032.504 655.298 l 1030.406 655.298 691 | 1029.906 654.599 1028.906 650.4 c 1026.906 641.798 1027.504 642.002 1000.203 692 | 642.9 c 987.105 643.298 975.703 643.701 974.906 643.798 c 974.105 643.9 693 | 968.805 644.002 963.203 644.099 c 952.906 644.298 l 952.906 649.701 l 952.906 694 | 652.599 953.406 656.4 954.004 658.201 c 955.203 661.599 961.004 666.201 695 | 967.703 668.798 c 971.605 670.4 974.004 674.002 971.605 674.798 c 970.906 696 | 675.002 965.504 675.4 959.605 675.701 c 951.504 676.099 948.703 676.002 697 | 948.406 675.002 c h 698 | 948.406 675.002 m f 699 | 77.605 665.599 m 77.105 664.798 79.703 635.9 80.406 633.599 c 80.605 633.002 700 | 81.703 632.701 82.805 633.002 c 84.305 633.4 85.004 634.701 85.504 638.201 701 | c 86.703 646.502 88.406 647.099 103.004 643.701 c 109.605 642.201 l 110.805 702 | 630.002 l 112.605 610.4 113.406 612.502 102.203 607.298 c 96.805 604.798 703 | 92.004 602.798 91.406 602.798 c 90.906 602.798 89.703 605.099 88.703 607.798 704 | c 87.504 611.4 86.504 612.9 85.004 613.099 c 82.305 613.502 82.305 612.099 705 | 84.605 591.599 c 86.203 577.002 86.305 576.298 88.406 576.298 c 90.203 706 | 576.298 90.805 577.002 91.305 580.298 c 91.703 582.599 93.105 585.502 94.703 707 | 587.201 c 96.305 589.002 111.406 597.099 133.703 608.298 c 165.703 624.4 708 | 169.906 626.798 169.906 628.9 c 169.906 630.099 169.504 631.4 169.004 631.701 709 | c 168.605 632.002 150.504 637.201 129.004 643.099 c 86.504 654.9 85.305 710 | 655.4 82.805 663.002 c 81.805 666.099 78.805 667.599 77.605 665.599 c h 711 | 135.305 634.9 m 142.406 632.9 148.305 631.201 148.504 631.002 c 148.703 712 | 630.9 141.906 627.298 133.504 623.099 c 118.105 615.4 l 117.504 623.099 713 | l 117.105 627.298 116.605 632.9 116.305 635.502 c 115.703 640.201 l 119.105 714 | 639.298 l 120.906 638.798 128.203 636.798 135.305 634.9 c h 715 | 135.305 634.9 m f 716 | 940.906 583.4 m 940.906 582.9 939.703 574.201 938.305 564.201 c 936.203 717 | 549.4 936.004 545.798 937.105 545.201 c 939.605 543.599 940.504 544.298 718 | 942.305 549.201 c 943.305 552.002 944.703 554.701 945.504 555.4 c 946.703 719 | 556.4 953.504 555.798 979.203 552.4 c 996.906 550.099 1012.406 547.9 1013.605 720 | 547.599 c 1016.203 547.002 1017.703 543.099 1017.305 538.099 c 1017.004 721 | 535.099 1017.305 534.298 1019.004 533.798 c 1020.105 533.4 1021.305 533.4 722 | 1021.605 533.701 c 1022.305 534.4 1026.805 565.599 1026.906 570.099 c 1026.906 723 | 572.798 1026.504 573.298 1024.504 573.298 c 1022.605 573.298 1022.004 572.599 724 | 1021.504 569.9 c 1021.105 568.002 1019.906 565.298 1018.703 563.798 c 1016.305 725 | 560.701 1020.805 560.4 978.105 566.4 c 962.605 568.599 949.203 570.599 726 | 948.406 570.9 c 946.703 571.599 946.105 573.701 945.703 579.798 c 945.406 727 | 583.099 945.004 583.9 943.203 584.099 c 941.906 584.298 940.906 584.002 728 | 940.906 583.4 c h 729 | 940.906 583.4 m f 730 | 169.605 577.599 m 169.203 577.298 168.906 575.502 168.906 573.599 c 168.906 731 | 569.4 166.805 564.4 164.203 562.002 c 161.906 560.002 112.105 548.4 105.605 732 | 548.298 c 100.406 548.298 98.805 549.298 95.906 554.701 c 93.605 559.002 733 | 90.805 560.599 89.504 558.4 c 88.504 556.9 96.305 524.099 97.703 523.502 734 | c 99.805 522.701 100.703 524.4 101.406 530.298 c 102.105 536.599 102.906 735 | 537.701 107.906 540.298 c 111.605 542.201 157.105 552.701 158.906 552.099 736 | c 159.406 551.9 147.305 537.4 131.906 519.798 c 104.406 488.298 101.504 737 | 484.201 105.406 482.701 c 106.203 482.4 121.406 485.298 139.105 489.099 738 | c 156.906 493.002 173.203 496.502 175.406 496.798 c 181.406 497.701 184.305 739 | 496.201 186.906 490.9 c 188.605 487.201 189.605 486.298 191.605 486.298 740 | c 193.504 486.298 194.004 486.701 193.703 488.099 c 193.504 489.002 191.703 741 | 496.9 189.805 505.599 c 186.504 520.701 186.305 521.4 184.105 521.099 c 742 | 182.004 520.798 181.703 520.201 181.406 515.002 c 181.004 508.4 180.004 743 | 506.798 175.004 504.701 c 171.004 503.002 127.805 493.099 127.203 493.701 744 | c 127.004 493.9 138.605 507.502 152.906 523.9 c 182.504 557.9 179.703 552.201 745 | 175.703 569.599 c 174.105 576.4 173.305 578.298 172.004 578.298 c 171.004 746 | 578.298 169.906 578.002 169.605 577.599 c h 747 | 169.605 577.599 m f 748 | 929.504 525.701 m 929.004 523.9 929.305 522.502 930.504 521.201 c 932.203 749 | 519.298 932.105 519.099 929.105 516.002 c 922.703 509.4 919.605 497.599 750 | 921.805 488.701 c 924.605 477.701 933.805 470.298 944.605 470.298 c 955.004 751 | 470.298 959.605 473.701 971.406 489.9 c 979.504 501.002 982.703 503.298 752 | 990.105 503.298 c 999.105 503.298 1005.305 497.599 1005.203 489.599 c 1005.004 753 | 476.099 995.305 467.4 978.605 465.599 c 973.605 465.099 972.805 464.701 754 | 972.305 462.599 c 971.906 461.298 971.805 460.099 972.004 459.9 c 973.105 755 | 459.002 1000.105 453.298 1000.906 453.798 c 1002.406 454.701 1002.105 458.9 756 | 1000.406 460.298 c 999.105 461.4 999.305 462.002 1001.906 465.298 c 1015.406 757 | 482.4 1013.305 506.502 997.605 514.502 c 991.406 517.599 981.406 518.099 758 | 976.305 515.502 c 971.605 513.002 965.105 506.298 958.004 496.599 c 951.605 759 | 487.798 948.004 484.599 943.305 483.701 c 931.703 481.502 923.703 492.298 760 | 928.703 503.502 c 932.105 511.201 937.906 514.298 951.406 515.798 c 954.703 761 | 516.201 957.504 516.599 957.605 516.701 c 957.805 516.798 958.004 518.002 762 | 958.105 519.298 c 958.406 521.502 957.703 521.798 944.906 524.9 c 937.504 763 | 526.701 931.105 528.201 930.805 528.298 c 930.406 528.298 929.805 527.099 764 | 929.504 525.701 c h 765 | 929.504 525.701 m f 766 | 198.203 469.502 m 197.203 468.9 197.305 467.599 198.605 463.599 c 200.004 767 | 459.099 200.105 458.201 198.805 456.298 c 197.305 454.002 164.406 434.502 768 | 151.105 428.002 c 141.805 423.502 136.105 422.798 131.703 425.701 c 128.406 769 | 427.9 125.906 433.002 125.906 437.701 c 125.906 441.599 125.703 441.502 770 | 134.004 441.798 c 143.406 442.002 147.703 446.599 144.906 453.4 c 141.805 771 | 460.701 132.203 460.002 125.203 451.9 c 117.703 443.502 118.605 431.9 127.605 772 | 421.298 c 133.305 414.502 146.004 411.298 155.004 414.502 c 156.805 415.099 773 | 168.504 421.502 180.906 428.599 c 193.305 435.701 204.504 442.002 205.805 774 | 442.502 c 207.906 443.298 208.805 442.798 212.605 439.099 c 216.605 435.201 775 | 217.004 435.002 218.504 436.502 c 220.004 438.002 219.406 439.4 211.004 776 | 454.201 c 205.906 463.099 201.203 470.298 200.605 470.298 c 199.906 470.298 777 | 198.805 469.9 198.203 469.502 c h 778 | 198.203 469.502 m f 779 | 912.805 457.502 m 910.406 455.9 907.203 453.201 905.703 451.502 c 903.004 780 | 448.298 881.906 410.099 881.906 408.4 c 881.906 407.9 882.703 407.201 883.703 781 | 406.798 c 884.906 406.298 886.305 407.201 888.504 409.701 c 890.504 412.002 782 | 892.504 413.298 894.004 413.298 c 896.105 413.298 903.406 409.599 934.203 783 | 392.9 c 957.605 380.201 957.605 380.201 955.203 373.4 c 953.703 369.002 784 | 954.305 367.298 957.406 367.298 c 958.004 367.298 962.305 374.599 967.105 785 | 383.599 c 975.605 399.4 975.703 399.798 973.605 401.002 c 971.703 402.002 786 | 971.203 401.701 969.203 398.701 c 966.406 394.701 963.703 393.099 961.203 787 | 394.002 c 958.105 395.201 935.906 407.502 935.906 408.002 c 935.906 408.298 788 | 936.805 410.002 937.906 411.798 c 939.805 414.9 940.504 415.201 948.406 789 | 416.298 c 953.105 417.002 963.703 418.201 972.004 419.201 c 987.203 420.798 790 | l 992.504 430.298 l 995.406 435.502 997.805 440.298 997.906 441.002 c 997.906 791 | 441.599 997.105 442.4 996.004 442.798 c 994.703 443.201 993.004 442.201 792 | 990.305 439.4 c 985.504 434.701 983.703 434.201 960.703 431.099 c 943.004 793 | 428.701 l 943.605 434.701 l 943.906 438.099 943.605 442.701 943.004 445.099 794 | c 939.504 457.798 923.605 464.298 912.805 457.502 c h 795 | 926.004 443.298 m 930.805 440.798 934.605 436.201 935.906 431.201 c 937.203 796 | 426.298 936.504 422.502 933.004 415.599 c 930.406 410.4 l 915.406 418.502 797 | l 907.203 422.9 900.004 426.9 899.504 427.298 c 899.105 427.798 900.203 798 | 430.9 902.004 434.298 c 905.203 440.4 909.504 444.599 913.406 445.599 c 799 | 916.406 446.4 921.906 445.4 926.004 443.298 c h 800 | 926.004 443.298 m f 801 | 228.504 418.4 m 227.504 417.298 227.203 416.201 227.703 415.9 c 228.305 802 | 415.599 229.406 413.298 230.203 410.798 c 231.703 406.502 231.703 406.201 803 | 229.605 403.798 c 228.406 402.502 216.203 392.798 202.504 382.298 c 185.203 804 | 369.099 176.805 363.298 175.004 363.298 c 173.504 363.298 171.105 364.599 805 | 168.906 366.798 c 165.703 369.9 165.105 370.201 163.406 368.9 c 161.703 806 | 367.701 162.305 366.599 172.906 352.701 c 179.105 344.502 184.605 337.4 807 | 185.105 336.798 c 185.605 336.298 186.605 336.502 187.605 337.599 c 189.203 808 | 339.099 189.105 339.599 186.906 344.298 c 184.605 349.298 184.605 349.4 809 | 186.504 351.798 c 189.504 355.798 239.203 393.298 241.406 393.298 c 242.406 810 | 393.298 245.004 391.701 247.004 389.701 c 250.203 386.599 251.004 386.298 811 | 252.805 387.298 c 254.203 388.002 254.703 388.9 254.203 389.701 c 252.504 812 | 392.599 231.406 420.201 230.805 420.201 c 230.504 420.298 229.406 419.4 813 | 228.504 418.4 c h 814 | 228.504 418.4 m f 815 | 853.504 369.099 m 832.703 344.099 832.004 343.002 833.906 341.599 c 835.703 816 | 340.298 836.203 340.4 838.906 342.701 c 843.004 346.099 845.305 346.701 817 | 848.605 344.9 c 850.105 344.002 862.203 334.201 875.406 323.002 c 892.004 818 | 309.002 899.504 302.099 899.703 300.502 c 899.906 299.201 898.906 296.4 819 | 897.504 294.298 c 895.105 290.701 895.105 290.4 896.805 288.9 c 898.406 820 | 287.4 899.906 288.9 920.504 313.502 c 932.504 327.798 943.004 340.4 943.703 821 | 341.4 c 944.805 343.002 944.004 344.099 936.305 351.502 c 931.605 356.099 822 | 927.203 360.002 926.605 360.201 c 925.105 360.701 922.805 357.201 923.703 823 | 355.9 c 926.004 352.9 929.906 341.701 929.906 338.298 c 929.906 334.298 824 | 925.703 327.798 917.105 318.599 c 911.004 311.9 909.703 312.201 893.703 825 | 325.502 c 882.906 334.502 l 887.605 339.9 l 894.504 348.099 896.906 348.798 826 | 904.805 345.298 c 908.105 343.798 909.504 343.502 910.504 344.4 c 911.305 827 | 345.002 911.906 345.9 911.906 346.4 c 911.906 347.4 887.406 368.298 886.105 828 | 368.298 c 885.605 368.298 884.605 367.701 884.004 366.9 c 883.004 365.701 829 | 883.305 364.701 885.305 361.599 c 889.406 355.502 889.504 352.502 886.004 830 | 347.298 c 884.406 344.798 881.906 341.798 880.605 340.502 c 878.305 338.298 831 | l 865.605 348.9 l 853.004 359.599 l 857.605 365.502 l 860.203 368.701 864.203 832 | 373.099 866.504 375.298 c 870.605 379.002 871.305 379.298 876.805 379.298 833 | c 880.105 379.298 884.004 378.798 885.504 378.298 c 888.305 377.201 890.906 834 | 378.4 890.906 380.798 c 890.906 381.4 887.406 384.9 883.004 388.599 c 875.203 835 | 395.201 l h 836 | 853.504 369.099 m f 837 | 268.004 371.9 m 267.105 370.9 267.504 369.298 269.406 365.201 c 272.406 838 | 358.701 272.504 357.298 269.906 352.502 c 266.906 346.599 230.004 309.502 839 | 226.406 308.701 c 224.203 308.201 222.203 308.599 218.703 310.502 c 214.305 840 | 312.9 213.906 312.9 212.504 311.4 c 211.105 309.798 211.605 309.099 218.203 841 | 302.701 c 237.605 284.099 236.805 284.701 238.504 286.502 c 240.004 288.002 842 | 239.906 288.4 237.504 292.502 c 234.105 298.298 234.203 302.002 237.805 843 | 307.002 c 243.105 314.298 272.406 344.4 272.703 342.9 c 272.906 342.099 844 | 270.703 322.9 267.906 300.201 c 262.805 258.9 l 264.906 256.9 l 266.906 845 | 254.798 l 270.703 258.798 l 272.805 261.002 284.605 273.201 296.805 286.002 846 | c 321.906 312.201 322.305 312.502 330.305 308.002 c 334.605 305.599 334.906 847 | 305.599 336.406 307.298 c 337.805 308.9 337.105 309.798 324.906 321.298 848 | c 313.004 332.502 311.703 333.502 310.203 332.099 c 308.805 330.599 308.906 849 | 330.002 311.805 324.9 c 315.004 319.4 l 313.105 315.099 l 311.906 312.4 850 | 304.906 304.201 294.805 293.599 c 285.906 284.099 278.406 276.502 278.305 851 | 276.599 c 278.203 276.701 280.305 294.701 283.105 316.701 c 288.203 356.502 852 | l 279.305 364.9 l 274.406 369.4 270.105 373.201 269.805 373.298 c 269.406 853 | 373.298 268.605 372.701 268.004 371.9 c h 854 | 268.004 371.9 m f 855 | 814.605 326.4 m 800.605 315.002 801.203 315.599 803.105 313.701 c 804.504 856 | 312.298 804.906 312.298 807.805 313.701 c 814.504 317.201 815.703 317.4 857 | 817.906 315.099 c 820.406 312.4 837.805 259.798 836.504 258.599 c 836.105 858 | 258.201 789.906 285.298 785.203 288.798 c 782.105 290.9 782.305 292.9 785.906 859 | 296.502 c 789.305 299.798 789.504 300.599 787.504 302.201 c 786.305 303.201 860 | 783.406 301.298 772.004 292.298 c 759.605 282.502 758.004 280.9 758.906 861 | 279.201 c 760.203 276.9 759.504 277.002 765.203 278.9 c 768.805 280.099 862 | 770.605 280.201 772.906 279.502 c 774.504 278.9 790.406 269.701 808.203 863 | 259.002 c 848.605 234.701 844.305 237.002 846.805 239.099 c 848.906 240.798 864 | l 845.406 252.298 l 833.105 291.798 825.805 316.701 825.305 320.502 c 824.805 865 | 324.099 825.203 325.4 827.305 328.701 c 829.406 331.701 829.703 332.798 866 | 828.805 333.9 c 828.203 334.701 827.105 335.298 826.504 335.201 c 825.906 867 | 335.201 820.504 331.201 814.605 326.4 c h 868 | 814.605 326.4 m f 869 | 343.406 291.002 m 332.105 287.201 322.906 280.002 316.504 270.002 c 311.105 870 | 261.599 309.406 255.298 309.406 243.798 c 309.406 234.9 309.703 233.201 871 | 312.305 228.002 c 316.703 218.9 324.504 211.201 334.203 206.4 c 342.605 872 | 202.298 353.504 198.9 356.805 199.502 c 357.805 199.701 361.504 204.099 873 | 365.105 209.298 c 372.203 219.798 374.605 221.099 380.805 217.9 c 383.703 874 | 216.4 383.906 216.4 384.906 218.4 c 385.605 219.502 385.906 220.701 385.605 875 | 220.9 c 385.305 221.201 378.203 226.099 369.805 231.9 c 355.805 241.4 354.305 876 | 242.201 353.203 240.599 c 351.406 238.201 351.504 237.701 354.906 235.298 877 | c 356.605 234.099 358.605 231.9 359.406 230.4 c 360.605 227.9 360.605 227.201 878 | 358.906 223.701 c 355.504 217.099 349.504 209.798 347.004 209.502 c 339.703 879 | 208.4 329.004 215.002 324.406 223.4 c 321.703 228.201 321.406 229.701 321.504 880 | 236.798 c 321.703 246.099 323.906 252.9 330.004 262.298 c 341.805 280.599 881 | 359.004 288.798 371.906 282.298 c 384.203 276.201 387.906 265.9 383.504 882 | 249.798 c 382.004 244.201 382.105 243.701 383.605 242.599 c 384.504 241.9 883 | 385.605 241.298 386.004 241.298 c 386.305 241.298 390.406 247.002 395.004 884 | 253.9 c 403.004 266.002 403.203 266.599 401.406 267.9 c 400.305 268.701 885 | 398.305 269.099 396.906 268.798 c 394.805 268.4 393.906 269.002 391.203 886 | 273.298 c 387.305 279.201 379.406 285.701 371.906 289.099 c 365.203 292.201 887 | 350.004 293.099 343.406 291.002 c h 888 | 343.406 291.002 m f 889 | 732.004 266.298 m 722.906 261.9 715.105 257.9 714.703 257.502 c 714.305 890 | 257.099 714.504 255.9 715.105 255.002 c 716.305 253.502 717.004 253.4 722.305 891 | 254.502 c 727.805 255.701 728.305 255.599 729.504 253.798 c 730.203 252.701 892 | 737.406 238.4 745.504 222.099 c 760.105 192.599 760.203 192.4 758.504 189.798 893 | c 757.605 188.4 755.203 186.502 753.406 185.599 c 749.504 183.701 749.406 894 | 183.4 751.203 180.9 c 752.406 179.201 753.703 179.701 770.203 188.002 c 895 | 786.906 196.298 787.906 197.002 786.605 198.701 c 785.305 200.502 784.805 896 | 200.502 780.605 199.4 c 778.203 198.701 775.105 198.4 774.004 198.798 c 897 | 772.406 199.298 768.703 205.798 759.805 224.099 c 740.906 262.701 741.504 898 | 261.099 743.305 263.798 c 744.105 265.002 746.406 267.099 748.305 268.298 899 | c 751.305 270.099 751.703 270.798 750.906 272.4 c 750.305 273.4 749.504 900 | 274.298 749.105 274.298 c 748.703 274.298 741.004 270.701 732.004 266.298 901 | c h 902 | 732.004 266.298 m f 903 | 682.406 243.701 m 674.203 240.099 667.305 237.002 667.105 236.798 c 666.906 904 | 236.599 667.004 235.502 667.406 234.298 c 668.004 232.502 668.504 232.298 905 | 671.703 232.9 c 680.906 234.701 683.305 233.298 687.906 224.298 c 690.406 906 | 219.298 702.805 191.201 705.004 185.4 c 705.906 183.099 l 701.703 185.599 907 | l 697.703 187.9 672.703 202.298 647.305 216.9 c 636.203 223.298 l 627.805 908 | 219.701 l 623.203 217.701 617.906 215.4 616.203 214.701 c 613.305 213.4 909 | 613.105 213.099 614.004 210.9 c 615.004 208.798 615.406 208.599 619.105 910 | 209.4 c 623.805 210.502 629.805 209.099 632.203 206.502 c 634.105 204.502 911 | 651.906 164.099 654.906 155.201 c 657.305 148.201 656.605 145.701 651.504 912 | 141.798 c 648.105 139.201 646.906 136.099 648.805 134.798 c 650.105 134.099 913 | 681.203 147.701 681.703 149.201 c 682.605 151.9 680.004 153.099 675.305 914 | 152.099 c 669.504 150.798 665.805 152.298 662.703 157.099 c 660.504 160.4 915 | 654.703 173.201 644.504 197.099 c 641.004 205.298 l 643.703 203.9 l 645.203 916 | 203.099 662.004 193.502 681.203 182.4 c 712.906 164.099 716.105 162.502 917 | 718.406 163.502 c 719.805 164.099 720.906 165.002 720.906 165.4 c 720.906 918 | 165.798 714.805 180.002 707.406 197.002 c 700.004 214.002 693.406 230.298 919 | 692.703 233.298 c 691.504 238.599 l 696.203 242.798 l 699.605 245.701 700.805 920 | 247.502 700.305 248.599 c 700.004 249.502 699.203 250.298 698.504 250.201 921 | c 697.906 250.201 690.703 247.298 682.406 243.701 c h 922 | 682.406 243.701 m f 923 | 510.906 204.798 m 510.906 202.9 511.406 202.298 512.906 202.298 c 515.805 924 | 202.298 520.605 199.599 521.805 197.502 c 522.406 196.4 522.805 183.4 522.906 925 | 166.9 c 523.004 136.201 523.305 133.798 528.203 128.4 c 536.105 119.9 551.406 926 | 116.201 564.406 119.701 c 574.004 122.201 580.004 126.798 584.203 134.701 927 | c 586.203 138.599 586.406 140.4 586.906 167.298 c 587.305 187.599 587.805 928 | 196.4 588.703 198.002 c 589.805 200.099 595.203 202.298 599.203 202.298 929 | c 600.305 202.298 600.906 203.099 600.906 204.798 c 600.906 207.298 l 564.906 930 | 207.298 l 564.906 205.002 l 564.906 203.099 565.703 202.599 570.004 201.599 931 | c 572.805 200.9 575.703 199.798 576.504 199.201 c 579.305 196.9 580.105 932 | 188.002 579.703 163.599 c 579.406 139.502 l 576.406 135.099 l 572.203 129.099 933 | 566.004 126.201 557.406 126.099 c 548.105 126.099 542.305 129.099 538.906 934 | 135.798 c 536.406 140.701 536.406 141.298 536.105 168.599 c 535.703 200.4 935 | 535.703 200.599 543.105 202.002 c 546.504 202.701 547.504 203.298 547.703 936 | 205.099 c 548.004 207.298 l 510.906 207.298 l h 937 | 510.906 204.798 m f 938 | Q Q 939 | showpage 940 | %%Trailer 941 | end restore 942 | %%EOF 943 | -------------------------------------------------------------------------------- /figure/njuname.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.8 (http://cairographics.org) 3 | %%CreationDate: Sat May 19 15:06:28 2018 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 0 0 1543 490 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 | %%EndProlog 62 | %%BeginSetup 63 | %%EndSetup 64 | %%Page: 1 1 65 | %%BeginPageSetup 66 | %%PageBoundingBox: 0 0 1543 490 67 | %%EndPageSetup 68 | q 0 0 1543 490 rectclip q 69 | 0 g 70 | 140.859 486.301 m 134.859 478.602 134.258 474.5 137.66 463.801 c 138.758 71 | 460.398 139.961 453.602 140.359 448.801 c 141.16 437.301 138.961 415.301 72 | 136.758 412 c 135.461 410.199 134.559 404.5 133.16 390.5 c 131.66 374.398 73 | 131.559 369.699 132.559 359.699 c 133.461 350 133.461 346.898 132.258 341.699 74 | c 131.461 338.301 130.461 332.102 130.16 328 c 129.758 323.898 128.961 75 | 319.898 128.359 319.199 c 127.758 318.398 124.559 316.5 121.16 314.898 c 76 | 117.859 313.301 112.258 309.801 108.66 307 c 105.059 304.199 99.258 299.801 77 | 95.758 297.199 c 92.258 294.602 88.66 291.602 87.758 290.602 c 74.961 275.5 78 | 71.66 271.5 71.66 270.801 c 71.66 270.398 70.859 270 69.859 270 c 68.859 79 | 270 66.16 268 63.758 265.699 c 60.559 262.301 58.961 261.398 57.16 261.801 80 | c 54.461 262.301 51.461 259.602 47.961 253.301 c 45.66 249.301 l 48.461 81 | 243.898 l 51.16 238.5 l 61.66 238.5 l 72.66 238.5 74.059 238.102 83.16 82 | 232.5 c 87.461 229.898 90.961 229.398 95.059 231 c 98.359 232.199 102.059 83 | 230.898 104.059 227.801 c 104.859 226.5 106.059 221.398 106.559 216.5 c 84 | 107.961 204.199 107.059 203 91.359 197.5 c 83.758 194.801 83.359 194.102 85 | 84.16 183.5 c 84.859 173.5 84.66 173 77.758 169.5 c 72.359 166.801 65.859 86 | 160.199 59.359 150.699 c 56.059 145.801 51.758 140.602 49.961 139.199 c 87 | 47.758 137.398 44.559 132.602 40.859 125.5 c 36.359 116.801 33.66 112.898 88 | 27.859 107 c 20.461 99.602 l 18.559 101.898 l 17.559 103.199 16.16 106.102 89 | 15.559 108.301 c 14.258 113.199 10.961 122.5 9.359 125.801 c 8.758 127 90 | 7.559 127.898 6.758 127.801 c 4.059 127.301 1.859 120.898 0.66 110 c -0.641 91 | 98 -0.039 87 2.66 75.5 c 6.16 60.398 6.758 56.5 6.059 51.301 c 5.559 47 92 | 5.859 45.199 8.059 40.398 c 11.66 32.699 18.16 23.699 27.66 13.699 c 33.66 93 | 7.398 36.559 5 39.758 4.102 c 45.66 2.301 56.758 2.5 60.359 4.301 c 64.258 94 | 6.398 69.461 17.5 70.258 25.602 c 70.859 30.699 70.559 32.5 68.16 38 c 95 | 66.66 41.602 65.258 45.699 64.961 47.301 c 64.258 50.801 58.059 56.102 51.059 96 | 59.199 c 48.16 60.398 45.66 61.898 45.66 62.398 c 45.66 62.801 44.559 64.5 97 | 43.16 66.199 c 40.66 69.199 39.961 72.398 41.559 73.398 c 41.961 73.699 98 | 42.66 76 43.059 78.602 c 43.758 84.199 51.66 103.102 55.758 109.301 c 59.359 99 | 114.699 62.859 116.5 72.559 117.898 c 76.559 118.398 80.258 119.199 80.66 100 | 119.699 c 80.961 120.102 84.16 124 87.66 128.301 c 93.859 136.102 97.359 101 | 138.602 100.559 137.5 c 101.461 137.199 103.758 134.898 105.66 132.398 102 | c 107.559 129.898 109.961 126.801 110.859 125.699 c 114.359 121.301 114.059 103 | 118.801 109.758 113 c 102.66 103.602 105.559 99.398 115.461 104.398 c 123.16 104 | 108.301 125.059 108 128.559 101.898 c 132.359 95.102 133.16 89.398 131.258 105 | 82.699 c 129.461 76.5 127.16 74.199 115.461 66.699 c 110.66 63.602 106.359 106 | 60.301 105.859 59.301 c 104.461 56.602 106.059 53.398 110.758 50 c 115.461 107 | 46.602 118.66 46.301 124.16 48.602 c 127.859 50.102 128.059 50.102 131.961 108 | 47.301 c 134.859 45.199 136.258 43.199 137.559 39.398 c 138.461 36.602 109 | 141.059 31.199 143.359 27.398 c 145.66 23.602 147.859 18.898 148.359 17 110 | c 149.16 13.898 149.758 13.5 152.758 13.199 c 157.859 12.801 162.258 15.898 111 | 163.16 20.699 c 164.059 25.699 166.859 30.199 171.859 34.398 c 181.66 42.801 112 | 183.359 47.898 181.66 63.5 c 180.359 75.102 180.66 80.301 183.059 83.5 113 | c 185.461 86.801 191.461 84 200.461 75.602 c 206.66 69.801 209.059 68.199 114 | 212.359 67.699 c 217.359 66.898 221.258 62.801 226.16 53 c 228.059 49.199 115 | 230.059 45.898 230.559 45.602 c 232.359 44.5 236.66 47 241.359 51.898 c 116 | 246.559 57.199 249.359 59 252.559 59 c 253.961 59 255.758 60.801 258.258 117 | 64.801 c 260.16 67.898 265.559 74 269.961 78.199 c 278.16 86 l 277.859 118 | 96.699 l 277.758 103.199 276.859 110.5 275.758 115 c 274.258 120.898 273.758 119 | 126.398 273.66 141 c 273.559 151.199 273.859 162.199 274.16 165.5 c 274.559 120 | 168.801 275.16 177.602 275.559 185 c 276.059 192.398 277.059 201.898 277.859 121 | 206 c 278.758 210.102 279.758 218 280.16 223.5 c 280.461 229 281.359 236.699 122 | 282.16 240.5 c 282.961 244.398 283.859 249.801 284.16 252.5 c 284.559 255.301 123 | 286.16 260 287.66 263 c 289.16 266.102 290.758 270.801 291.16 273.5 c 291.559 124 | 276.301 293.258 282.398 294.758 287.199 c 297.961 296.801 297.758 298.699 125 | 293.258 304.102 c 291.961 305.699 289.461 309.398 287.758 312.301 c 285.559 126 | 316.102 282.859 318.898 278.461 322 c 274.961 324.398 269.16 329.398 265.559 127 | 333.199 c 258.059 341 257.66 341.102 245.66 337.898 c 241.258 336.801 237.258 128 | 336.102 236.758 336.398 c 234.859 337.602 232.359 335.5 226.559 328.199 129 | c 223.359 324.102 219.16 319.602 217.258 318.102 c 215.359 316.699 211.559 130 | 312.699 208.758 309.301 c 205.961 305.898 201.859 301.699 199.559 299.801 131 | c 193.16 294.699 191.859 293.301 180.66 278.602 c 174.559 270.5 165.16 132 | 259.898 158.16 253.102 c 151.559 246.699 143.859 238.699 141.059 235.398 133 | c 138.16 232.102 133.859 228.301 131.359 227 c 124.258 223.301 123.961 134 | 224.199 126.059 240.699 c 128.559 260 130.66 267 135.461 271.199 c 140.66 135 | 275.699 156.559 293.5 160.359 299 c 164.16 304.5 169.758 309.898 188.66 136 | 326.199 c 196.66 333.102 205.258 341.199 207.66 344.301 c 210.16 347.398 137 | 212.66 349.898 213.258 350 c 213.758 350 215.859 351.199 217.758 352.602 138 | c 219.66 354 222.758 355.801 224.66 356.602 c 237.16 361.898 241.461 380 139 | 232.461 389.102 c 229.059 392.398 225.758 392.801 218.258 390.5 c 211.66 140 | 388.5 208.461 388.602 205.359 391 c 202.059 393.602 202.359 395.602 207.961 141 | 409.5 c 211.059 417.199 211.961 420.898 212.059 425.699 c 212.16 433.301 142 | 210.16 436.5 203.059 439.801 c 200.359 441.102 194.758 445.5 190.66 449.398 143 | c 186.16 453.801 181.66 457.199 179.461 457.898 c 174.758 459.398 173.258 144 | 463.398 173.258 474.398 c 173.16 482 173.059 482.301 169.859 485 c 165.461 145 | 488.602 160.461 490 151.359 490 c 143.859 490 143.859 490 140.859 486.301 146 | c h 147 | 224.16 294.801 m 226.859 291.602 226.961 291.398 226.059 282.5 c 225.66 148 | 277.602 225.359 271 225.461 268 c 225.559 265 224.758 258 223.66 252.5 149 | c 221.359 240.699 221.059 235.801 222.059 227 c 222.66 222 222.461 219.102 150 | 221.16 214.5 c 219.16 207.5 217.961 184 216.859 131.301 c 216.258 102.301 151 | 215.961 96.801 214.559 95.5 c 212.559 93.5 202.16 92.602 191.258 93.5 c 152 | 182.461 94.199 l 182.961 97.801 l 183.16 99.898 183.961 105.102 184.758 153 | 109.602 c 185.961 117.199 185.859 117.898 184.059 121.102 c 182.758 123.301 154 | 181.16 124.602 179.559 124.801 c 174.66 125.398 168.66 128.102 168.66 129.898 155 | c 168.66 130.801 169.758 133.199 171.16 135.199 c 172.559 137.199 173.66 156 | 139.699 173.66 140.699 c 173.66 141.699 171.859 146.301 169.66 151 c 167.461 157 | 155.699 165.66 160.398 165.66 161.602 c 165.66 165.102 167.758 170.102 158 | 172.859 178.602 c 175.559 183.102 179.258 191.398 181.16 197.102 c 183.961 159 | 205.801 185.16 208.102 188.461 211 c 190.559 212.898 193.559 216.398 195.16 160 | 218.801 c 196.66 221.102 198.359 223 198.758 223 c 199.258 223 199.66 225.801 161 | 199.66 229.301 c 199.66 236.602 197.461 241.102 192.461 243.602 c 181.359 162 | 249.199 181.859 255.602 194.859 271.102 c 205.258 283.602 218.859 298 220.258 163 | 298 c 220.961 298 222.66 296.5 224.16 294.801 c h 164 | 161.359 223.699 m 163.16 222 160.461 201.5 157.758 195.602 c 156.559 193.102 165 | 155.559 188.398 155.258 183.699 c 154.961 178.301 154.16 175 152.758 172.699 166 | c 148.16 165.398 147.66 164 147.059 154.398 c 146.258 142.301 144.859 139 167 | 140.559 139 c 138.258 139 136.359 140.102 133.461 143 c 129.461 147 129.461 168 | 147.102 130.059 152.801 c 131.961 170.898 131.961 173.5 130.16 176.898 169 | c 128.859 179.602 128.66 181.602 129.16 187.398 c 129.559 191.398 130.559 170 | 195.199 131.359 196.199 c 132.258 197.102 133.16 199.398 133.559 201.199 171 | c 134.059 203.602 135.258 205 137.859 206.5 c 141.559 208.602 147.66 218.199 172 | 147.66 222 c 147.66 226.699 157.16 227.898 161.359 223.699 c h 173 | 161.359 223.699 m f 174 | 1421.559 480 m 1415.16 475.801 1408.961 469 1408.359 465.5 c 1408.059 463.898 175 | 1407.359 460.699 1406.758 458.5 c 1406.059 455.5 1406.16 451.699 1407.258 176 | 443.801 c 1408.961 431.199 1408.359 426.102 1403.16 409.102 c 1401.258 177 | 402.801 1399.359 395.199 1398.961 392.102 c 1398.66 389 1397.258 384.199 178 | 1395.961 381.301 c 1393.559 376.199 1393.16 375.801 1383.16 370.898 c 1373.16 179 | 365.898 1372.461 365.699 1361.461 365 c 1355.258 364.602 1349.359 363.898 180 | 1348.461 363.5 c 1345.059 362.102 1341.66 356.301 1341.66 352 c 1341.66 181 | 346.398 1339.66 345.898 1333.859 350 c 1329.258 353.199 1323.16 354.801 182 | 1321.059 353.301 c 1320.461 352.898 1317.66 348.699 1314.859 344 c 1309.461 183 | 334.801 1309.559 333.199 1315.758 334.5 c 1319.461 335.301 1321.961 333.801 184 | 1329.16 326.199 c 1335.16 319.898 1339.059 314.398 1340.16 310.898 c 1340.559 185 | 309.602 1341.961 307.199 1343.258 305.699 c 1346.059 302.398 1346.16 300.5 186 | 1344.258 295.301 c 1343.461 293.199 1342.461 290 1342.059 288.102 c 1340.258 187 | 281.398 1338.66 281.801 1328.961 291.102 c 1324.16 295.699 1318.461 300.398 188 | 1316.359 301.301 c 1311.66 303.602 1308.258 303.199 1307.859 300.398 c 189 | 1307.66 299.199 1305.559 295.898 1303.059 293 c 1298.559 287.801 l 1301.758 190 | 282.199 l 1303.461 279.102 1306.461 274.398 1308.258 271.699 c 1310.16 191 | 269 1311.66 266.199 1311.66 265.398 c 1311.66 264.699 1310.359 262.5 1308.66 192 | 260.699 c 1306.66 258.398 1305.66 256.199 1305.66 254 c 1305.66 249.5 1309.461 193 | 243 1312.059 243 c 1313.258 243 1316.559 241.898 1319.461 240.5 c 1329.16 194 | 236 1333.359 237.301 1339.461 246.301 c 1345.16 254.898 1345.859 257.301 195 | 1345.16 265.5 c 1344.059 276.801 1346.559 280.5 1353.461 278 c 1357.059 196 | 276.699 l 1361.859 281.898 l 1367.16 287.699 1369.059 292.699 1368.461 197 | 300.199 c 1368.16 305.102 1368.758 306 1372.758 306 c 1375.16 306 1376.961 198 | 303.102 1380.059 294.602 c 1382.559 287.898 l 1375.961 277.199 l 1372.359 199 | 271.301 1368.059 264.602 1366.559 262.398 c 1363.859 258.398 1363.859 258.199 200 | 1365.559 256.602 c 1368.359 254 1372.059 254.699 1376.758 258.602 c 1379.059 201 | 260.5 1381.859 262.699 1382.961 263.5 c 1383.961 264.199 1386.66 269.301 202 | 1388.859 274.699 c 1393.66 286.699 1394.859 288.102 1399.059 287.301 c 203 | 1400.758 287 1403.059 286.102 1404.16 285.301 c 1405.258 284.602 1407.059 204 | 284 1408.16 284 c 1409.258 284 1411.559 283.102 1413.16 282 c 1417.461 205 | 279.102 1421.359 279.602 1427.66 283.5 c 1430.66 285.398 1433.758 287 1434.66 206 | 287 c 1436.859 287 1444.359 280.5 1446.16 276.898 c 1446.961 275.398 1447.66 207 | 272.398 1447.66 270.398 c 1447.66 267.398 1446.961 266 1443.559 262.801 208 | c 1439.059 258.5 1429.859 253.602 1422.258 251.301 c 1418.66 250.199 1415.66 209 | 248.301 1411.859 244.5 c 1408.16 240.898 1403.461 237.801 1396.859 234.5 210 | c 1391.461 231.898 1384.258 227.699 1380.66 225.102 c 1377.059 222.5 1370.758 211 | 218.898 1366.66 217.102 c 1362.559 215.301 1357.258 212.102 1354.961 209.898 212 | c 1352.66 207.801 1349.559 205.801 1347.961 205.398 c 1337.961 203.199 213 | 1334.961 201.5 1321.359 189.898 c 1319.66 188.5 1321.859 184.898 1325.859 214 | 182.301 c 1329.66 179.699 1330.559 179.602 1343.859 179.301 c 1358.359 215 | 179.102 1363.961 180.102 1365.258 183.398 c 1365.559 184.199 1369.461 187.801 216 | 1373.859 191.398 c 1378.258 195 1388.16 203.699 1395.859 210.699 c 1403.559 217 | 217.699 1410.859 224.199 1412.059 225 c 1413.16 225.699 1417.66 229.398 218 | 1421.859 233.199 c 1426.16 236.898 1431.359 240.801 1433.461 241.898 c 219 | 1435.66 243 1437.66 244.801 1437.859 245.801 c 1438.66 248.602 1444.559 220 | 252.699 1449.859 254.102 c 1453.859 255.199 1454.758 255.102 1457.059 253.699 221 | c 1464.258 249 1460.559 237.801 1443.758 213.5 c 1433.359 198.5 1429.66 222 | 194.602 1422.16 190.801 c 1411.859 185.602 1411.859 185.5 1417.66 179.398 223 | c 1425.461 171.199 1426.359 167.102 1421.758 161.801 c 1420.258 160 1418.66 224 | 156.898 1418.258 154.898 c 1416.461 145.199 1406.059 130.5 1400.258 129.398 225 | c 1398.16 129.102 1391.461 124.801 1383.059 118.398 c 1375.359 112.699 226 | 1366.059 106.398 1362.258 104.398 c 1357.059 101.602 1352.66 98 1344.461 227 | 89.602 c 1330.758 75.602 1332.859 77.602 1320.859 67.801 c 1307.059 56.801 228 | 1302.258 54.102 1292.859 52.5 c 1281.961 50.602 1280.258 49.699 1276.66 229 | 44.5 c 1271.961 37.699 1271.16 34.801 1273.16 31.102 c 1275.559 26.398 230 | 1282.359 23.602 1297.66 20.801 c 1315.258 17.602 1325.059 17.699 1332.961 231 | 21.301 c 1341.961 25.398 1343.961 27.301 1348.758 36.199 c 1352.16 42.699 232 | 1355.559 46.898 1364.16 55.602 c 1370.258 61.699 1377.758 68.301 1380.961 233 | 70.398 c 1385.258 73.199 1387.359 75.398 1389.359 79.301 c 1395.758 92.102 234 | 1407.961 106.699 1418.961 114.699 c 1423.859 118.301 l 1426.16 115.898 235 | l 1430.359 111.699 1431.16 105.898 1429.758 90.602 c 1428.059 73.199 1429.258 236 | 65.5 1434.961 55.801 c 1437.059 52.102 1439.059 47.301 1439.359 45.102 237 | c 1440.059 40.301 1439.258 39.801 1426.961 37 c 1422.16 35.801 1417.258 238 | 34.301 1416.059 33.5 c 1414.559 32.602 1409.059 32.102 1396.559 31.801 c 239 | 1381.859 31.5 1378.559 31.102 1375.461 29.5 c 1373.359 28.5 1371.66 27.301 240 | 1371.66 26.898 c 1371.66 24.398 1375.16 18.801 1377.461 17.602 c 1383.559 241 | 14.398 1400.758 11.5 1403.758 13.102 c 1404.859 13.699 1405.758 13.602 242 | 1406.16 13 c 1407.16 11.398 1411.859 11.801 1418.258 14 c 1427.359 17.199 243 | 1432.66 15.301 1441.859 5.898 c 1447.461 0 l 1455.16 0 l 1461.859 0 1463.258 244 | 0.301 1466.961 2.801 c 1469.258 4.398 1473.258 6.801 1475.758 8.301 c 1490.258 245 | 16.602 1492.258 28 1481.66 41.898 c 1478.059 46.5 1475.859 50.898 1473.66 246 | 57.5 c 1471.961 62.602 1469.66 67.602 1468.66 68.5 c 1467.461 69.602 1466.66 247 | 71.602 1466.66 73.602 c 1466.66 76.301 1465.359 78.398 1459.66 84.699 c 248 | 1455.859 89 1452.258 94 1451.66 95.898 c 1451.16 97.801 1449.059 101 1447.059 249 | 103.102 c 1443.559 106.699 1443.461 107.102 1443.859 112.398 c 1444.16 250 | 115.898 1445.461 120 1447.359 123.699 c 1450.359 129.5 1450.359 129.5 1455.758 251 | 130.102 c 1458.758 130.398 1463.461 131.398 1466.16 132.301 c 1471.359 252 | 134 1483.359 134.398 1484.258 132.898 c 1484.559 132.398 1485.961 132 1487.359 253 | 132 c 1492.359 132 1503.758 146.699 1505.758 155.602 c 1507.359 162.5 1505.66 254 | 168.199 1501.359 171.398 c 1498.758 173.301 1497.258 173.5 1487.559 173.301 255 | c 1476.66 173 l 1476.66 175.5 l 1476.66 179.398 1474.16 184.398 1471.16 256 | 186.801 c 1469.559 188 1464.66 190.199 1460.059 191.602 c 1447.461 195.398 257 | 1445.961 198.301 1451.66 207.5 c 1455.961 214.5 1474.66 229.199 1480.859 258 | 230.5 c 1482.66 230.898 1485.559 231.898 1487.16 232.801 c 1492.258 235.301 259 | 1508.66 252.102 1511.359 257.5 c 1515.059 264.699 1524.359 278.801 1528.359 260 | 283.398 c 1530.359 285.5 1532.859 289.602 1534.16 292.398 c 1535.359 295.199 261 | 1537.359 298.398 1538.559 299.398 c 1542.961 303.398 1539.859 310 1532.758 262 | 311.699 c 1531.359 312 1528.359 313.199 1526.258 314.199 c 1522.961 315.898 263 | 1521.758 316 1518.66 315.102 c 1516.559 314.5 1513.059 314 1510.859 314 264 | c 1505.461 314 1501.059 310.199 1496.258 301.301 c 1494.258 297.5 1492.059 265 | 293.801 1491.461 293 c 1490.16 291.5 1482.258 289 1478.66 289 c 1472.559 266 | 289 1474.559 300.801 1484.859 326.102 c 1491.059 341.301 1495.258 348.5 267 | 1501.66 354.5 c 1503.559 356.301 1505.359 359.5 1506.258 362.699 c 1507.059 268 | 365.602 1510.758 372.801 1514.359 378.699 c 1517.961 384.699 1521.859 391.5 269 | 1523.059 394 c 1524.258 396.602 1526.258 399.898 1527.461 401.5 c 1528.66 270 | 403 1530.66 407.5 1531.859 411.301 c 1533.359 416.301 1535.16 419.602 1538.258 271 | 423.102 c 1544.059 429.699 1544.059 432.199 1538.16 438.398 c 1533.559 272 | 443.301 1532.66 446.301 1534.758 450.102 c 1536.16 452.801 1534.059 455.199 273 | 1528.059 457.5 c 1524.059 459 1523.359 459 1521.859 457.699 c 1520.961 274 | 456.898 1517.059 455 1513.16 453.5 c 1504.359 450 1500.758 447.5 1499.16 275 | 443.602 c 1497.961 440.801 1498.059 440.102 1500.758 435.398 c 1504.359 276 | 429.102 1504.359 425.898 1501.16 418.602 c 1499.758 415.5 1498.66 411.699 277 | 1498.66 410.102 c 1498.66 408.602 1497.359 403.398 1495.66 398.699 c 1494.059 278 | 393.898 1492.66 389.398 1492.66 388.602 c 1492.66 385.5 1481.66 358.5 1478.461 279 | 353.898 c 1475.258 349.199 1472.66 347.301 1470.859 348.398 c 1470.359 280 | 348.699 1469.66 352.301 1469.359 356.398 c 1468.66 364.801 1465.859 373.102 281 | 1462.559 376.602 c 1460.461 378.801 1459.559 379 1450.461 379 c 1439.66 282 | 379 1434.961 377.699 1432.258 373.898 c 1429.758 370.199 1430.258 369.102 283 | 1435.961 366.602 c 1444.758 362.699 1448.359 356.602 1448.961 344.5 c 1449.16 284 | 339.801 1449.961 335.199 1450.961 333.398 c 1452.359 330.699 1453.258 330.199 285 | 1457.359 329.699 c 1462.359 329.199 1465.66 326.5 1465.66 322.898 c 1465.66 286 | 321.898 1464.359 316.801 1462.66 311.699 c 1461.059 306.5 1459.66 301.102 287 | 1459.66 299.699 c 1459.66 296.602 1454.258 292 1450.559 292 c 1449.16 292 288 | 1445.559 292.898 1442.359 294 c 1438.359 295.398 1435.461 295.801 1432.66 289 | 295.398 c 1428.961 294.801 1428.359 295 1425.16 298.5 c 1423.16 300.5 1420.961 290 | 303.398 1420.16 305 c 1417.961 309.199 1416.758 318.898 1417.66 324.699 291 | c 1419.16 333.699 1421.359 337.102 1431.461 345.199 c 1436.461 349.199 292 | 1432.66 357.699 1422.461 365.199 c 1412.258 372.801 1412.359 372.602 1414.258 293 | 379.102 c 1416.258 385.898 1420.758 394.801 1424.16 398.801 c 1425.66 400.602 294 | 1427.258 403.602 1427.859 405.699 c 1428.359 407.699 1430.16 410.602 1431.66 295 | 412.199 c 1434.258 414.801 1435.059 415 1442.059 415 c 1449.359 415 1449.66 296 | 415.102 1454.059 418.898 c 1456.559 421.102 1459.559 423.102 1460.66 423.5 297 | c 1464.16 424.602 1465.859 429.699 1466.758 441.398 c 1467.559 452.398 298 | l 1463.961 456.398 l 1461.961 458.699 1458.258 461.5 1455.758 462.602 c 299 | 1453.258 463.801 1450.359 465.699 1449.461 466.898 c 1448.461 468 1447.059 300 | 469 1446.359 469 c 1445.559 469 1443.758 470.102 1442.359 471.398 c 1438.961 301 | 474.5 1434.16 478.102 1429.559 480.801 c 1425.961 483 l h 302 | 1364.66 349.5 m 1365.461 348.801 1367.859 347.5 1369.961 346.699 c 1373.359 303 | 345.199 1373.66 344.801 1373.66 341.301 c 1373.66 337.102 1371.461 333 304 | 1365.559 326 c 1362.359 322.199 1361.059 321.398 1359.16 321.801 c 1357.359 305 | 322.102 1356.559 323.102 1356.059 325.5 c 1355.758 327.398 1354.16 330 306 | 1352.66 331.301 c 1349.359 334.301 1345.258 344.398 1346.16 347.699 c 1346.461 307 | 349.102 1347.859 350.301 1349.961 350.898 c 1353.859 352.102 1362.66 351.301 308 | 1364.66 349.5 c h 309 | 1396.16 346.898 m 1397.758 345.301 1397.461 319 1395.859 317.301 c 1394.359 310 | 315.898 1393.859 315.699 1381.359 313.5 c 1371.859 311.801 1369.66 312.301 311 | 1369.66 316.102 c 1369.66 318.301 1381.66 339.699 1385.961 345.301 c 1388.66 312 | 348.699 1389.359 349.102 1392.059 348.602 c 1393.758 348.199 1395.559 347.5 313 | 1396.16 346.898 c h 314 | 1396.16 346.898 m f 315 | 963.461 428.602 m 957.16 426.898 952.16 422.898 947.559 415.699 c 943.258 316 | 409.102 943.258 408.301 947.16 401.5 c 948.461 399.199 950.059 394.5 950.66 317 | 391 c 952.059 383.102 952.16 362.102 950.758 344.5 c 950.16 337.398 949.461 318 | 319 949.16 303.602 c 948.461 270.898 947.961 269 940.258 269 c 939.059 319 | 269 934.758 267.398 930.66 265.398 c 926.559 263.5 919.859 261 915.66 259.801 320 | c 911.559 258.699 904.758 256 900.559 253.898 c 896.359 251.898 890.16 321 | 249.398 886.66 248.5 c 883.258 247.602 879.461 246.199 878.258 245.398 c 322 | 877.059 244.699 873.859 243.398 871.258 242.602 c 868.66 241.801 864.859 323 | 239.898 862.859 238.301 c 859.559 235.801 858.359 235.5 851.66 235.5 c 324 | 845.059 235.398 843.559 235.102 839.66 232.5 c 833.258 228.398 830.66 225.898 325 | 830.66 224 c 830.66 221.699 850.059 203 856.16 199.398 c 858.859 197.801 326 | 862.961 194.602 865.16 192.301 c 872.461 184.699 872.758 184.801 888.961 327 | 200.602 c 896.758 208.301 904.758 215.301 906.66 216.398 c 908.559 217.398 328 | 911.16 219.801 912.461 221.898 c 913.758 223.898 916.859 226.699 919.461 329 | 228.199 c 922.059 229.801 926.961 233.199 930.461 236 c 933.961 238.699 330 | 937.66 241 938.66 241 c 947.461 241 944.859 215.398 933.859 192.699 c 927.461 331 | 179.602 917.961 164.801 908.859 153.602 c 900.66 143.602 883.758 126.102 332 | 880.758 124.5 c 879.359 123.801 871.359 118.102 862.961 111.801 c 853.859 333 | 105 842.66 97.801 834.961 93.699 c 827.961 89.898 820.66 85.801 818.859 334 | 84.5 c 817.059 83.199 815.059 82 814.461 81.801 c 813.758 81.5 813.559 335 | 80.699 813.859 79.801 c 814.359 78.5 816.66 78.301 826.758 78.199 c 838.859 336 | 78.102 839.258 78.199 848.859 82 c 854.258 84.199 859.258 86 859.859 86 337 | c 860.461 86 861.758 86.602 862.559 87.301 c 863.461 88 867.359 89.898 338 | 871.359 91.398 c 885.359 96.801 902.359 108.301 918.359 123.398 c 923.359 339 | 128.102 927.961 132 928.559 132 c 930.66 132 942.758 145.301 948.258 153.602 340 | c 960.461 172 965.961 189.398 969.66 222 c 970.859 233.301 974.859 253.301 341 | 976.859 258.699 c 978.961 264.5 983.559 268 988.961 268 c 990.758 268 997.16 342 | 270.301 1003.16 273.102 c 1009.258 275.898 1017.961 279.699 1022.66 281.699 343 | c 1027.359 283.602 1031.859 285.801 1032.66 286.5 c 1035.559 288.898 1044.758 344 | 293.102 1050.758 294.602 c 1057.059 296.199 1066.758 301.699 1069.859 305.398 345 | c 1072.559 308.699 1073.16 313.602 1071.16 316.602 c 1069.16 319.699 1060.359 346 | 324 1055.859 324 c 1054.059 324 1050.059 324.898 1046.961 326 c 1039.16 347 | 328.699 1038.461 328.602 1040.258 325.102 c 1043.66 318.301 1037.461 312.301 348 | 1017.359 302.602 c 1010.059 299.102 1003.66 295.199 1000.859 292.602 c 349 | 993.559 285.898 985.16 284 980.859 288 c 978.359 290.301 978.258 291.699 350 | 979.66 300.398 c 980.16 303.699 981.059 312.398 981.559 319.5 c 982.16 351 | 327.699 983.059 333.602 984.059 335.5 c 984.961 337.199 985.66 340.398 985.66 352 | 342.801 c 985.66 345.102 986.359 348.699 987.16 350.602 c 987.961 352.602 353 | 989.359 358.5 990.16 363.801 c 991.961 374.699 994.559 380.199 1000.16 354 | 384.398 c 1004.16 387.5 1006.66 391.699 1006.66 395.398 c 1006.66 396.801 355 | 1004.758 400.801 1002.461 404.301 c 999.258 409 996.758 411.398 992.559 356 | 413.699 c 989.559 415.5 983.059 419.801 978.16 423.398 c 973.258 427 968.961 357 | 430 968.66 429.898 c 968.359 429.898 966.059 429.301 963.461 428.602 c 358 | h 359 | 963.461 428.602 m f 360 | 564.16 425.699 m 561.961 424.5 558.258 423.5 555.859 423.398 c 550.859 361 | 423.199 544.961 419.199 544.059 415.398 c 543.16 412.102 546.258 408.801 362 | 552.961 406 c 560.059 403 562.66 400.398 562.66 396.301 c 562.66 394.102 363 | 563.559 392 565.461 389.898 c 568.461 386.5 570.16 386.199 578.66 387.5 364 | c 582.16 388 584.859 387.5 590.559 385.602 c 600.859 382 605.961 382.102 365 | 609.859 386.102 c 612.859 389 612.859 389.301 612.16 395.301 c 611.758 366 | 398.699 611.461 404.5 611.559 408.199 c 611.758 414.699 611.66 415 607.961 367 | 418.699 c 601.758 424.898 594.359 427.301 580.16 427.602 c 569.559 427.801 368 | 567.66 427.602 564.16 425.699 c h 369 | 564.16 425.699 m f 370 | 645.16 394.102 m 637.758 390.5 633.859 387.898 630.16 384 c 627.461 381.199 371 | 623.059 377.801 620.559 376.5 c 618.059 375.199 615.461 373.398 614.66 372 | 372.5 c 612.859 370.398 603.559 365.602 592.758 361.398 c 588.16 359.602 373 | 583.16 356.898 581.66 355.5 c 580.16 354.102 572.66 350.301 565.059 347.102 374 | c 541.758 337.398 520.859 325.5 506.258 313.5 c 500.461 308.801 495.559 375 | 306.199 488.66 304.398 c 481.961 302.602 469.758 295.801 465.059 291.199 376 | c 460.16 286.5 460.758 284.102 467.258 281.5 c 470.059 280.398 473.961 377 | 277.801 475.758 275.801 c 480.961 270.398 484.961 269.602 506.359 270.301 378 | c 516.461 270.699 525.559 271.398 526.66 272 c 527.758 272.602 529.359 379 | 274.5 530.258 276.199 c 532.059 279.602 559.059 307 560.66 307 c 561.859 380 | 307 581.758 324.102 593.758 335.5 c 601.059 342.398 604.758 345.199 609.258 381 | 347 c 612.461 348.301 616.059 349.898 617.16 350.699 c 618.258 351.398 382 | 620.961 352 623.359 352 c 625.66 352 628.758 352.5 630.359 353.102 c 631.859 383 | 353.602 636.16 354.801 639.859 355.602 c 649.66 357.602 653.961 360.199 384 | 662.859 369.199 c 675.258 381.602 677.461 386.898 671.961 390.801 c 668.66 385 | 393.102 657.059 399 655.961 399 c 655.559 398.898 650.66 396.699 645.16 386 | 394.102 c h 387 | 645.16 394.102 m f 388 | 624.758 303 m 621.16 301.699 618.258 299.801 616.359 297.5 c 614.66 295.398 389 | 610.859 292.699 607.059 291 c 603.461 289.398 598.758 286.602 596.66 284.699 390 | c 594.461 282.898 590.359 280.102 587.461 278.5 c 581.359 275.199 558.859 391 | 259 553.961 254.398 c 550.359 250.898 549.961 249.301 552.059 246.5 c 553.16 392 | 245 555.059 244.5 560.461 244.199 c 569.66 243.699 574.961 246.102 580.758 393 | 253.301 c 589.258 264.102 600.16 275.301 603.461 276.699 c 608.961 279 394 | 614.66 276 614.66 270.801 c 614.66 267.199 613.461 264.801 608.559 259 c 395 | 606.559 256.5 604.16 252.898 603.359 251 c 601.961 247.602 596.059 241 396 | 594.461 241 c 594.059 241 593.66 240.5 593.66 239.801 c 593.66 239.199 591.059 397 | 235 587.859 230.602 c 580.66 220.5 579.66 218.199 579.66 211.5 c 579.66 398 | 206.898 580.059 205.898 582.461 204 c 584.961 201.898 585.961 201.801 596.359 399 | 202.301 c 606.66 202.699 607.758 202.898 610.758 205.398 c 612.461 206.898 400 | 615.758 209 618.059 210.199 c 620.258 211.301 623.559 213.301 625.359 214.602 401 | c 627.059 215.898 629.258 217 630.059 217 c 630.859 217 632.059 217.898 402 | 632.66 219 c 633.258 220.102 634.359 221 635.16 221 c 639.059 221 642.758 403 | 233.801 640.859 240.5 c 639.859 244.199 637.059 244.801 631.461 242.5 c 404 | 627.16 240.801 623.66 241.301 623.66 243.5 c 623.66 248.301 629.66 256.301 405 | 635.258 259 c 640.359 261.5 653.359 273.699 656.961 279.5 c 658.359 281.699 406 | 659.859 285.199 660.16 287.199 c 660.859 290.602 660.66 291.102 658.16 407 | 292 c 656.758 292.5 654.461 293 653.16 293 c 651.758 293 649.258 294.699 408 | 646.559 297.5 c 639.16 305.199 634.359 306.398 624.758 303 c h 409 | 624.758 303 m f 410 | 519.461 246.602 m 514.66 244.898 507.758 239.301 506.559 236.301 c 505.059 411 | 232.398 505.461 229.301 508.758 219.898 c 511.258 212.699 511.758 210 511.258 412 | 206.5 c 510.359 200.898 511.758 198.102 518.961 191.102 c 529.961 180.301 413 | 535.961 177.898 542.16 181.898 c 551.66 188 555.16 191.5 556.461 196.5 414 | c 561.758 216.898 543.758 248 526.66 247.898 c 524.758 247.898 521.461 247.301 415 | 519.461 246.602 c h 416 | 519.461 246.602 m f 417 | 989.559 245.301 m 989.461 244.801 989.461 244.102 989.559 243.602 c 991.66 418 | 232.398 992.859 226.898 994.059 224 c 994.859 222.102 996.859 215.898 998.559 419 | 210.301 c 1002.359 197.898 1010.059 182.301 1019.559 167.801 c 1023.359 420 | 161.898 1027.359 155.199 1028.461 152.801 c 1029.559 150.398 1032.16 146.5 421 | 1034.258 144 c 1036.461 141.5 1039.559 137.699 1041.059 135.5 c 1048.359 422 | 125.5 1054.66 118.301 1061.16 112.801 c 1073.359 102.398 1079.059 100.602 423 | 1090.258 103.801 c 1094.059 104.898 1099.66 106.301 1102.66 106.898 c 1106.859 424 | 107.801 1110.059 109.5 1116.16 114 c 1122.559 118.801 1126.16 120.699 1134.059 425 | 123.199 c 1144.258 126.5 1149.66 130.199 1149.66 134 c 1149.66 136.199 426 | 1140.16 142 1136.559 142 c 1135.258 142 1129.859 143.199 1124.758 144.5 427 | c 1119.461 145.898 1112.461 147 1109.059 147 c 1103.461 147 1102.059 147.5 428 | 1096.461 150.898 c 1092.961 153.102 1088.559 155.102 1086.758 155.5 c 1082.961 429 | 156.301 1054.258 175.801 1048.859 181.199 c 1043.258 186.801 1022.961 211.301 430 | 1020.16 215.898 c 1018.961 217.699 1012.16 225.699 1006.758 231.5 c 1004.66 431 | 233.699 1001.961 237.199 1000.66 239.398 c 998.059 243.699 989.961 248 432 | 989.559 245.301 c h 433 | 989.559 245.301 m f 434 | 580.059 188 m 577.359 186.898 572.66 181.398 571.16 177.5 c 569.961 174.301 435 | 569.961 167.301 571.16 160.301 c 572.16 154.898 570.258 147.898 567.16 436 | 145 c 565.758 143.699 563.258 142.699 560.961 142.5 c 553.758 142 546.461 437 | 140 538.66 136.5 c 534.359 134.602 530.359 133 529.758 133 c 529.16 133 438 | 528.66 132.398 528.66 131.699 c 528.66 131 527.16 129.699 525.461 128.801 439 | c 517.961 125.199 510.66 121 505.758 117.5 c 502.961 115.398 496.758 112.5 440 | 492.16 111 c 487.559 109.398 482.461 107.102 480.758 105.898 c 478.461 441 | 104.199 475.66 103.5 468.758 103 c 458.16 102.102 452.059 99.602 447.66 442 | 94.199 c 444.66 90.5 443.961 88.199 445.559 86.5 c 447.359 84.5 448.66 78.398 443 | 449.66 67.699 c 450.258 61.5 451.461 54.102 452.258 51.301 c 453.859 45.5 444 | 456.059 43.801 463.359 42.5 c 465.66 42.102 468.66 41 470.059 39.898 c 445 | 471.359 38.898 473.758 38 475.258 38 c 479.66 38 486.359 41.199 488.059 446 | 44 c 488.859 45.398 494.059 51.898 499.559 58.5 c 505.16 65.102 510.961 447 | 73 512.559 76 c 514.16 79 516.961 82.898 518.66 84.5 c 520.359 86.199 523.059 448 | 90.199 524.66 93.5 c 526.258 96.801 529.461 101.398 531.859 103.699 c 536.258 449 | 108 l 539.961 104.898 l 541.961 103.199 546.66 97.301 550.258 91.699 c 450 | 553.961 86.102 558.461 79.898 560.258 78 c 562.059 76.102 564.961 71 566.66 451 | 66.699 c 568.359 62.398 570.559 57.199 571.559 55.199 c 573.66 51.199 578.16 452 | 48 581.66 48 c 584.66 48 589.559 53.199 594.461 61.602 c 596.66 65.5 599.258 453 | 69.199 600.059 70 c 602.16 71.699 602.16 80.398 600.059 98 c 598.859 107.199 454 | 598.461 118.602 598.559 133.801 c 598.66 166 596.559 177.102 588.559 185.102 455 | c 584.559 189.102 583.559 189.5 580.059 188 c h 456 | 568.461 139.301 m 570.461 135.398 572.961 122.102 572.961 115.5 c 572.961 457 | 111.5 572.258 106 571.16 102.602 c 569.66 97.801 568.758 96.5 565.961 95.199 458 | c 562.66 93.602 562.559 93.699 559.359 96.699 c 557.66 98.5 553.66 100.801 459 | 550.461 102 c 547.359 103.102 544.258 104.801 543.559 105.602 c 541.359 460 | 108.199 542.059 113.301 544.961 117.102 c 546.461 119.102 548.16 122.199 461 | 548.859 124.102 c 550.16 127.801 558.461 137.699 561.961 139.699 c 565.059 462 | 141.398 567.461 141.301 568.461 139.301 c h 463 | 568.461 139.301 m f 464 | 1263.859 177 m 1261.559 175.398 1258.961 172.898 1258.059 171.5 c 1256.461 465 | 169 1256.559 168.5 1260.059 157.398 c 1265.559 140.199 1265.66 138.199 466 | 1260.758 128.199 c 1258.461 123.602 1256.66 119.398 1256.66 118.699 c 1256.66 467 | 118.102 1255.758 116.602 1254.559 115.398 c 1253.059 113.801 1252.258 111.102 468 | 1251.559 105.398 c 1251.059 101 1250.059 97 1249.16 96 c 1248.359 95.102 469 | 1247.66 93.898 1247.66 93.398 c 1247.66 92.398 1259.16 86.602 1263.258 470 | 85.5 c 1264.461 85.199 1267.359 85.602 1269.758 86.5 c 1272.16 87.301 1275.961 471 | 88 1278.258 88 c 1288.461 88 1298.559 94.898 1303.859 105.301 c 1306.859 472 | 111.398 l 1306.359 127.5 l 1305.66 148.699 1304.961 150.699 1295.16 162 473 | c 1279.859 179.602 1272.359 183.199 1263.859 177 c h 474 | 1263.859 177 m f 475 | 623.258 169.801 m 621.16 166.801 621.258 163.102 623.758 154.199 c 625.758 476 | 147.102 625.758 146.699 624.16 142.699 c 622.758 139.301 622.359 133.898 477 | 621.859 115.398 c 621.359 89.398 621.758 85.301 624.961 84.102 c 626.16 478 | 83.602 629.461 81.398 632.16 79.102 c 634.961 76.801 638.16 74.699 639.359 479 | 74.398 c 643.16 73.398 648.258 75.898 655.258 82.102 c 664.359 90.102 668.16 480 | 98 668.16 109 c 668.16 115.602 667.559 118.102 662.859 130 c 655.059 150.398 481 | 651.359 157.199 645.059 162.898 c 639.859 167.602 631.059 172 626.66 172 482 | c 625.66 172 624.059 171 623.258 169.801 c h 483 | 623.258 169.801 m f 484 | Q Q 485 | showpage 486 | %%Trailer 487 | end restore 488 | %%EOF 489 | -------------------------------------------------------------------------------- /figure/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengChendian/NJUThesis2021/33a2f1b15f3934719742271c9529c01773fe84c9/figure/style.png -------------------------------------------------------------------------------- /njuthesis.cfg: -------------------------------------------------------------------------------- 1 | %% 2 | %% Copyright (C) 2016, Zhang Chuheng. 3 | %% Department of Physics, Nanjing University. 4 | %% 5 | %% Home Page: http://sealzhang.tk 6 | %% 7 | 8 | \ProvidesFile{njuthesis.cfg} 9 | \RequirePackage{etoolbox} 10 | \newcommand*{\njut@cap@abstractname}{摘\hspace{2em}要} 11 | \newcommand*{\njut@cap@contentsname}{目\hspace{2em}录} 12 | \newcommand*{\njut@cap@revisionhistory}{修订历史} 13 | \newcommand*{\njut@cap@listfigurename}{插图清单} 14 | \newcommand*{\njut@cap@listtablename}{附表清单} 15 | \newcommand*{\njut@cap@listsymbolname}{符号清单} 16 | \newcommand*{\njut@cap@listequationname}{公式清单} 17 | \newcommand*{\njut@cap@equationname}{公式} 18 | \newcommand*{\njut@cap@bibname}{参考文献} 19 | \newcommand*{\njut@cap@glossaryname}{术\hspace{0.5em}语\hspace{0.5em}表} 20 | \newcommand*{\njut@cap@indexname}{索\hspace{2em}引} 21 | \newcommand*{\njut@cap@figurename}{图} 22 | \newcommand*{\njut@cap@tablename}{表} 23 | \newcommand*{\njut@cap@preface}{前\hspace{2em}言} 24 | \newcommand*{\njut@cap@acknowledgementname}{致\hspace{2em}谢} 25 | \newcommand*{\njut@cap@appendixname}{附录\thechapter} 26 | \newcommand*{\njut@cap@chaptername}{% 27 | \if@mainmatter{\thechapter}\fi% 28 | } 29 | \newcommand*{\njut@cap@definition}{定义} 30 | \newcommand*{\njut@cap@notation}{记号} 31 | \newcommand*{\njut@cap@theorem}{定理} 32 | \newcommand*{\njut@cap@lemma}{引理} 33 | \newcommand*{\njut@cap@corollary}{推论} 34 | \newcommand*{\njut@cap@proposition}{命题} 35 | \newcommand*{\njut@cap@fact}{事实} 36 | \newcommand*{\njut@cap@assumption}{假设} 37 | \newcommand*{\njut@cap@conjecture}{猜想} 38 | \newcommand*{\njut@cap@hypothesis}{假说} 39 | \newcommand*{\njut@cap@axiom}{公理} 40 | \newcommand*{\njut@cap@postulate}{公设} 41 | \newcommand*{\njut@cap@principle}{定律} 42 | \newcommand*{\njut@cap@problem}{问题} 43 | \newcommand*{\njut@cap@exercise}{练习} 44 | \newcommand*{\njut@cap@example}{例} 45 | \newcommand*{\njut@cap@remark}{评注} 46 | \newcommand*{\njut@cap@proof}{证明} 47 | \newcommand*{\njut@cap@solution}{解} 48 | \newcommand*{\njut@cap@algorithm}{算法} 49 | \newcommand*{\njut@cap@case}{情况} 50 | \newcommand*{\njut@cap@subcase}{子情况} 51 | \newcommand*{\njut@cap@step}{步骤} 52 | \newcommand*{\njut@cap@substep}{子步骤} 53 | \newcommand*{\njut@cap@year}{年} 54 | \newcommand*{\njut@cap@month}{月} 55 | \newcommand*{\njut@cap@day}{日} 56 | \newcommand*{\njut@cap@to}{至} 57 | \newcommand*{\njut@cap@phd}{博士} 58 | \newcommand*{\njut@cap@master}{硕士} 59 | \newcommand*{\njut@cap@bachelor}{学士} 60 | \newcommand*{\njut@cap@en@phd}{Doctor of Philosophy} 61 | \newcommand*{\njut@cap@en@master}{Master} 62 | \newcommand*{\njut@cap@en@bachelor}{Bachelor} 63 | \newcommand*{\njut@cap@nlc}{国家图书馆封面} 64 | \newcommand*{\njut@cap@nlc@classification}{分类号} 65 | \newcommand*{\njut@cap@nlc@securitylevel}{密级} 66 | \newcommand*{\njut@cap@nlc@udc}{UDC} 67 | \newcommand*{\njut@cap@nlc@title}{% 68 | 学\hspace{1em}位\hspace{1em}论\hspace{1em}文% 69 | } 70 | \newcommand*{\njut@cap@nlc@quotetitle}{(题名和副题名)} 71 | \newcommand*{\njut@cap@nlc@author}{(作者姓名)} 72 | \newcommand*{\njut@cap@nlc@supervisor}{% 73 | 指导教师姓名、职务、职称、学位、单位名称及地址% 74 | } 75 | \newcommand*{\njut@cap@nlc@degree}{申请学位级别} 76 | \newcommand*{\njut@cap@nlc@major}{专业名称} 77 | \newcommand*{\njut@cap@nlc@submitdate}{论文提交日期} 78 | \newcommand*{\njut@cap@nlc@defenddate}{论文答辩日期} 79 | \newcommand*{\njut@cap@nlc@institute}{学位授予单位和日期} 80 | \newcommand*{\njut@cap@nlc@chairman}{答辩委员会主席:} 81 | \newcommand*{\njut@cap@nlc@reviwer}{评阅人:} 82 | \newcommand*{\njut@cap@nlc@openlevel}{公开} 83 | \newcommand*{\njut@cap@nlc@controllevel}{限制} 84 | \newcommand*{\njut@cap@nlc@confidentiallevel}{秘密} 85 | \newcommand*{\njut@cap@nlc@clasifiedlevel}{机密} 86 | \newcommand*{\njut@cap@nlc@mostconfidentiallevel}{绝密} 87 | \newcommand*{\njut@cap@cover}{中文封面} 88 | \newcommand*{\njut@cap@cover@thesis}{本科毕业论文} 89 | \newcommand*{\njut@cap@cover@design}{本科毕业设计} 90 | \newcommand*{\njut@cap@cover@apply}{申请{\njut@value@degree}学位} 91 | \newcommand*{\njut@cap@cover@title}{题目} 92 | \newcommand*{\njut@cap@cover@author}{学生姓名} 93 | \newcommand*{\njut@cap@cover@grade}{年级} 94 | \newcommand*{\njut@cap@cover@studentid}{学号} 95 | \newcommand*{\njut@cap@cover@supervisor}{指导教师} 96 | \newcommand*{\njut@cap@cover@supervisortitle}{职称} 97 | \newcommand*{\njut@cap@cover@secondsupervisor}{第二导师} 98 | \newcommand*{\njut@cap@cover@secondsupervisortitle}{职称} 99 | \newcommand*{\njut@cap@cover@major}{专业} 100 | \newcommand*{\njut@cap@cover@researchfield}{研究方向} 101 | \newcommand*{\njut@cap@cover@department}{院系} 102 | \newcommand*{\njut@cap@cover@institute}{南京大学} 103 | \newcommand*{\njut@cap@cover@submitdate}{提交日期} 104 | \newcommand*{\njut@cap@coverback@supervisor}{指导教师} 105 | \newcommand*{\njut@cap@coverback@studentnum}{学号} 106 | \newcommand*{\njut@cap@coverback@defenddate}{论文答辩日期} 107 | \newcommand*{\njut@cap@coverback@sign}{\hspace{10em}(签字)} 108 | \newcommand*{\njut@cap@cover@en@by}{by} 109 | \newcommand*{\njut@cap@cover@en@in}{in} 110 | \newcommand*{\njut@cap@cover@en@supervisor}{Supervised by} 111 | \newcommand*{\njut@cap@cover@en@statement}{% 112 | An {\njut@value@en@degree} Dissertation Submitted to\\ 113 | {\njut@value@en@department}, {\njut@value@en@institute}\\ 114 | } 115 | \newcommand*{\njut@cap@abstract}{中文摘要} 116 | \newcommand*{\njut@cap@abstract@chaptername}% 117 | {南京大学研究生毕业论文中文摘要首页用纸} 118 | \newcommand*{\njut@cap@abstract@title}{毕业论文题目} 119 | \newcommand*{\njut@cap@abstract@major}{专业} 120 | \newcommand*{\njut@cap@abstract@author}{级{\njut@value@degree}生姓名} 121 | \newcommand*{\njut@cap@abstract@supervisor}{指导教师(姓名、职称)} 122 | \newcommand*{\njut@cap@abstract@abstractname}{摘\hspace{2em}要} 123 | \newcommand*{\njut@cap@abstract@keywordsname}{关键词} 124 | \newcommand*{\njut@cap@abstract@en}{英文摘要} 125 | \newcommand*{\njut@cap@abstract@en@chaptername}% 126 | {南京大学研究生毕业论文英文摘要首页用纸} 127 | \newcommand*{\njut@cap@abstract@en@title}{THESIS} 128 | \newcommand*{\njut@cap@abstract@en@major}{SPECIALIZATION} 129 | \newcommand*{\njut@cap@abstract@en@author}{POSTGRADUATE} 130 | \newcommand*{\njut@cap@abstract@en@supervisor}{MENTOR} 131 | \newcommand*{\njut@cap@abstract@en@abstractname}{Abstract} 132 | \newcommand*{\njut@cap@abstract@en@keywordsname}{KEYWORDS} 133 | \newcommand*{\njut@cap@resume@chaptername}{简历与科研成果} 134 | \newcommand*{\njut@cap@resume@authorinfo}{基本信息} 135 | \newcommand*{\njut@cap@resume@education}{教育背景} 136 | \newcommand*{\njut@cap@resume@publications}{% 137 | 攻读{\njut@value@degree}学位期间完成的学术成果% 138 | } 139 | \newcommand*{\njut@cap@resume@projects}{% 140 | 攻读{\njut@value@degree}学位期间参与的科研课题% 141 | } 142 | \newcommand*{\njut@cap@license@chaptername}{学位论文出版授权书} 143 | \newcommand*{\njut@cap@license@declaration}{% 144 | 本人完全同意《中国优秀博硕士学位论文全文数据库出版章程》(以下简称“章程”),% 145 | 愿意将本人的学位论文提交“中国学术期刊(光盘版)电子杂志社”在《中国博士学位论% 146 | 文全文数据库》、《中国优秀硕士学位论文全文数据库》中全文发表。《中国博士学位论% 147 | 文全文数据库》、《中国优秀硕士学位论文全文数据库》可以以电子、网络及其他数字媒% 148 | 体形式公开出版,并同意编入《中国知识资源总库》,在《中国博硕士学位论文评价数据% 149 | 库》中使用和在互联网上传播,同意按“章程”规定享受相关权益。% 150 | } 151 | \newcommand*{\njut@cap@license@sign}{作者签名:} 152 | \newcommand*{\njut@cap@license@securitylevel}{论文涉密情况:} 153 | \newcommand*{\njut@cap@license@public}{不保密} 154 | \newcommand*{\njut@cap@license@secret}{保密,保密期:} 155 | \newcommand*{\njut@cap@license@title}{论文题名} 156 | \newcommand*{\njut@cap@license@studentnum}{研究生学号} 157 | \newcommand*{\njut@cap@license@department}{所在院系} 158 | \newcommand*{\njut@cap@license@grade}{年级} 159 | \newcommand*{\njut@cap@license@category}{论文级别} 160 | \newcommand*{\njut@cap@license@telphone}{作者电话} 161 | \newcommand*{\njut@cap@license@email}{作者Email} 162 | \newcommand*{\njut@cap@license@supervisorname}{第一导师姓名} 163 | \newcommand*{\njut@cap@license@supervisortelphone}{导师电话} 164 | \newcommand*{\njut@cap@license@categoryhint}{(请在方框内画勾)} 165 | \newcommand*{\njut@cap@license@categorymaster}{硕士} 166 | \newcommand*{\njut@cap@license@categoryphd}{博士} 167 | \newcommand*{\njut@cap@license@categorymasterspec}{硕士专业学位} 168 | \newcommand*{\njut@cap@license@categoryphdspec}{博士专业学位} 169 | \newcommand*{\njut@cap@license@remark}{% 170 | 注:请将该授权书填写后装订在学位论文最后一页(南大封面)。% 171 | } 172 | \newcommand*{\njut@cap@institute@logo}{njulogo.eps} 173 | \newcommand*{\njut@cap@institute@name}{njuname.eps} 174 | \newcommand*{\njut@value@nlc@classification}{(分类)} 175 | \newcommand*{\njut@value@nlc@securitylevel}{\openlevel} 176 | \newcommand*{\njut@value@nlc@udc}{} 177 | \newcommand*{\njut@value@nlc@titlea}{\njut@value@title} 178 | \newcommand*{\njut@value@nlc@titleb}{} 179 | \newcommand*{\njut@value@nlc@titlec}{} 180 | \newcommand*{\njut@value@nlc@supervisorinfo}{% 181 | (导师的职务、职称、学位、单位名称及地址)% 182 | } 183 | \newcommand*{\njut@value@nlc@chairman}{(答辩主席)} 184 | \newcommand*{\njut@value@nlc@reviewera}{(评审人)} 185 | \newcommand*{\njut@value@nlc@reviewerb}{} 186 | \newcommand*{\njut@value@nlc@reviewerc}{} 187 | \newcommand*{\njut@value@nlc@reviewerd}{} 188 | 189 | \newcommand*{\njut@value@degree}{本科} 190 | 191 | \newcommand*{\njut@value@title}{(论文标题)} 192 | \newcommand*{\njut@value@titlea}{(论文长标题第一行)} 193 | \newcommand*{\njut@value@titleb}{(论文长标题第二行)} 194 | \newcommand*{\njut@value@titlec}{(论文长标题第三行)} 195 | \newcommand*{\njut@value@author}{(作者姓名)} 196 | \newcommand*{\njut@value@studentid}{(作者学号)} 197 | \newcommand*{\njut@value@telphone}{(作者电话号码)} 198 | \newcommand*{\njut@value@email}{(作者电子邮件)} 199 | \newcommand*{\njut@value@studentnum}{XXXXXXXX} 200 | \newcommand*{\njut@value@grade}{XXXX} 201 | \newcommand*{\njut@value@supervisor}{(导师姓名)} 202 | \newcommand*{\njut@value@supervisortitle}{(导师职称)} 203 | \newcommand*{\njut@value@secondsupervisor}{(导师姓名)} 204 | \newcommand*{\njut@value@secondsupervisortitle}{(导师职称)} 205 | \newcommand*{\njut@value@supervisortelphone}{(导师电话号码)} 206 | \newcommand*{\njut@value@major}{(作者专业)} 207 | \newcommand*{\njut@value@researchfield}{(作者研究方向)} 208 | \newcommand*{\njut@value@department}{(作者所属院系)} 209 | \newcommand*{\njut@value@institute}{南京大学} 210 | \newcommand*{\njut@value@submitdate}{\njut@value@date} 211 | \newcommand*{\njut@value@defenddate}{xxxx年xx月xx日} 212 | \newcommand*{\njut@value@date}{% 213 | {\number\year}年{\number\month}月{\number\day}日% 214 | } 215 | 216 | \newcommand*{\njut@value@en@degree}{Undergraduate} 217 | 218 | \newcommand*{\njut@value@en@title}{(English Title of Thesis)} 219 | \newcommand*{\njut@value@en@author}{(Author's Name)} 220 | \newcommand*{\njut@value@en@supervisor}{Professor (Supervisor's Name)} 221 | \newcommand*{\njut@value@en@secondsupervisor}{Professor (Second Supervisor's Name)} 222 | \newcommand*{\njut@value@en@major}{Author's Major} 223 | \newcommand*{\njut@value@en@department}{(Department's Name)} 224 | \newcommand*{\njut@value@en@institute}{Nanjing University} 225 | \newcommand*{\njut@value@en@date}{ 226 | \ifcase\month\or 227 | January \or 228 | February \or 229 | March \or 230 | April \or 231 | May \or 232 | June \or 233 | July \or 234 | August \or 235 | September \or 236 | October \or 237 | November \or 238 | December \fi 239 | \number\day, \number\year% 240 | } 241 | \newcommand*{\njut@value@abstract@titlea}{\njut@value@title} 242 | \newcommand*{\njut@value@abstract@titleb}{} 243 | \newcommand*{\njut@value@abstract@keywords}{} 244 | \newcommand*{\njut@value@abstract@en@titlea}{\njut@value@en@title} 245 | \newcommand*{\njut@value@abstract@en@titleb}{} 246 | \newcommand*{\njut@value@abstract@en@keywords}{} 247 | \newcommand*{\njut@zhfn@songti@win}{SimSun} 248 | \newcommand*{\njut@zhfn@heiti@win}{SimHei} 249 | \newcommand*{\njut@zhfn@kaishu@win}{KaiTi} 250 | \newcommand*{\njut@zhfn@fangsong@win}{FangSong} 251 | \newcommand*{\njut@enfn@main@win}{Times New Roman} 252 | \newcommand*{\njut@enfn@sans@win}{Arial} 253 | \newcommand*{\njut@enfn@mono@win}{Courier New} 254 | \newcommand*{\njut@zhfn@songti@linux}{AR PL SungtiL GB} 255 | \newcommand*{\njut@zhfn@heiti@linux}{WenQuanYi Zen Hei Mono} 256 | \newcommand*{\njut@zhfn@kaishu@linux}{AR PL KaitiM GB} 257 | \newcommand*{\njut@zhfn@fangsong@linux}{STFangsong} 258 | \newcommand*{\njut@enfn@main@linux}{Times New Roman} 259 | \newcommand*{\njut@enfn@sans@linux}{Arial} 260 | \newcommand*{\njut@enfn@mono@linux}{Courier} 261 | \newcommand*{\njut@zhfn@songti@mac}{STSong} 262 | \newcommand*{\njut@zhfn@heiti@mac}{STHeiti} 263 | \newcommand*{\njut@zhfn@kaishu@mac}{STKaiti} 264 | \newcommand*{\njut@zhfn@fangsong@mac}{STFangsong} 265 | \newcommand*{\njut@enfn@main@mac}{Times} 266 | \newcommand*{\njut@enfn@sans@mac}{Helvetica} 267 | \newcommand*{\njut@enfn@mono@mac}{Courier} 268 | \newcommand*{\njut@zhfn@songti@adobe}{Adobe Song Std} 269 | \newcommand*{\njut@zhfn@heiti@adobe}{Adobe Heiti Std} 270 | \newcommand*{\njut@zhfn@kaishu@adobe}{Adobe Kaiti Std} 271 | \newcommand*{\njut@zhfn@fangsong@adobe}{Adobe Fangsong Std} 272 | \newcommand*{\njut@enfn@main@adobe}{Times} 273 | \newcommand*{\njut@enfn@sans@adobe}{Helvetica} 274 | \newcommand*{\njut@enfn@mono@adobe}{Courier} 275 | \endinput 276 | %% 277 | %% End of file `njuthesis.cfg'. 278 | -------------------------------------------------------------------------------- /njuthesis.cls: -------------------------------------------------------------------------------- 1 | %% 2 | %% Copyright (C) 2016, Zhang Chuheng. 3 | %% Department of Physics, Nanjing University. 4 | %% 5 | %% Home Page: http://sealzhang.tk 6 | %% 7 | 8 | \NeedsTeXFormat{LaTeX2e}[1995/12/01] 9 | 10 | % 此处不加.cls,否则tex会警告 11 | % 如果无法tex加载njuthesis类可以考虑改为njuthesis.cls 12 | \ProvidesClass{njuthesis} 13 | 14 | % 默认是adobe字体 15 | \newif\ifnjut@adobefonts\njut@adobefontstrue 16 | \newif\ifnjut@winfonts\njut@winfontsfalse 17 | \newif\ifnjut@linuxfonts\njut@linuxfontsfalse 18 | \newif\ifnjut@macfonts\njut@macfontsfalse 19 | 20 | \newif\ifnjut@thesis\njut@thesistrue 21 | \newif\ifnjut@design\njut@designfalse 22 | 23 | % 第二导师 24 | \newif\ifnjut@title@twosupervisors\njut@title@twosupervisorsfalse 25 | 26 | \newif\ifnjut@backinfo\njut@backinfofalse 27 | \newif\ifnjut@title@twolinetitle\njut@title@twolinetitlefalse 28 | \newif\ifnjut@title@threelinetitle\njut@title@threelinetitlefalse 29 | \DeclareOption{adobefonts}{\njut@adobefontstrue 30 | \njut@winfontsfalse 31 | \njut@linuxfontsfalse 32 | \njut@macfontsfalse} 33 | \DeclareOption{winfonts}{\njut@winfontstrue 34 | \njut@adobefontsfalse 35 | \njut@linuxfontsfalse 36 | \njut@macfontsfalse} 37 | \DeclareOption{linuxfonts}{\njut@linuxfontstrue 38 | \njut@adobefontsfalse 39 | \njut@winfontsfalse 40 | \njut@macfontsfalse} 41 | \DeclareOption{macfonts}{\njut@macfontstrue 42 | \njut@adobefontsfalse 43 | \njut@winfontsfalse 44 | \njut@linuxfontsfalse} 45 | 46 | \DeclareOption{thesis}{\njut@thesistrue 47 | \njut@designfalse} 48 | \DeclareOption{design}{\njut@designtrue 49 | \njut@thesisfalse} 50 | 51 | \DeclareOption{backinfo}{\njut@backinfotrue} 52 | \DeclareOption*{\PassOptionsToClass{\CurrentOption}{book}} 53 | \ProcessOptions\relax 54 | % 加载book类 55 | \LoadClass[12pt,a4paper]{book} 56 | \RequirePackage{ifxetex} 57 | \RequireXeTeX 58 | \RequirePackage{lastpage} 59 | \RequirePackage{geometry} 60 | \RequirePackage{titlesec} 61 | \RequirePackage{graphicx} 62 | \DeclareGraphicsExtensions{.pdf,.eps,.jpg,.png} 63 | \graphicspath{{./}{./img/}{./fig/}{./image/}{./figure/}{./picture/}{./imgs/}{./figs/}{./images/}{./figures/}{./pictures/}} 64 | \RequirePackage{caption} 65 | \RequirePackage{float} 66 | \RequirePackage[labelformat=simple]{subcaption} 67 | \RequirePackage{array} 68 | \RequirePackage{longtable} 69 | \RequirePackage{booktabs} 70 | \RequirePackage{multirow} 71 | \RequirePackage{enumitem} 72 | \RequirePackage{xcolor} 73 | \RequirePackage{amsmath} 74 | \RequirePackage{amsthm} 75 | \RequirePackage{amsfonts} 76 | \RequirePackage{amssymb} 77 | \RequirePackage{bm} 78 | \RequirePackage{mathrsfs} 79 | \RequirePackage{wasysym} 80 | \RequirePackage{pifont} 81 | \RequirePackage{txfonts} 82 | \RequirePackage{setspace} 83 | \RequirePackage{fancyhdr} 84 | \RequirePackage{shortvrb} 85 | \RequirePackage{xltxtra} 86 | \RequirePackage{algorithmic} 87 | \RequirePackage{ulem} 88 | \normalem 89 | \RequirePackage{pdfpages} 90 | \RequirePackage{algorithm} 91 | \floatname{algorithm}{算法} 92 | \numberwithin{algorithm}{chapter} 93 | % \RequirePackage[CJKnumber,CJKchecksingle]{xeCJK} 94 | \RequirePackage[CJKchecksingle]{xeCJK} 95 | \RequirePackage{CJKnumb} 96 | \defaultfontfeatures{Mapping=tex-text} 97 | \punctstyle{plain} 98 | \RequirePackage{xeCJKfntef} 99 | \xeCJKsetup{ underline/format = \color{black} } 100 | \RequirePackage[hyphens]{url} 101 | \RequirePackage[unicode]{hyperref} 102 | % 消除部分的hyperref警告 103 | \pdfstringdefDisableCommands{% 104 | \let\leavevmode@ifvmode\@empty 105 | } 106 | 107 | % 输出代码 108 | \RequirePackage{listings} 109 | \RequirePackage{color} 110 | \RequirePackage{textcomp} 111 | 112 | \definecolor{mediumgray}{rgb}{0.3, 0.4, 0.4} 113 | \definecolor{mediumblue}{rgb}{0.0, 0.0, 0.8} 114 | \definecolor{forestgreen}{rgb}{0.13, 0.55, 0.13} 115 | \definecolor{darkviolet}{rgb}{0.58, 0.0, 0.83} 116 | \definecolor{royalblue}{rgb}{0.25, 0.41, 0.88} 117 | \definecolor{crimson}{rgb}{0.86, 0.8, 0.24} 118 | 119 | \lstdefinestyle{CodeBase}{ 120 | backgroundcolor=\color{white}, 121 | basicstyle=\small\ttfamily, 122 | breakatwhitespace=false, 123 | breaklines=false, 124 | captionpos=b, 125 | columns=fullflexible, 126 | commentstyle=\color{mediumgray}\upshape, 127 | emph={}, 128 | emphstyle=\color{crimson}, 129 | extendedchars=true, 130 | fontadjust=true, 131 | frame=single, 132 | identifierstyle=\color{black}, 133 | keepspaces=true, 134 | keywordstyle=\color{mediumblue}, 135 | keywordstyle={[2]\color{darkviolet}}, 136 | keywordstyle={[3]\color{royalblue}}, 137 | numbers=left, 138 | numberstyle=\color{black}, 139 | rulecolor=\color{black}, 140 | showlines=true, 141 | showspaces=false, 142 | showstringspaces=false, 143 | showtabs=false, 144 | stringstyle=\color{forestgreen}, 145 | tabsize=4, 146 | title=\lstname, 147 | upquote=true 148 | } 149 | 150 | % xelatex默认Unicode,因此注释掉unicode=true 151 | \hypersetup{% 152 | % unicode=true, 153 | % hyperfootnotes=true, 154 | % hyperindex=true, 155 | pdfencoding=unicode, 156 | pageanchor=true, 157 | % CJKbookmarks=true, 158 | bookmarksnumbered=true, 159 | bookmarksopen=true, 160 | bookmarksopenlevel=0, 161 | breaklinks=true, 162 | colorlinks=false, 163 | plainpages=false, 164 | % pdfpagelabels, 165 | pdfborder=0 0 0% 166 | } 167 | \urlstyle{same} 168 | % \RequirePackage[sort&compress,numbers]{natbib} 169 | \RequirePackage[sort&compress, comma]{gbt7714} 170 | \RequirePackage{hypernat} 171 | \RequirePackage{tabularx} 172 | \RequirePackage{makeidx} 173 | \RequirePackage{glossaries} 174 | \RequirePackage{ifthen} 175 | \RequirePackage[perpage,symbol*]{footmisc} 176 | \RequirePackage{etoolbox} 177 | % 消除font shape不可用问题 178 | \RequirePackage{anyfontsize} 179 | % 用于排版目录 180 | \RequirePackage{titletoc} 181 | \input{njuthesis.cfg} 182 | \ifnjut@adobefonts 183 | \newcommand*{\njut@zhfn@songti}{\njut@zhfn@songti@adobe} 184 | \newcommand*{\njut@zhfn@heiti}{\njut@zhfn@heiti@adobe} 185 | \newcommand*{\njut@zhfn@kaishu}{\njut@zhfn@kaishu@adobe} 186 | \newcommand*{\njut@zhfn@fangsong}{\njut@zhfn@fangsong@adobe} 187 | \newcommand*{\njut@enfn@main}{\njut@enfn@main@adobe} 188 | \newcommand*{\njut@enfn@sans}{\njut@enfn@sans@adobe} 189 | \newcommand*{\njut@enfn@mono}{\njut@enfn@mono@adobe} 190 | \else 191 | \ifnjut@winfonts 192 | \newcommand*{\njut@zhfn@songti}{\njut@zhfn@songti@win} 193 | \newcommand*{\njut@zhfn@heiti}{\njut@zhfn@heiti@win} 194 | \newcommand*{\njut@zhfn@kaishu}{\njut@zhfn@kaishu@win} 195 | \newcommand*{\njut@zhfn@fangsong}{\njut@zhfn@fangsong@win} 196 | \newcommand*{\njut@enfn@main}{\njut@enfn@main@win} 197 | \newcommand*{\njut@enfn@sans}{\njut@enfn@sans@win} 198 | \newcommand*{\njut@enfn@mono}{\njut@enfn@mono@win} 199 | \else 200 | \ifnjut@linuxfonts 201 | \newcommand*{\njut@zhfn@songti}{\njut@zhfn@songti@linux} 202 | \newcommand*{\njut@zhfn@heiti}{\njut@zhfn@heiti@linux} 203 | \newcommand*{\njut@zhfn@kaishu}{\njut@zhfn@kaishu@linux} 204 | \newcommand*{\njut@zhfn@fangsong}{\njut@zhfn@fangsong@linux} 205 | \newcommand*{\njut@enfn@main}{\njut@enfn@main@linux} 206 | \newcommand*{\njut@enfn@sans}{\njut@enfn@sans@linux} 207 | \newcommand*{\njut@enfn@mono}{\njut@enfn@mono@linux} 208 | \else 209 | \ifnjut@macfonts 210 | \newcommand*{\njut@zhfn@songti}{\njut@zhfn@songti@mac} 211 | \newcommand*{\njut@zhfn@heiti}{\njut@zhfn@heiti@mac} 212 | \newcommand*{\njut@zhfn@kaishu}{\njut@zhfn@kaishu@mac} 213 | \newcommand*{\njut@zhfn@fangsong}{\njut@zhfn@fangsong@mac} 214 | \newcommand*{\njut@enfn@main}{\njut@enfn@main@mac} 215 | \newcommand*{\njut@enfn@sans}{\njut@enfn@sans@mac} 216 | \newcommand*{\njut@enfn@mono}{\njut@enfn@mono@mac} 217 | \else 218 | \ClassError{njuthesis}{No fonts was selected.}{} 219 | \fi 220 | \fi 221 | \fi 222 | \fi 223 | 224 | 225 | 226 | % 宋体加粗需要AutoFakeBold 227 | \setCJKfamilyfont{song}[AutoFakeBold = {2.17}]{\njut@zhfn@songti} 228 | \setCJKfamilyfont{hei}{\njut@zhfn@heiti} 229 | \setCJKfamilyfont{kai}[AutoFakeBold = {2.17}]{\njut@zhfn@kaishu} 230 | \setCJKfamilyfont{fangsong}{\njut@zhfn@fangsong} 231 | \setCJKmainfont[BoldFont={\njut@zhfn@heiti},% 232 | ItalicFont={\njut@zhfn@kaishu}]% 233 | {\njut@zhfn@songti} 234 | % \setCJKmainfont{\njut@zhfn@songti} 235 | \setCJKsansfont{\njut@zhfn@heiti} 236 | \setCJKmonofont{\njut@zhfn@fangsong} 237 | \setmainfont{\njut@enfn@main} 238 | \setsansfont{\njut@enfn@sans} 239 | \setmonofont{\njut@enfn@mono} 240 | \newcommand*{\songti}{\CJKfamily{song}} 241 | \newcommand*{\heiti}{\CJKfamily{hei}} 242 | \newcommand*{\kaishu}{\CJKfamily{kai}} 243 | \newcommand*{\fangsong}{\CJKfamily{fangsong}} 244 | 245 | % 欧美传统排版的长度单位 1 inch = 72.27 pt 246 | % Word中的1 point = 1/72 inch = 1 bp 247 | % bp也对应于acrobat中字号的单位 248 | \newcommand*{\njut@fs@eight}{5.02} % 八号字 5bp 249 | \newcommand*{\njut@fs@eightskip}{6.02} 250 | \newcommand*{\njut@fs@seven}{5.52} % 七号字 5.5bp 251 | \newcommand*{\njut@fs@sevenskip}{6.62} 252 | \newcommand*{\njut@fs@ssix}{6.52} % 小六号 6.5bp 253 | \newcommand*{\njut@fs@ssixskip}{7.83} 254 | \newcommand*{\njut@fs@six}{7.53} % 六号字 7.5bp 255 | \newcommand*{\njut@fs@sixskip}{9.03} 256 | \newcommand*{\njut@fs@sfive}{9.03} % 小五号 9bp 257 | \newcommand*{\njut@fs@sfiveskip}{10.84} 258 | \newcommand*{\njut@fs@five}{10.54} % 五号 10bp 259 | \newcommand*{\njut@fs@fiveskip}{12.65} 260 | \newcommand*{\njut@fs@sfour}{12.045} % 小四号 12bp 261 | \newcommand*{\njut@fs@sfourskip}{14.45} 262 | \newcommand*{\njut@fs@four}{14.05} % 四号字 14bp 263 | \newcommand*{\njut@fs@fourskip}{16.86} 264 | \newcommand*{\njut@fs@sthree}{15.06} % 小三号 15bp 265 | \newcommand*{\njut@fs@sthreeskip}{18.07} 266 | \newcommand*{\njut@fs@three}{16.06} % 三号字 16bp 267 | \newcommand*{\njut@fs@threeskip}{19.27} 268 | \newcommand*{\njut@fs@stwo}{18.07} % 小二号 18bp 269 | \newcommand*{\njut@fs@stwoskip}{21.68} 270 | \newcommand*{\njut@fs@two}{22.08} % 二号字 22bp 271 | \newcommand*{\njut@fs@twoskip}{26.50} 272 | \newcommand*{\njut@fs@sone}{24.09} % 小一号 24bp 273 | \newcommand*{\njut@fs@soneskip}{28.91} 274 | \newcommand*{\njut@fs@one}{26.10} % 一号字 26bp 275 | \newcommand*{\njut@fs@oneskip}{31.32} 276 | \newcommand*{\njut@fs@szero}{36.14} % 小初号 36bp 277 | \newcommand*{\njut@fs@szeroskip}{43.36} 278 | \newcommand*{\njut@fs@zero}{42.16} % 初号字 42bp 279 | \newcommand*{\njut@fs@zeroskip}{50.59} 280 | \DeclareMathSizes{\njut@fs@eight} 281 | {\njut@fs@eight} 282 | {5} 283 | {5} 284 | \DeclareMathSizes{\njut@fs@seven} 285 | {\njut@fs@seven} 286 | {5} 287 | {5} 288 | \DeclareMathSizes{\njut@fs@ssix} 289 | {\njut@fs@ssix} 290 | {5} 291 | {5} 292 | \DeclareMathSizes{\njut@fs@six} 293 | {\njut@fs@six} 294 | {5} 295 | {5} 296 | \DeclareMathSizes{\njut@fs@sfive} 297 | {\njut@fs@sfive} 298 | {6} 299 | {5} 300 | \DeclareMathSizes{\njut@fs@five} 301 | {\njut@fs@five} 302 | {7} 303 | {5} 304 | \DeclareMathSizes{\njut@fs@sfour} 305 | {\njut@fs@sfour} 306 | {8} 307 | {6} 308 | \DeclareMathSizes{\njut@fs@four} 309 | {\njut@fs@four} 310 | {\njut@fs@five} 311 | {\njut@fs@six} 312 | \DeclareMathSizes{\njut@fs@sthree} 313 | {\njut@fs@sthree} 314 | {\njut@fs@sfour} 315 | {\njut@fs@sfive} 316 | \DeclareMathSizes{\njut@fs@three} 317 | {\njut@fs@three} 318 | {\njut@fs@four} 319 | {\njut@fs@five} 320 | \DeclareMathSizes{\njut@fs@stwo} 321 | {\njut@fs@stwo} 322 | {\njut@fs@sthree} 323 | {\njut@fs@sfour} 324 | \DeclareMathSizes{\njut@fs@two} 325 | {\njut@fs@two} 326 | {\njut@fs@three} 327 | {\njut@fs@four} 328 | \DeclareMathSizes{\njut@fs@sone} 329 | {\njut@fs@sone} 330 | {\njut@fs@stwo} 331 | {\njut@fs@sthree} 332 | \DeclareMathSizes{\njut@fs@one} 333 | {\njut@fs@one} 334 | {\njut@fs@two} 335 | {\njut@fs@three} 336 | \DeclareMathSizes{\njut@fs@szero} 337 | {\njut@fs@szero} 338 | {\njut@fs@sone} 339 | {\njut@fs@stwo} 340 | \DeclareMathSizes{\njut@fs@zero} 341 | {\njut@fs@zero} 342 | {\njut@fs@one} 343 | {\njut@fs@two} 344 | \def\njut@zihao{} 345 | \DeclareRobustCommand*{\zihao}[1]{% 346 | \def\njut@zihao{#1}% 347 | \ifnum #11<0% 348 | \@tempcnta=-#1 349 | \ifcase\@tempcnta% 350 | \fontsize\njut@fs@szero\njut@fs@szeroskip% 351 | \or \fontsize\njut@fs@sone\njut@fs@soneskip% 352 | \or \fontsize\njut@fs@stwo\njut@fs@stwoskip% 353 | \or \fontsize\njut@fs@sthree\njut@fs@sthreeskip% 354 | \or \fontsize\njut@fs@sfour\njut@fs@sfourskip% 355 | \or \fontsize\njut@fs@sfive\njut@fs@sfiveskip% 356 | \or \fontsize\njut@fs@ssix\njut@fs@ssixskip% 357 | \else \ClassError{njuthesis}{% 358 | Undefined Chinese font size in command \protect\zihao}{% 359 | The old font size is used if you continue.}% 360 | \fi% 361 | \else% 362 | \@tempcnta=#1 363 | \ifcase\@tempcnta% 364 | \fontsize\njut@fs@zero\njut@fs@zeroskip% 365 | \or \fontsize\njut@fs@one\njut@fs@oneskip% 366 | \or \fontsize\njut@fs@two\njut@fs@twoskip% 367 | \or \fontsize\njut@fs@three\njut@fs@threeskip% 368 | \or \fontsize\njut@fs@four\njut@fs@fourskip% 369 | \or \fontsize\njut@fs@five\njut@fs@fiveskip% 370 | \or \fontsize\njut@fs@six\njut@fs@sixskip% 371 | \or \fontsize\njut@fs@seven\njut@fs@sevenskip% 372 | \or \fontsize\njut@fs@eight\njut@fs@eightskip% 373 | \else \ClassError{njuthesis}{% 374 | Undefined Chinese font size in command \protect\zihao}{% 375 | The old font size is used if you continue.}% 376 | \fi% 377 | \fi% 378 | \selectfont\ignorespaces} 379 | \renewcommand{\tiny}{% 小六号 6.5bp 380 | \@setfontsize\tiny{\njut@fs@ssix}{\njut@fs@ssixskip}} 381 | 382 | \renewcommand{\scriptsize}{% 六号字 7.5bp 383 | \@setfontsize\scriptsize{\njut@fs@six}{\njut@fs@sixskip}} 384 | \renewcommand{\footnotesize}{% 小五号 9bp 385 | \@setfontsize\footnotesize{\njut@fs@sfive}{\njut@fs@sfiveskip}% 386 | \abovedisplayskip 6\p@ \@plus2\p@ \@minus4\p@ 387 | \abovedisplayshortskip \z@ \@plus\p@ 388 | \belowdisplayshortskip 3\p@ \@plus\p@ \@minus2\p@ 389 | \def\@listi{\leftmargin\leftmargini 390 | \topsep 3\p@ \@plus\p@ \@minus\p@ 391 | \parsep 2\p@ \@plus\p@ \@minus\p@ 392 | \itemsep \parsep}% 393 | \belowdisplayskip \abovedisplayskip} 394 | 395 | \renewcommand{\thefootnote}{\arabic{footnote}} 396 | 397 | \renewcommand{\small}{% 五号 10bp 398 | \@setfontsize\small{\njut@fs@five}{\njut@fs@fiveskip}% 399 | \abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@ 400 | \abovedisplayshortskip \z@ \@plus2\p@ 401 | \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@ 402 | \def\@listi{\leftmargin\leftmargini 403 | \topsep 4\p@ \@plus2\p@ \@minus2\p@ 404 | \parsep 2\p@ \@plus\p@ \@minus\p@ 405 | \itemsep \parsep}% 406 | \belowdisplayskip \abovedisplayskip} 407 | \renewcommand{\normalsize}{% 小四号 12bp 408 | \@setfontsize\normalsize{\njut@fs@sfour}{\njut@fs@sfourskip}% 409 | \abovedisplayskip 10\p@ \@plus2\p@ \@minus5\p@ 410 | \abovedisplayshortskip \z@ \@plus3\p@ 411 | \belowdisplayshortskip 6\p@ \@plus3\p@ \@minus3\p@ 412 | \belowdisplayskip \abovedisplayskip 413 | \let\@listi\@listI} 414 | \renewcommand{\large}{% 小三号 15bp 415 | \@setfontsize\large{\njut@fs@sthree}{\njut@fs@sthreeskip}} 416 | \renewcommand{\Large}{% 小二号 18bp 417 | \@setfontsize\Large{\njut@fs@stwo}{\njut@fs@stwoskip}} 418 | \renewcommand{\LARGE}{% 小一号 24bp 419 | \@setfontsize\LARGE{\njut@fs@sone}{\njut@fs@soneskip}} 420 | \renewcommand{\huge}{% 一号 26bp 421 | \@setfontsize\huge{\njut@fs@one}{\njut@fs@oneskip}} 422 | \renewcommand{\Huge}{% 小初号 36bp 423 | \@setfontsize\Huge{\njut@fs@szero}{\njut@fs@szeroskip}} 424 | \newcommand*{\ziju}[1]{\renewcommand*{\CJKglue}{\hskip {#1}}} 425 | \renewcommand{\textsc}[1]{{\usefont{OT1}{cmr}{m}{sc}{#1}}} 426 | \newcommand{\dashnumber}[2]% 427 | {{#1}\kern.07em\rule[.5ex]{.4em}{.15ex}\kern.07em{#2}} 428 | \renewcommand*{\thefigure}{\dashnumber{\thechapter}{\arabic{figure}}} 429 | \renewcommand*{\thetable}{\dashnumber{\thechapter}{\arabic{table}}} 430 | \renewcommand*{\theequation}{\dashnumber{\thechapter}{\arabic{equation}}} 431 | \renewcommand*{\thesubfigure}{(\alph{subfigure})} 432 | \renewcommand*{\thesubtable}{(\alph{subtable})} 433 | \newtheoremstyle{plain}% name 434 | {1em}% Space above, empty = `usual value' 435 | {1em}% Space below 436 | {\normalfont}% Body font 437 | {}% Indent amount 438 | {\normalfont\bfseries}% Thm head font 439 | {}% Punctuation after thm head 440 | {1em}% Space after thm head: \newline = linebreak 441 | {}% Thm head spec 442 | \newtheorem{definition}{\njut@cap@definition}[chapter] 443 | \newtheorem{notation}[definition]{\njut@cap@notation} 444 | \newtheorem{theorem}{\njut@cap@theorem}[chapter] 445 | \newtheorem{lemma}[theorem]{\njut@cap@lemma} 446 | \newtheorem{corollary}[theorem]{\njut@cap@corollary} 447 | \newtheorem{proposition}[theorem]{\njut@cap@proposition} 448 | \newtheorem{fact}[theorem]{\njut@cap@fact} 449 | \newtheorem{assumption}[theorem]{\njut@cap@assumption} 450 | \newtheorem{conjecture}[theorem]{\njut@cap@conjecture} 451 | \newtheorem{hypothesis}{\njut@cap@hypothesis}[chapter] 452 | \newtheorem{axiom}{\njut@cap@axiom}[chapter] 453 | \newtheorem{postulate}{\njut@cap@postulate}[chapter] 454 | \newtheorem{principle}{\njut@cap@principle}[chapter] 455 | \newtheorem{problem}{\njut@cap@problem}[chapter] 456 | \newtheorem{exercise}{\njut@cap@exercise}[chapter] 457 | \newtheorem{example}{\njut@cap@example}[chapter] 458 | \newtheorem{remark}{\njut@cap@remark}[chapter] 459 | 460 | \renewenvironment{proof}[1][\njut@cap@proof]{\par 461 | \pushQED{\qed}% 462 | \normalfont \topsep6\p@\@plus6\p@\relax 463 | \trivlist 464 | \item[\hskip\labelsep\textbf{#1}\@addpunct{:}]\ignorespaces 465 | }{\popQED\endtrivlist\@endpefalse} 466 | 467 | \newenvironment{solution}[1][\njut@cap@solution]{\par 468 | \normalfont \topsep6\p@\@plus6\p@\relax 469 | \trivlist 470 | \item[\hskip\labelsep\textbf{#1}\@addpunct{:}]\ignorespaces 471 | }{\endtrivlist\@endpefalse} 472 | 473 | %\newtheorem{algorithm}{\njut@cap@algorithm}[chapter] 474 | \renewcommand*{\thedefinition}{\dashnumber{\thechapter}{\arabic{definition}}} 475 | \renewcommand*{\thetheorem}{\dashnumber{\thechapter}{\arabic{theorem}}} 476 | \renewcommand*{\theaxiom}{\dashnumber{\thechapter}{\arabic{axiom}}} 477 | \renewcommand*{\theproblem}{\dashnumber{\thechapter}{\arabic{problem}}} 478 | \renewcommand*{\theexercise}{\dashnumber{\thechapter}{\arabic{exercise}}} 479 | \renewcommand*{\theexample}{\dashnumber{\thechapter}{\arabic{example}}} 480 | \renewcommand*{\theremark}{\dashnumber{\thechapter}{\arabic{remark}}} 481 | \renewcommand*{\textfraction}{0.05} 482 | \renewcommand*{\topfraction}{0.9} 483 | \renewcommand*{\bottomfraction}{0.8} 484 | \renewcommand*{\floatpagefraction}{0.85} 485 | \newcommand*{\abstractname}{\njut@cap@abstractname} 486 | \renewcommand*{\contentsname}{\njut@cap@contentsname} 487 | \renewcommand*{\listfigurename}{\njut@cap@listfigurename} 488 | \renewcommand*{\listtablename}{\njut@cap@listtablename} 489 | \newcommand*{\listsymbolname}{\njut@cap@listsymbolname} 490 | \newcommand*{\listequationname}{\njut@cap@listequationname} 491 | \renewcommand*{\glossaryname}{\njut@cap@glossaryname} 492 | \renewcommand*{\indexname}{\njut@cap@indexname} 493 | \newcommand*{\equationname}{\njut@cap@equationname} 494 | \renewcommand*{\bibname}{\njut@cap@bibname} 495 | \renewcommand*{\figurename}{\njut@cap@figurename} 496 | \renewcommand*{\tablename}{\njut@cap@tablename} 497 | \renewcommand*{\chaptername}{\njut@cap@chaptername} 498 | \renewcommand*{\appendixname}{\njut@cap@appendixname} 499 | % 2021年本科毕业论文要求各部分标题四号黑体 500 | % 设置章节标题格式 501 | \titleformat{\chapter}[hang] 502 | {\centering\zihao{4}\bfseries} 503 | {\chaptertitlename}{1em}{} 504 | \titlespacing{\chapter} 505 | {0pt} 506 | {*4} 507 | {*3} 508 | \titleformat{\section}[hang] 509 | {\zihao{4}\bfseries} 510 | {\thesection}{1em}{} 511 | \titlespacing{\section} 512 | {0pt} 513 | {*3.5} 514 | {*2.3} 515 | \titleformat{\subsection}[hang] 516 | {\zihao{4}\bfseries} 517 | {\thesubsection}{1em}{} 518 | \titlespacing{\subsection} 519 | {0pt} 520 | {*3} 521 | {*1.5} 522 | \titleformat{\subsubsection}[hang] 523 | {\zihao{4}\bfseries} 524 | {\thesubsubsection}{1em}{} 525 | \titlespacing{\subsubsection} 526 | {0pt} 527 | {*2.5} 528 | {*1.5} 529 | \titleformat{\paragraph}[hang] 530 | {\zihao{-4}\bfseries} 531 | {}{0em}{} 532 | \titlespacing{\paragraph} 533 | {0pt} 534 | {*2} 535 | {*1} 536 | \titleformat{\subparagraph}[hang] 537 | {\zihao{4}\bfseries} 538 | {}{0em}{} 539 | \titlespacing{\subparagraph} 540 | {0pt} 541 | {*1.5} 542 | {*1} 543 | \setcounter{secnumdepth}{4} 544 | \renewcommand{\thechapter}{\arabic{chapter}} 545 | \renewcommand{\thesection}{\thechapter\hspace{0.16em}.\hspace{0.16em}\arabic{section}} 546 | \renewcommand{\thesubsection}{\thesection\hspace{0.16em}.\hspace{0.16em}\arabic{subsection}} 547 | \renewcommand{\thesubsubsection}{\thesubsection\hspace{0.16em}.\hspace{0.16em}\arabic{subsubsection}} 548 | \DeclareCaptionFont{songtibf}{\bf\songti} 549 | \captionsetup{font=small} 550 | \captionsetup[table]{position=top,textfont=songtibf} 551 | \captionsetup[figure]{position=below,textfont=songtibf} 552 | % 行距 553 | % \renewcommand*{\baselinestretch}{1.38} 554 | % 行距为1.5倍 word行距 555 | % laTex默认1.2行距,word默认行距是1.3, 556 | % 所以1.5/1.2*1.3 = 1.625 557 | \linespread{1.625} 558 | % \setstretch{1.5} 559 | \let\convertergy@oldtabular\tabular 560 | \let\convertergy@endoldtabular\endtabular 561 | \renewenvironment{tabular}% 562 | {\bgroup% 563 | \renewcommand{\arraystretch}{1.3}% 564 | \convertergy@oldtabular}% 565 | {\convertergy@endoldtabular\egroup} 566 | \geometry{headheight=2.6cm,headsep=3mm,footskip=13mm} 567 | \geometry{top=2.5cm,bottom=2.5cm,left=3.2cm,right=3.2cm} 568 | \def\njut@CJK@charwidth{\hskip \f@size \p@} 569 | \newdimen\njut@CJK@chardimen 570 | \settowidth\njut@CJK@chardimen{\njut@CJK@charwidth\CJKglue} 571 | \newcommand{\njut@CJK@setfontspace}{% 572 | \settowidth\njut@CJK@chardimen{\njut@CJK@charwidth\CJKglue}% 573 | \ifdim\parindent=0pt\relax\else\parindent2\njut@CJK@chardimen\fi% 574 | } 575 | \renewcommand*{\indent}{\njut@CJK@setfontspace\parindent2\njut@CJK@chardimen} 576 | \AtBeginDocument{\indent} 577 | % >>>>>>>>>>>>>>>>>>>>>>>>>>页码<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 578 | \fancypagestyle{plain}{% 579 | \fancyhead{} 580 | \fancyfoot[C]{\zihao{5}\thepage} 581 | \renewcommand{\headrulewidth}{0pt} % and the header line 582 | \renewcommand{\footrulewidth}{0pt} % and the footer line 583 | } 584 | \fancyhead{} 585 | \fancyfoot[C]{\zihao{5}\thepage} 586 | \renewcommand{\footrulewidth}{0pt} 587 | \renewcommand{\headrulewidth}{0pt} 588 | %\fancyhead[LE,RO]{\thepage} 589 | %\renewcommand{\headrulewidth}{1pt} 590 | %\fancyhead[RE]{\leftmark} 591 | %\fancyhead[LO]{% 592 | %\ifthenelse{\equal{\rightmark}{}}% if \rightmark is empty 593 | % {\leftmark}% 594 | % {\rightmark}% 595 | %} 596 | \pagestyle{fancy} 597 | 598 | \renewcommand{\chaptermark}[1]{\markboth{% 599 | \bfseries\if@mainmatter\chaptertitlename\hspace{1em}\fi{#1}% 600 | }{}} 601 | \renewcommand{\sectionmark}[1]{\markright{% 602 | \bfseries\if@mainmatter\thesection\hspace{1em}\fi{#1}% 603 | }} 604 | 605 | % 不另页右页开始 606 | % \def\cleardoublepage{ 607 | % \clearpage\if@twoside \ifodd\c@page\fi\fi 608 | % } 609 | 610 | %%%%%% 611 | % 另页右页开始 612 | \def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else 613 | \hbox{}\thispagestyle{empty}\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi} 614 | %%%%% 615 | \setlist{% 616 | topsep=0.3em, % 列表顶端的垂直空白 617 | partopsep=0pt, % 列表环境前面紧接着一个空白行时其顶端的额外垂直空白 618 | itemsep=0ex plus 0.1ex, % 列表项之间的额外垂直空白 619 | parsep=0pt, % 列表项内的段落之间的垂直空白 620 | leftmargin=1.5em, % 环境的左边界和列表之间的水平距离 621 | rightmargin=0em, % 环境的右边界和列表之间的水平距离 622 | labelsep=0.5em, % 包含标签的盒子与列表项的第一行文本之间的间隔 623 | labelwidth=2em, % 包含标签的盒子的正常宽度;若实际宽度更宽,则使用实际宽度。 624 | } 625 | \setlist[itemize,1]{label=$\medbullet$} 626 | \setlist[itemize,2]{label=$\blacksquare$} 627 | \setlist[itemize,3]{label=$\Diamondblack$} 628 | \renewenvironment{quote}% 629 | {\list{}{\leftmargin=4em\rightmargin=4em}\item[]}% 630 | {\endlist} 631 | \renewenvironment{quotation}% 632 | {\list{}{\leftmargin=4em\rightmargin=4em}\item[]}% 633 | {\endlist} 634 | \newcommand\nchapter[1]{% 635 | \if@mainmatter% 636 | \@mainmatterfalse% 637 | \chapter{#1}% 638 | \@mainmattertrue% 639 | \else 640 | \chapter{#1}% 641 | \fi 642 | } 643 | \def\@dottedtocline#1#2#3#4#5{% 644 | \ifnum #1>\c@tocdepth \else 645 | \vskip \z@ \@plus.2\p@ 646 | {\leftskip #2\relax \rightskip \@tocrmarg \parfillskip -\rightskip 647 | \parindent #2\relax\@afterindenttrue 648 | \interlinepenalty\@M 649 | \leavevmode 650 | \@tempdima #3\relax 651 | \advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip 652 | {#4}\nobreak 653 | \leaders\hbox{$\m@th\mkern 1.5mu\cdot\mkern 1.5mu$}\hfill 654 | \nobreak 655 | \hb@xt@\@pnumwidth{\hfil\normalfont \normalcolor #5}% 656 | \par}% 657 | \fi} 658 | \renewcommand*{\l@part}[2]{% 659 | \ifnum \c@tocdepth >-2\relax 660 | \addpenalty{-\@highpenalty}% 661 | \addvspace{2.25em \@plus\p@}% 662 | \setlength\@tempdima{3em}% 663 | \begingroup 664 | \parindent \z@ \rightskip \@pnumwidth 665 | \parfillskip -\@pnumwidth 666 | {\leavevmode 667 | \large \bfseries #1 668 | \leaders\hbox{$\m@th\mkern 1.5mu\cdot\mkern 1.5mu$} 669 | \hfil \hb@xt@\@pnumwidth{\hss #2}}\par 670 | \nobreak 671 | \global\@nobreaktrue 672 | \everypar{\global\@nobreakfalse\everypar{}}% 673 | \endgroup 674 | \fi} 675 | \renewcommand*{\l@chapter}[2]{% 676 | \ifnum \c@tocdepth >\m@ne 677 | \addpenalty{-\@highpenalty}% 678 | \vskip 1.0em \@plus\p@ 679 | \setlength\@tempdima{1.5em}% 680 | \begingroup 681 | \parindent \z@ \rightskip \@pnumwidth 682 | \parfillskip -\@pnumwidth 683 | \leavevmode \bfseries 684 | \advance\leftskip\@tempdima 685 | \hskip -\leftskip 686 | #1\nobreak 687 | \leaders\hbox{$\m@th\mkern 1.5mu\cdot\mkern 1.5mu$} 688 | \hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par 689 | \penalty\@highpenalty 690 | \endgroup 691 | \fi} 692 | % 设置目录样式 693 | % nchapter并未使用 694 | \titlecontents{nchapter} 695 | [1em] 696 | {\bf \zihao{4}}% 697 | {\hspace*{2em}\contentslabel{2em}}% 698 | {}% 699 | {\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}% 700 | % chapter样式,即每章标题 701 | \titlecontents{chapter} 702 | [1em] 703 | {\bf \zihao{4}}% 704 | {\hspace*{2em}\contentslabel{2em}}% 705 | {}% 706 | {\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}% 707 | % section样式,节标题 708 | % 节标题为小四字号 709 | \titlecontents{section} 710 | [2.5cm] 711 | {\zihao{-4} \songti}% 712 | {\contentslabel{2em}}% 713 | {}% 714 | {\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}% 715 | % subsection样式,三级标题 716 | \titlecontents{subsection} 717 | [4cm] 718 | {\zihao{-4} \songti}% 719 | {\contentslabel{3.5em}}% 720 | {}% 721 | {\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}% 722 | % subsubsection一般不使用,也不会显示在目录中,故此处没有配置 723 | 724 | % 重定义目录命令 725 | \renewcommand*{\tableofcontents}{% 726 | \if@twocolumn 727 | \@restonecoltrue\onecolumn 728 | \else 729 | \@restonecolfalse 730 | \fi 731 | \chapter*{\songti\fontsize{\njut@fs@three}{\njut@fs@threeskip}\contentsname\selectfont}% 732 | % \contentsname 733 | \@mkboth{\MakeUppercase\contentsname}{\MakeUppercase\contentsname}% 734 | \@starttoc{toc}% 735 | \if@restonecol\twocolumn\fi 736 | } 737 | \renewcommand*{\listoftables}{% 738 | \if@twocolumn 739 | \@restonecoltrue\onecolumn 740 | \else 741 | \@restonecolfalse 742 | \fi 743 | \nchapter{\listtablename}% 744 | \@mkboth{\MakeUppercase\listtablename}{\MakeUppercase\listtablename}% 745 | \@starttoc{lot}% 746 | \if@restonecol\twocolumn\fi 747 | } 748 | \renewcommand*{\listoffigures}{% 749 | \if@twocolumn 750 | \@restonecoltrue\onecolumn 751 | \else 752 | \@restonecolfalse 753 | \fi 754 | \nchapter{\listfigurename}% 755 | \@mkboth{\MakeUppercase\listfigurename}{\MakeUppercase\listfigurename}% 756 | \@starttoc{lof}% 757 | \if@restonecol\twocolumn\fi 758 | } 759 | \renewenvironment{thebibliography}[1] 760 | {\nchapter{\bibname}% 761 | \@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname}% 762 | \list{\@biblabel{\@arabic\c@enumiv}}% 763 | {\settowidth\labelwidth{\@biblabel{#1}}% 764 | \leftmargin\labelwidth 765 | \advance\leftmargin\labelsep 766 | \@openbib@code 767 | \usecounter{enumiv}% 768 | \let\p@enumiv\@empty 769 | \renewcommand\theenumiv{\@arabic\c@enumiv}}% 770 | \sloppy 771 | \clubpenalty4000 772 | \@clubpenalty \clubpenalty 773 | \widowpenalty4000% 774 | \sfcode`\.\@m} 775 | {\def\@noitemerr 776 | {\@latex@warning{Empty `thebibliography' environment}}% 777 | \endlist} 778 | \bibliographystyle{gbt7714-numerical} 779 | \setcitestyle{super,square} 780 | \renewcommand\NAT@citesuper[3]{% 781 | \ifNAT@swa% 782 | \if*#2*\else#2\NAT@spacechar\fi% 783 | \unskip\kern\p@\textsuperscript{\NAT@@open#1\NAT@@close#3}% 784 | \else #1\fi\endgroup% 785 | } 786 | \AtBeginDocument{% 787 | \let\oldref\ref% 788 | \renewcommand*{\ref}[1]{\thinspace\oldref{#1}}% 789 | \renewcommand*{\eqref}[1]{(\oldref{#1})} 790 | } 791 | \DefineFNsymbols*{circlednumber}[text]{% 792 | {\ding{192}} % 793 | {\ding{193}} % 794 | {\ding{194}} % 795 | {\ding{195}} % 796 | {\ding{196}} % 797 | {\ding{197}} % 798 | {\ding{198}} % 799 | {\ding{199}} % 800 | {\ding{200}} % 801 | {\ding{201}} % 802 | }% 803 | \setfnsymbol{circlednumber} 804 | \newcommand*{\classification}[1]{% 805 | \renewcommand*{\njut@value@nlc@classification}{#1}} 806 | \newcommand*{\securitylevel}[1]{% 807 | \renewcommand*{\njut@value@nlc@securitylevel}{#1}} 808 | \newcommand*{\openlevel}{\njut@cap@nlc@openlevel} 809 | \newcommand*{\controllevel}{\njut@cap@nlc@controllevel} 810 | \newcommand*{\confidentiallevel}{\njut@cap@nlc@confidentiallevel} 811 | \newcommand*{\clasifiedlevel}{\njut@cap@nlc@clasifiedlevel} 812 | \newcommand*{\mostconfidentiallevel}{\njut@cap@nlc@mostconfidentiallevel} 813 | \newcommand*{\udc}[1]{% 814 | \renewcommand*{\njut@value@nlc@udc}{#1}} 815 | \newcommand*{\nlctitlea}[1]{% 816 | \renewcommand{\njut@value@nlc@titlea}{#1}} 817 | \newcommand*{\nlctitleb}[1]{% 818 | \renewcommand{\njut@value@nlc@titleb}{#1}} 819 | \newcommand*{\nlctitlec}[1]{% 820 | \renewcommand{\njut@value@nlc@titlec}{#1}} 821 | \newcommand*{\supervisorinfo}[1]{% 822 | \renewcommand{\njut@value@nlc@supervisorinfo}{#1}} 823 | \newcommand*{\chairman}[1]{% 824 | \renewcommand{\njut@value@nlc@chairman}{#1}} 825 | \newcommand*{\reviewera}[1]{% 826 | \renewcommand{\njut@value@nlc@reviewera}{#1}} 827 | \newcommand*{\reviewerb}[1]{% 828 | \renewcommand{\njut@value@nlc@reviewerb}{#1}} 829 | \newcommand*{\reviewerc}[1]{% 830 | \renewcommand{\njut@value@nlc@reviewerc}{#1}} 831 | \newcommand*{\reviewerd}[1]{% 832 | \renewcommand{\njut@value@nlc@reviewerd}{#1}} 833 | \newcommand*{\nlcdate}[1]{% 834 | \renewcommand{\njut@value@nlc@date}{#1}} 835 | \renewcommand*{\title}[1]{% 836 | \renewcommand{\njut@value@title}{#1}} 837 | \newcommand*{\titlea}[1]{% 838 | \njut@title@twolinetitletrue 839 | \renewcommand{\njut@value@titlea}{#1}} 840 | \newcommand*{\titleb}[1]{% 841 | \renewcommand{\njut@value@titleb}{#1}} 842 | \newcommand*{\titlec}[1]{% 843 | \njut@title@twolinetitlefalse 844 | \njut@title@threelinetitletrue 845 | \renewcommand{\njut@value@titlec}{#1}} 846 | \renewcommand*{\author}[1]{% 847 | \renewcommand{\njut@value@author}{#1}} 848 | \newcommand*{\studentid}[1]{% 849 | \renewcommand{\njut@value@studentid}{#1}} 850 | \newcommand*{\telphone}[1]{% 851 | \renewcommand{\njut@value@telphone}{#1}} 852 | \newcommand*{\email}[1]{% 853 | \renewcommand{\njut@value@email}{#1}} 854 | \newcommand*{\studentnum}[1]{% 855 | \renewcommand{\njut@value@studentnum}{#1}} 856 | \newcommand*{\grade}[1]{% 857 | \renewcommand{\njut@value@grade}{#1}} 858 | \newcommand*{\supervisor}[1]{% 859 | \renewcommand{\njut@value@supervisor}{#1}} 860 | \newcommand*{\supervisortitle}[1]{% 861 | \renewcommand{\njut@value@supervisortitle}{#1}} 862 | \newcommand*{\secondsupervisor}[1]{% 863 | \njut@title@twosupervisorstrue 864 | \renewcommand{\njut@value@secondsupervisor}{#1}} 865 | \newcommand*{\secondsupervisortitle}[1]{% 866 | \njut@title@twosupervisorstrue 867 | \renewcommand{\njut@value@secondsupervisortitle}{#1}} 868 | \newcommand*{\supervisortelphone}[1]{% 869 | \renewcommand{\njut@value@supervisortelphone}{#1}} 870 | \newcommand*{\major}[1]{% 871 | \renewcommand{\njut@value@major}{#1}} 872 | \newcommand*{\researchfield}[1]{% 873 | \renewcommand{\njut@value@researchfield}{#1}} 874 | \newcommand*{\department}[1]{% 875 | \renewcommand{\njut@value@department}{#1}} 876 | \newcommand*{\institute}[1]{% 877 | \renewcommand{\njut@value@institute}{#1}} 878 | \newcommand*{\submitdate}[1]{% 879 | \renewcommand{\njut@value@submitdate}{#1}} 880 | \newcommand*{\defenddate}[1]{% 881 | \renewcommand{\njut@value@defenddate}{#1}} 882 | \renewcommand*{\date}[1]{% 883 | \renewcommand{\njut@value@date}{#1}} 884 | \newcommand*{\englishtitle}[1]{% 885 | \renewcommand{\njut@value@en@title}{#1}} 886 | \newcommand*{\englishauthor}[1]{% 887 | \renewcommand{\njut@value@en@author}{#1}} 888 | \newcommand{\englishsupervisor}[1]{% 889 | \renewcommand{\njut@value@en@supervisor}{#1}} 890 | \newcommand{\englishsecondsupervisor}[1]{% 891 | \njut@title@twosupervisorstrue 892 | \renewcommand{\njut@value@en@secondsupervisor}{#1}} 893 | \newcommand{\englishmajor}[1]{% 894 | \renewcommand{\njut@value@en@major}{#1}} 895 | \newcommand{\englishdepartment}[1]{% 896 | \renewcommand{\njut@value@en@department}{#1}} 897 | \newcommand{\englishinstitute}[1]{% 898 | \renewcommand{\njut@value@en@institute}{#1}} 899 | \newcommand*{\englishdate}[1]{% 900 | \renewcommand{\njut@value@en@date}{#1}} 901 | \newcommand{\njut@underline}[2][\textwidth]% 902 | {\CJKunderline{\makebox[#1]{#2}}} 903 | \def\njutunderline{\@ifnextchar[\njut@underline\CJKunderline} 904 | \newcommand*{\makenlctitle}{% 905 | \thispagestyle{empty} 906 | \pdfbookmark[0]{\njut@cap@nlc}{nlc} 907 | {\songti\zihao{-4} 908 | \makebox[40pt][l]{\njut@cap@nlc@classification} 909 | \njutunderline[150pt]{\njut@value@nlc@classification} 910 | \hfill 911 | \makebox[40pt][r]{\njut@cap@nlc@securitylevel} 912 | \njutunderline[150pt]{\njut@value@nlc@securitylevel} 913 | \vskip 10pt 914 | \makebox[40pt][l]{\njut@cap@nlc@udc} 915 | \njutunderline[150pt]{\njut@value@nlc@udc} 916 | } 917 | \vskip\stretch{2} 918 | \begin{center} 919 | \def\ULthickness{1pt} 920 | {\kaishu\zihao{-0} \njut@cap@nlc@title} 921 | {\kaishu\zihao{1} 922 | \vskip \stretch{1} 923 | \njutunderline[12em]{\njut@value@nlc@titlea}\\ 924 | \njutunderline[12em]{\njut@value@nlc@titleb}\\ 925 | \njutunderline[12em]{\njut@value@nlc@titlec}\\ 926 | } 927 | \vskip \stretch{1} 928 | {\kaishu\zihao{4}\njut@cap@nlc@quotetitle} 929 | \vskip \stretch{1} 930 | {\kaishu\zihao{1}\njutunderline{\njut@value@author}} 931 | \vskip \stretch{1} 932 | {\kaishu\zihao{4}\njut@cap@nlc@author} 933 | \end{center} 934 | \vskip\stretch{1} 935 | {\kaishu\zihao{4} 936 | \noindent\njut@cap@nlc@supervisor% 937 | \njutunderline[94pt]{\njut@value@supervisor}\par 938 | \noindent\njutunderline[\textwidth]{% 939 | \njut@value@nlc@supervisorinfo}\par 940 | \noindent\njut@cap@nlc@degree% 941 | \njutunderline[8em]{\njut@value@degree}% 942 | \noindent\njut@cap@nlc@major% 943 | \njutunderline[164pt]{\njut@value@major}\par 944 | \noindent\njut@cap@nlc@submitdate% 945 | \njutunderline[8em]{\njut@value@submitdate}% 946 | \njut@cap@nlc@defenddate% 947 | \njutunderline[134pt]{\njut@value@defenddate}\par 948 | \noindent\njut@cap@nlc@institute\njutunderline[290pt]{}\par 949 | \noindent\hfill\njut@cap@nlc@chairman% 950 | \njutunderline[9em]{\njut@value@nlc@chairman}\par 951 | \noindent\hfill\njut@cap@nlc@reviwer% 952 | \njutunderline[9em]{\njut@value@nlc@reviewera}\par 953 | \noindent\hfill\njutunderline[9em]{\njut@value@nlc@reviewerb}\par 954 | \noindent\hfill\njutunderline[9em]{\njut@value@nlc@reviewerc}\par 955 | \noindent\hfill\njutunderline[9em]{\njut@value@nlc@reviewerd}\par 956 | } 957 | \cleardoublepage 958 | } 959 | % 单行标题 960 | \newcommand*{\njut@covertable@onelinetitle}{ 961 | \begin{tabular}{p{4.2em}c} 962 | \makebox[4.2em][s]{\njut@cap@cover@department} 963 | & \njutunderline[250pt]{\songti\njut@value@department}\\ 964 | \makebox[4.2em][s]{\njut@cap@cover@major} 965 | & \njutunderline[250pt]{\songti\njut@value@major}\\ 966 | \makebox[4.2em][s]{\njut@cap@cover@title} 967 | & \njutunderline[250pt]{\bf{\songti\njut@value@title}} 968 | \end{tabular} 969 | \begin{tabular}{p{4.2em}cp{4.2em}c} 970 | \makebox[4.2em][s]{\njut@cap@cover@grade} 971 | & \njutunderline[90pt]{\songti\njut@value@grade} 972 | & \makebox[4.2em][s]{\njut@cap@cover@studentid} 973 | & \njutunderline[90pt]{\songti\njut@value@studentid}\\ 974 | \end{tabular} 975 | \begin{tabular}{p{4.2em}c} 976 | \makebox[4.2em][s]{\njut@cap@cover@author} 977 | & \njutunderline[250pt]{\songti\njut@value@author} 978 | \end{tabular} 979 | \begin{tabular}{p{4.2em}cp{4.2em}c} 980 | \makebox[4.2em][s]{\njut@cap@cover@supervisor} 981 | & \njutunderline[90pt]{\songti\njut@value@supervisor} 982 | & \makebox[4.2em][s]{\njut@cap@cover@supervisortitle} 983 | & \njutunderline[90pt]{\songti\njut@value@supervisortitle}\\ 984 | \end{tabular} 985 | % 第二导师 986 | \ifnjut@title@twosupervisors 987 | \begin{tabular}{p{4.2em}cp{4.2em}c} 988 | \makebox[4.2em][s]{\njut@cap@cover@secondsupervisor} 989 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisor} 990 | & \makebox[4.2em][s]{\njut@cap@cover@secondsupervisortitle} 991 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisortitle}\\ 992 | \end{tabular} 993 | \fi 994 | \begin{tabular}{p{4.2em}c} 995 | \makebox[4.2em][s]{\njut@cap@cover@submitdate} 996 | & \njutunderline[250pt]{\songti\njut@value@submitdate}\\ 997 | \end{tabular} 998 | } 999 | % 两行标题 1000 | \newcommand*{\njut@covertable@twolinetitle}{ 1001 | \begin{tabular}{p{4.2em}c} 1002 | \makebox[4.2em][s]{\njut@cap@cover@department} 1003 | & \njutunderline[250pt]{\songti\njut@value@department}\\ 1004 | \makebox[4.2em][s]{\njut@cap@cover@major} 1005 | & \njutunderline[250pt]{\songti\njut@value@major}\\ 1006 | \makebox[4.2em][s]{\njut@cap@cover@title} 1007 | & \njutunderline[250pt]{\bf{\songti\njut@value@titlea}} \\ 1008 | \makebox[7em][s]{} 1009 | & \njutunderline[250pt]{\bf{\songti\njut@value@titleb}} 1010 | \end{tabular} 1011 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1012 | \makebox[4.2em][s]{\njut@cap@cover@grade} 1013 | & \njutunderline[90pt]{\songti\njut@value@grade} 1014 | & \makebox[4.2em][s]{\njut@cap@cover@studentid} 1015 | & \njutunderline[90pt]{\songti\njut@value@studentid}\\ 1016 | \end{tabular} 1017 | \begin{tabular}{p{4.2em}c} 1018 | \makebox[4.2em][s]{\njut@cap@cover@author} 1019 | & \njutunderline[250pt]{\songti\njut@value@author} 1020 | \end{tabular} 1021 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1022 | \makebox[4.2em][s]{\njut@cap@cover@supervisor} 1023 | & \njutunderline[90pt]{\songti\njut@value@supervisor} 1024 | & \makebox[4.2em][s]{\njut@cap@cover@supervisortitle} 1025 | & \njutunderline[90pt]{\songti\njut@value@supervisortitle}\\ 1026 | \end{tabular} 1027 | % 第二导师 1028 | \ifnjut@title@twosupervisors 1029 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1030 | \makebox[4.2em][s]{\njut@cap@cover@secondsupervisor} 1031 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisor} 1032 | & \makebox[4.2em][s]{\njut@cap@cover@secondsupervisortitle} 1033 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisortitle}\\ 1034 | \end{tabular} 1035 | \fi 1036 | \begin{tabular}{p{4.2em}c} 1037 | \makebox[4.2em][s]{\njut@cap@cover@submitdate} 1038 | & \njutunderline[250pt]{\songti\njut@value@submitdate}\\ 1039 | \end{tabular} 1040 | } 1041 | % 三行标题 1042 | \newcommand*{\njut@covertable@threelinetitle}{ 1043 | \begin{tabular}{p{4.2em}c} 1044 | \makebox[4.2em][s]{\njut@cap@cover@department} 1045 | & \njutunderline[250pt]{\songti\njut@value@department}\\ 1046 | \makebox[4.2em][s]{\njut@cap@cover@major} 1047 | & \njutunderline[250pt]{\songti\njut@value@major}\\ 1048 | \makebox[4.2em][s]{\njut@cap@cover@title} 1049 | & \njutunderline[250pt]{\bf{\songti\njut@value@titlea}}\\ 1050 | \makebox[4.2em][s]{} 1051 | & \njutunderline[250pt]{\bf{\songti\njut@value@titleb}}\\ 1052 | \makebox[4.2em][s]{} 1053 | & \njutunderline[250pt]{\bf{\songti\njut@value@titlec}} 1054 | \end{tabular} 1055 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1056 | \makebox[4.2em][s]{\njut@cap@cover@grade} 1057 | & \njutunderline[90pt]{\songti\njut@value@grade} 1058 | & \makebox[4.2em][s]{\njut@cap@cover@studentid} 1059 | & \njutunderline[90pt]{\songti\njut@value@studentid}\\ 1060 | \end{tabular} 1061 | \begin{tabular}{p{4.2em}c} 1062 | \makebox[4.2em][s]{\njut@cap@cover@author} 1063 | & \njutunderline[250pt]{\songti\njut@value@author} 1064 | \end{tabular} 1065 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1066 | \makebox[4.2em][s]{\njut@cap@cover@supervisor} 1067 | & \njutunderline[90pt]{\songti\njut@value@supervisor} 1068 | & \makebox[4.2em][s]{\njut@cap@cover@supervisortitle} 1069 | & \njutunderline[90pt]{\songti\njut@value@supervisortitle}\\ 1070 | \end{tabular} 1071 | % 第二导师 1072 | \ifnjut@title@twosupervisors 1073 | \begin{tabular}{p{4.2em}cp{4.2em}c} 1074 | \makebox[4.2em][s]{\njut@cap@cover@secondsupervisor} 1075 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisor} 1076 | & \makebox[4.2em][s]{\njut@cap@cover@secondsupervisortitle} 1077 | & \njutunderline[90pt]{\songti\njut@value@secondsupervisortitle}\\ 1078 | \end{tabular} 1079 | \fi 1080 | \begin{tabular}{p{4.2em}c} 1081 | \makebox[4.2em][s]{\njut@cap@cover@submitdate} 1082 | & \njutunderline[250pt]{\songti\njut@value@submitdate}\\ 1083 | \end{tabular} 1084 | } 1085 | \renewcommand*{\maketitle}{% 1086 | \thispagestyle{empty} 1087 | \pagenumbering{Roman} 1088 | \pdfbookmark[0]{\njut@cap@cover}{cover} 1089 | % Start 1090 | \begin{spacing}{1.25} 1091 | \vskip 0mm 1092 | \hskip -10mm \includegraphics[width=2.55cm]{\njut@cap@institute@logo}\\ 1093 | \begin{center} 1094 | \includegraphics[height=3.35cm]{\njut@cap@institute@name}\\ 1095 | \vskip 10mm 1096 | {\zihao{1}\makebox[9em][s]{\bf{\songti \ifnjut@thesis \njut@cap@cover@thesis \else \njut@cap@cover@design \fi}}}\\ 1097 | % 三行标题 + 第二导师可能会导致溢出 1098 | % 数字可以再调 1099 | \ifnjut@title@threelinetitle 1100 | \ifnjut@title@twosupervisors 1101 | \vskip 18mm 1102 | \else 1103 | \vskip 22mm 1104 | \fi 1105 | \else 1106 | \vskip 28mm 1107 | \fi 1108 | \vskip\stretch{0} 1109 | {\bgroup 1110 | \kaishu\zihao{3} 1111 | \def\tabcolsep{1pt} 1112 | \def\arraystretch{1.5} 1113 | \ifnjut@title@twolinetitle 1114 | \njut@covertable@twolinetitle 1115 | \else 1116 | \ifnjut@title@threelinetitle 1117 | \njut@covertable@threelinetitle 1118 | \else 1119 | \njut@covertable@onelinetitle 1120 | \fi 1121 | \fi 1122 | \egroup}\\ 1123 | \vskip 8mm 1124 | \end{center} 1125 | \end{spacing} 1126 | \cleardoublepage 1127 | } 1128 | % FIXME: 英文封面存在很多问题,如果有可能,尽可能修复一下 1129 | \newcommand*{\makeenglishtitle}{% 1130 | \thispagestyle{empty} 1131 | \begin{center} 1132 | \vspace*{20pt} 1133 | \bf\sffamily\zihao{2}\njut@value@en@title 1134 | \vskip \stretch{1} 1135 | \normalfont\rmfamily\zihao{4}\njut@cap@cover@en@by 1136 | \vskip 3pt 1137 | \sffamily\zihao{4}\njut@value@en@author 1138 | \vskip\stretch{1} 1139 | \normalfont\rmfamily\zihao{4}\njut@cap@cover@en@supervisor 1140 | \vskip 3pt 1141 | \normalfont\sffamily\zihao{4}\njut@value@en@supervisor 1142 | \vskip\stretch{1} 1143 | \normalsize\rmfamily\njut@cap@cover@en@statement 1144 | \vskip\stretch{2} 1145 | \includegraphics[width=2.5cm]{\njut@cap@institute@logo} \\ 1146 | \vskip 3mm 1147 | \normalfont\njut@value@en@department\\ 1148 | \njut@value@en@institute 1149 | \vskip 30pt 1150 | \normalfont\normalsize\njut@value@en@date 1151 | \end{center} 1152 | \normalfont 1153 | \cleardoublepage 1154 | } 1155 | 1156 | % 2018版本残留,2021应该不需要 1157 | % 本科生过程管理四张表 1158 | \newcommand*{\controlpage}{% 1159 | \includepdfmerge{controlpage.pdf,1-4} 1160 | } 1161 | % \newcommand*{\abstracttitlea}[1]{% 1162 | % \renewcommand{\njut@value@abstract@titlea}{#1}% 1163 | % } 1164 | % \newcommand*{\abstracttitleb}[1]{% 1165 | % \renewcommand{\njut@value@abstract@titleb}{#1}% 1166 | % } 1167 | 1168 | % 摘要 1169 | \newenvironment{abstract}{% 1170 | \thispagestyle{plain} 1171 | \pagenumbering{Roman} 1172 | \pdfbookmark[0]{\njut@cap@abstract}{abstract} 1173 | \begin{center} 1174 | \kaishu\zihao{-2}{\textbf{\uuline{南京大学本科生毕业论文(设计、作品)中文摘要}}} 1175 | \end{center} 1176 | {\bgroup 1177 | \kaishu\zihao{-4} 1178 | \def\tabcolsep{0pt} 1179 | \def\arraystretch{0.8} 1180 | \noindent 1181 | 题目: \njut@value@title \\ 1182 | 院系: \njut@value@department \\ 1183 | 专业: \njut@value@major \\ 1184 | 本科生姓名: \njut@value@author \\ 1185 | 指导教师(姓名、职称): \njut@value@supervisor\ \njut@value@supervisortitle \ifnjut@title@twosupervisors ,\njut@value@secondsupervisor\ \njut@value@secondsupervisortitle \fi \\ 1186 | 摘要: 1187 | \egroup 1188 | } 1189 | \kaishu\zihao{-4}\par% 1190 | }{% 1191 | \newpage 1192 | } 1193 | \newcommand{\keywords}[1]{% 1194 | \renewcommand*{\njut@value@abstract@keywords}{#1}% 1195 | \par\vspace{2ex}\noindent% 1196 | {\kaishu\zihao{-4}\makebox[3.5em][s]{\njut@cap@abstract@keywordsname{:}} }~{#1}% 1197 | } 1198 | % \newcommand*{\englishabstracttitlea}[1]{% 1199 | % \renewcommand{\njut@value@abstract@en@titlea}{#1}% 1200 | % } 1201 | % \newcommand*{\englishabstracttitleb}[1]{% 1202 | % \renewcommand{\njut@value@abstract@en@titleb}{#1}% 1203 | % } 1204 | % 英文摘要 1205 | \newenvironment{englishabstract}{% 1206 | \thispagestyle{plain} 1207 | \pdfbookmark[0]{\njut@cap@abstract@en}{englishabstract} 1208 | \begin{center} 1209 | \kaishu\zihao{-2}{\textbf{\uuline{南京大学本科生毕业论文(设计、作品)英文摘要}}} 1210 | \end{center} 1211 | { 1212 | \bgroup 1213 | THESIS: \njut@value@en@title \\ 1214 | DEPARTMENT: \njut@value@en@department \\ 1215 | SPECIALIZATION: \njut@value@en@institute \\ 1216 | UNDERGRADUATE: \njut@value@en@author \\ 1217 | MENTOR: \njut@value@en@supervisor \ifnjut@title@twosupervisors , \njut@value@en@secondsupervisor \fi \\ 1218 | ABSTRACT: 1219 | \egroup 1220 | } 1221 | \zihao{-4}\par% 1222 | }{% 1223 | \cleardoublepage 1224 | } 1225 | \newcommand{\englishkeywords}[1]{% 1226 | \renewcommand*{\njut@value@abstract@en@keywords}{#1}% 1227 | \par\vspace{2ex}\noindent% 1228 | {\njut@cap@abstract@en@keywordsname{:}}~~{#1}% 1229 | } 1230 | \newenvironment{preface}{% 1231 | \nchapter{\njut@cap@preface} 1232 | }{} 1233 | \newenvironment{acknowledgement}{% 1234 | \nchapter{\njut@cap@acknowledgementname} 1235 | }{} 1236 | 1237 | 1238 | \newenvironment{resume}{% 1239 | \nchapter{\njut@cap@resume@chaptername} 1240 | }{} 1241 | \newenvironment{authorinfo}{% 1242 | \paragraph*{\njut@cap@resume@authorinfo} 1243 | }{} 1244 | \newenvironment{education}{% 1245 | \paragraph*{\njut@cap@resume@education} 1246 | \begin{description}[labelindent=0em, leftmargin=8em, style=sameline] 1247 | }{% 1248 | \end{description} 1249 | } 1250 | \newenvironment{publications}{% 1251 | \paragraph*{\njut@cap@resume@publications} 1252 | \begin{enumerate}[label=\arabic*., labelindent=0em, leftmargin=*] 1253 | }{% 1254 | \end{enumerate} 1255 | } 1256 | \newenvironment{projects}{% 1257 | \paragraph*{\njut@cap@resume@projects} 1258 | \begin{enumerate}[label=\arabic*., labelindent=0em, leftmargin=*] 1259 | }{% 1260 | \end{enumerate} 1261 | } 1262 | \newcommand*{\njut@cap@datefield}{% 1263 | \njutunderline[1cm]{}{\njut@cap@year}% 1264 | \njutunderline[1cm]{}{\njut@cap@month}% 1265 | \njutunderline[1cm]{}{\njut@cap@day} 1266 | } 1267 | \newcommand*{\njut@license@makedeclaration}{% 1268 | \par\njut@cap@license@declaration 1269 | \vspace{5mm} 1270 | \begin{flushright} 1271 | \njut@cap@license@sign\njutunderline[6cm]{}\\ 1272 | \njut@cap@datefield\\ 1273 | \end{flushright}% 1274 | } 1275 | \newcommand*{\njut@license@maketable}{% 1276 | \noindent\zihao{5}% 1277 | \begin{tabular*}{\textwidth} 1278 | {|C{2.2cm}|C{2cm}|C{1.5cm}|C{2.1cm}|C{1.42cm}C{1.5cm}|C{1.25cm}|} 1279 | \hline 1280 | \cell{2.2cm}{1cm}{\njut@cap@license@title} 1281 | & \multicolumn{6}{c|}{\njut@value@title} \\ 1282 | \hline 1283 | \cell{2.2cm}{1cm}{\njut@cap@license@studentnum} 1284 | & {\njut@value@studentnum} 1285 | & {\njut@cap@license@department} 1286 | & \multicolumn{2}{c|}{% 1287 | \cell{3.52cm}{1cm}{\njut@value@department}% 1288 | } 1289 | & {\njut@cap@license@grade} 1290 | & {\njut@value@grade} \\ 1291 | \hline 1292 | \cell{2.2cm}{1.5cm}{\njut@cap@license@category} 1293 | & \multicolumn{3}{c}{ 1294 | \begin{tabular*}{5.6cm}{p{2.8cm}p{2.8cm}} 1295 | \ifnjut@master% 1296 | {{\zihao{-4}$\CheckedBox$}}% 1297 | \else% 1298 | {{\zihao{4}$\Square$}}% 1299 | \fi% 1300 | \njut@cap@license@categorymaster 1301 | & {\zihao{4}$\Square$}% 1302 | \njut@cap@license@categorymasterspec \\ 1303 | \ifnjut@phd% 1304 | {{\zihao{-4}$\CheckedBox$}}% 1305 | \else% 1306 | {{\zihao{4}$\Square$}}% 1307 | \fi% 1308 | \njut@cap@license@categoryphd 1309 | & {\zihao{4}$\Square$}% 1310 | \njut@cap@license@categoryphdspec \\ 1311 | \end{tabular*}} 1312 | & \multicolumn{3}{c|}{% 1313 | \raisebox{-1em}{\njut@cap@license@categoryhint}}\\ 1314 | \hline 1315 | \cell{2.2cm}{1cm}{\njut@cap@license@telphone} 1316 | & \multicolumn{2}{c|}{{\njut@value@telphone}} 1317 | & {\njut@cap@license@email} 1318 | & \multicolumn{3}{c|}{{\njut@value@email}} \\ 1319 | \hline 1320 | \cell{2.2cm}{1cm}{\njut@cap@license@supervisorname} 1321 | & \multicolumn{2}{c|}{{\njut@value@supervisor}} 1322 | & {\njut@cap@license@supervisortelphone} 1323 | & \multicolumn{3}{c|}{{\njut@value@supervisortelphone}} \\ 1324 | \hline 1325 | \end{tabular*} 1326 | } 1327 | 1328 | \newcommand{\njuthesis}{\texttt{NJU-Thesis}} 1329 | \newcommand{\zhdash}{\kern0.3ex\rule[0.8ex]{2em}{0.1ex}\kern0.3ex} 1330 | \newcommand{\cell}[3]{\parbox[c][#2][c]{#1}{\makebox[#1]{#3}}} 1331 | \newcolumntype{C}[1]{>{\centering\let\newline\\% 1332 | \arraybackslash\hspace{0pt}}p{#1}} 1333 | \newlist{arabicenum}{enumerate}{3} 1334 | \setlist[arabicenum,1]{label=\textnormal% 1335 | {\textnormal{(\arabic*)}}} 1336 | \setlist[arabicenum,2]{label=\textnormal% 1337 | {\textnormal{(\arabic{arabicenumi}.\arabic*)}}} 1338 | \setlist[arabicenum,3]{label=\textnormal% 1339 | {\textnormal{(\arabic{arabicenumi}.\arabic{arabicenumii}.\arabic*)}}} 1340 | \newlist{romanenum}{enumerate}{2} 1341 | \setlist[romanenum,1]{label={\textnormal{\roman*.}}} 1342 | \setlist[romanenum,2]{label={\textnormal{\alph*\,)}}} 1343 | \newlist{alphaenum}{enumerate}{2} 1344 | \setlist[alphaenum,1]{label={\textnormal{\alph*\,)}}} 1345 | \setlist[alphaenum,2]{label={\textnormal{\alph{alphaenumi}.\arabic*\,)}}} 1346 | \newlist{caseenum}{enumerate}{2} 1347 | \setlist[caseenum,1]{label={\textnormal{\njut@cap@case\arabic*.}}} 1348 | \setlist[caseenum,2]{label={\textnormal{\njut@cap@subcase\arabic{caseenumi}.\arabic*.}}} 1349 | \setlist[caseenum]{leftmargin=*} 1350 | \newlist{stepenum}{enumerate}{2} 1351 | \setlist[stepenum,1]{label={\textnormal{\njut@cap@step\arabic*.}}} 1352 | \setlist[stepenum,2]{label={\textnormal{\njut@cap@substep\arabic{stepenumi}.\arabic*.}}} 1353 | \setlist[stepenum]{leftmargin=*} 1354 | \newcommand*{\njut@setpdfinfo}{\hypersetup{% 1355 | pdftitle={\njut@value@title}, 1356 | pdfauthor={\njut@value@author}, 1357 | pdfsubject={\njut@cap@cover@apply}, 1358 | pdfkeywords={\njut@value@abstract@keywords}, 1359 | pdfcreator={\njut@value@author}, 1360 | pdfproducer={XeLaTeX with the NJU-Thesis document class}} 1361 | } 1362 | \AtBeginDocument{\njut@setpdfinfo} 1363 | \endinput 1364 | %% 1365 | %% End of file `njuthesis.cls'. 1366 | -------------------------------------------------------------------------------- /sample.bib: -------------------------------------------------------------------------------- 1 | %!TEX TS-program = bibtex 2 | %!TEX encoding = UTF-8 Unicode 3 | 4 | @article{fujisawa2008forty, 5 | title={Forty years of research in character and document recognition: an industrial perspective}, 6 | author={Fujisawa, Hiromichi}, 7 | journal={Pattern Recognition}, 8 | volume={41}, 9 | number={8}, 10 | pages={2435--2446}, 11 | year={2008}, 12 | publisher={Elsevier} 13 | } 14 | 15 | @inproceedings{xu2012touching, 16 | title={A touching character database from Chinese handwriting for assessing segmentation algorithms}, 17 | author={Xu, Liang and Yin, Fei and Wang, Qiu-Feng and Liu, Cheng-Lin}, 18 | booktitle={Frontiers in Handwriting Recognition (ICFHR), 2012 International Conference on}, 19 | pages={89--94}, 20 | year={2012}, 21 | organization={IEEE} 22 | } 23 | 24 | @article{wang2012handwritten, 25 | title={Handwritten Chinese text recognition by integrating multiple contexts}, 26 | author={Wang, Qiu-Feng and Yin, Fei and Liu, Cheng-Lin}, 27 | journal={IEEE transactions on pattern analysis and machine intelligence}, 28 | volume={34}, 29 | number={8}, 30 | pages={1469--1481}, 31 | year={2012}, 32 | publisher={IEEE} 33 | } 34 | 35 | @article{katz1987estimation, 36 | title={Estimation of probabilities from sparse data for the language model component of a speech recognizer}, 37 | author={Katz, Slava}, 38 | journal={IEEE transactions on acoustics, speech, and signal processing}, 39 | volume={35}, 40 | number={3}, 41 | pages={400--401}, 42 | year={1987}, 43 | publisher={IEEE} 44 | } 45 | 46 | @article{bengio2003neural, 47 | title={A neural probabilistic language model}, 48 | author={Bengio, Yoshua and Ducharme, R{\'e}jean and Vincent, Pascal and Jauvin, Christian}, 49 | journal={Journal of machine learning research}, 50 | volume={3}, 51 | number={Feb}, 52 | pages={1137--1155}, 53 | year={2003} 54 | } 55 | 56 | @inproceedings{wu2015evaluation, 57 | title={Evaluation of neural network language models in handwritten Chinese text recognition}, 58 | author={Wu, Yi-Chao and Yin, Fei and Liu, Cheng-Lin}, 59 | booktitle={Document Analysis and Recognition (ICDAR), 2015 13th International Conference on}, 60 | pages={166--170}, 61 | year={2015}, 62 | organization={IEEE} 63 | } 64 | 65 | @inproceedings{morioka2015multiscale, 66 | title={Multiscale recurrent neural network based language model}, 67 | author={Morioka, Tsuyoshi and Iwata, Tomoharu and Hori, Takaaki and Kobayashi, Tetsunori}, 68 | booktitle={Sixteenth Annual Conference of the International Speech Communication Association}, 69 | year={2015} 70 | } 71 | 72 | @article{zhang2017online, 73 | title={Online and offline handwritten chinese character recognition: A comprehensive study and new benchmark}, 74 | author={Zhang, Xu-Yao and Bengio, Yoshua and Liu, Cheng-Lin}, 75 | journal={Pattern Recognition}, 76 | volume={61}, 77 | pages={348--360}, 78 | year={2017}, 79 | publisher={Elsevier} 80 | } 81 | 82 | @article{lee2012binary, 83 | title={Binary segmentation algorithm for English cursive handwriting recognition}, 84 | author={Lee, Hong and Verma, Brijesh}, 85 | journal={Pattern Recognition}, 86 | volume={45}, 87 | number={4}, 88 | pages={1306--1317}, 89 | year={2012}, 90 | publisher={Elsevier} 91 | } 92 | 93 | @inproceedings{bissacco2013photoocr, 94 | title={Photoocr: Reading text in uncontrolled conditions}, 95 | author={Bissacco, Alessandro and Cummins, Mark and Netzer, Yuval and Neven, Hartmut}, 96 | booktitle={Computer Vision (ICCV), 2013 IEEE International Conference on}, 97 | pages={785--792}, 98 | year={2013}, 99 | organization={IEEE} 100 | } 101 | 102 | @article{xu2014over, 103 | title={An over-segmentation method for single-touching Chinese handwriting with learning-based filtering}, 104 | author={Xu, Liang and Yin, Fei and Wang, Qiu-Feng and Liu, Cheng-Lin}, 105 | journal={International Journal on Document Analysis and Recognition (IJDAR)}, 106 | volume={17}, 107 | number={1}, 108 | pages={91--104}, 109 | year={2014}, 110 | publisher={Springer} 111 | } 112 | 113 | 114 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 115 | 116 | @inproceedings{girshick2014rich, 117 | title={Rich feature hierarchies for accurate object detection and semantic segmentation}, 118 | author={Girshick, Ross and Donahue, Jeff and Darrell, Trevor and Malik, Jitendra}, 119 | booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition}, 120 | pages={580--587}, 121 | year={2014} 122 | } 123 | 124 | @inproceedings{su2014accurate, 125 | title={Accurate scene text recognition based on recurrent neural network}, 126 | author={Su, Bolan and Lu, Shijian}, 127 | booktitle={Asian Conference on Computer Vision}, 128 | pages={35--48}, 129 | year={2014}, 130 | organization={Springer} 131 | } 132 | 133 | @article{almazan2014word, 134 | title={Word spotting and recognition with embedded attributes}, 135 | author={Almaz{\'a}n, Jon and Gordo, Albert and Forn{\'e}s, Alicia and Valveny, Ernest}, 136 | journal={IEEE transactions on pattern analysis and machine intelligence}, 137 | volume={36}, 138 | number={12}, 139 | pages={2552--2566}, 140 | year={2014}, 141 | publisher={IEEE} 142 | } 143 | 144 | @article{rodriguez2015label, 145 | title={Label embedding: A frugal baseline for text recognition}, 146 | author={Rodriguez-Serrano, Jose A and Gordo, Albert and Perronnin, Florent}, 147 | journal={International Journal of Computer Vision}, 148 | volume={113}, 149 | number={3}, 150 | pages={193--207}, 151 | year={2015}, 152 | publisher={Springer} 153 | } 154 | 155 | @inproceedings{yao2014strokelets, 156 | title={Strokelets: A learned multi-scale representation for scene text recognition}, 157 | author={Yao, Cong and Bai, Xiang and Shi, Baoguang and Liu, Wenyu}, 158 | booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition}, 159 | pages={4042--4049}, 160 | year={2014} 161 | } 162 | 163 | @inproceedings{gordo2015supervised, 164 | title={Supervised mid-level features for word image representation}, 165 | author={Gordo, Albert}, 166 | booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition}, 167 | pages={2956--2964}, 168 | year={2015} 169 | } 170 | 171 | @inproceedings{du2016deep, 172 | title={Deep neural network based hidden markov model for offline handwritten Chinese text recognition}, 173 | author={Du, Jun and Wang, Zi-Rui and Zhai, Jian-Fang and Hu, Jin-Shui}, 174 | booktitle={Pattern Recognition (ICPR), 2016 23rd International Conference on}, 175 | pages={3428--3433}, 176 | year={2016}, 177 | organization={IEEE} 178 | } 179 | 180 | @inproceedings{messina2015segmentation, 181 | title={Segmentation-free handwritten Chinese text recognition with LSTM-RNN}, 182 | author={Messina, Ronaldo and Louradour, Jerome}, 183 | booktitle={Document Analysis and Recognition (ICDAR), 2015 13th International Conference on}, 184 | pages={171--175}, 185 | year={2015}, 186 | organization={IEEE} 187 | } 188 | 189 | @article{graves2009novel, 190 | title={A novel connectionist system for unconstrained handwriting recognition}, 191 | author={Graves, Alex and Liwicki, Marcus and Fern{\'a}ndez, Santiago and Bertolami, Roman and Bunke, Horst and Schmidhuber, J{\"u}rgen}, 192 | journal={IEEE transactions on pattern analysis and machine intelligence}, 193 | volume={31}, 194 | number={5}, 195 | pages={855--868}, 196 | year={2009}, 197 | publisher={IEEE} 198 | } 199 | 200 | @inproceedings{liu2011casia, 201 | title={CASIA online and offline Chinese handwriting databases}, 202 | author={Liu, Cheng-Lin and Yin, Fei and Wang, Da-Han and Wang, Qiu-Feng}, 203 | booktitle={Document Analysis and Recognition (ICDAR), 2011 International Conference on}, 204 | pages={37--41}, 205 | year={2011}, 206 | organization={IEEE} 207 | } 208 | 209 | %%%%%%%%%%%%%%%%%%%%%%% 210 | @article{kingma2014adam, 211 | title={Adam: A method for stochastic optimization}, 212 | author={Kingma, Diederik P and Ba, Jimmy}, 213 | journal={arXiv preprint arXiv:1412.6980}, 214 | year={2014} 215 | } 216 | 217 | @inproceedings{graves2006connectionist, 218 | title={Connectionist temporal classification: labelling unsegmented sequence data with recurrent neural networks}, 219 | author={Graves, Alex and Fern{\'a}ndez, Santiago and Gomez, Faustino and Schmidhuber, J{\"u}rgen}, 220 | booktitle={Proceedings of the 23rd international conference on Machine learning}, 221 | pages={369--376}, 222 | year={2006}, 223 | organization={ACM} 224 | } 225 | 226 | @article{jaderberg2016reading, 227 | title={Reading text in the wild with convolutional neural networks}, 228 | author={Jaderberg, Max and Simonyan, Karen and Vedaldi, Andrea and Zisserman, Andrew}, 229 | journal={International Journal of Computer Vision}, 230 | volume={116}, 231 | number={1}, 232 | pages={1--20}, 233 | year={2016}, 234 | publisher={Springer} 235 | } 236 | 237 | @inproceedings{he2016reading, 238 | title={Reading Scene Text in Deep Convolutional Sequences.}, 239 | author={He, Pan and Huang, Weilin and Qiao, Yu and Loy, Chen Change and Tang, Xiaoou}, 240 | booktitle={AAAI}, 241 | volume={16}, 242 | pages={3501--3508}, 243 | year={2016} 244 | } 245 | 246 | @book{newman2006structure, 247 | title={The structure and dynamics of networks}, 248 | author={Newman, Mark and Barab{\'a}si, Albert-L{\'a}szl{\'o} and Watts, Duncan J}, 249 | year={2006}, 250 | publisher={Princeton University Press}, 251 | address={Princeton}, 252 | } 253 | 254 | @article{newman2001random, 255 | title={Random graphs with arbitrary degree distributions and their applications}, 256 | author={Newman, Mark EJ and Strogatz, Steven H and Watts, Duncan J}, 257 | journal={Physical Review E}, 258 | volume={64}, 259 | number={2}, 260 | pages={026118}, 261 | year={2001}, 262 | publisher={APS}, 263 | } 264 | 265 | @inproceedings{aiello2000random, 266 | title={A random graph model for massive graphs}, 267 | author={Aiello, William and Chung, Fan and Lu, Linyuan}, 268 | booktitle={Proceedings of the thirty-second annual ACM symposium on Theory of computing}, 269 | pages={171--180}, 270 | year={2000}, 271 | publisher = {ACM}, 272 | address = {New York}, 273 | } 274 | 275 | @book{bollobas2001random, 276 | title={Random graphs}, 277 | author={Bollob{\'a}s, B{\'e}la}, 278 | volume={73}, 279 | year={2001}, 280 | publisher={Cambridge university press} 281 | } 282 | 283 | @article{barabasi1999emergence, 284 | title={Emergence of scaling in random networks}, 285 | author={Barab{\'a}si, Albert-L{\'a}szl{\'o} and Albert, R{\'e}ka}, 286 | journal={science}, 287 | volume={286}, 288 | number={5439}, 289 | pages={509--512}, 290 | year={1999}, 291 | publisher={American Association for the Advancement of Science} 292 | } 293 | 294 | @article{erdHos1961strength, 295 | title={On the strength of connectedness of a random graph}, 296 | author={Erd{\H{o}}s, Paul and Renyi, Alfred}, 297 | journal={Acta Mathematica Hungarica}, 298 | volume={12}, 299 | number={1}, 300 | pages={261--267}, 301 | year={1961}, 302 | publisher={Akad{\'e}miai Kiad{\'o}, co-published with Springer Science+ Business Media BV, Formerly Kluwer Academic Publishers BV} 303 | } 304 | 305 | @article{shi2017end, 306 | title={An end-to-end trainable neural network for image-based sequence recognition and its application to scene text recognition}, 307 | author={Shi, Baoguang and Bai, Xiang and Yao, Cong}, 308 | journal={IEEE transactions on pattern analysis and machine intelligence}, 309 | volume={39}, 310 | number={11}, 311 | pages={2298--2304}, 312 | year={2017}, 313 | publisher={IEEE} 314 | } 315 | %%%%%%%%%%%%%%%%%%%%%%% 316 | @inproceedings{wang2012end, 317 | title={End-to-end text recognition with convolutional neural networks}, 318 | author={Wang, Tao and Wu, David J and Coates, Adam and Ng, Andrew Y}, 319 | booktitle={Pattern Recognition (ICPR), 2012 21st International Conference on}, 320 | pages={3304--3308}, 321 | year={2012}, 322 | organization={IEEE} 323 | } 324 | 325 | @inproceedings{mishra2012scene, 326 | title={Scene text recognition using higher order language priors}, 327 | author={Mishra, Anand and Alahari, Karteek and Jawahar, CV}, 328 | booktitle={BMVC 2012-23rd British Machine Vision Conference}, 329 | year={2012}, 330 | organization={BMVA} 331 | } 332 | 333 | @webpage{baiduapi, 334 | title = {{BAIDU Text Recognition}}, 335 | author = {{BAIDU}}, 336 | publisher = {BAIDU}, 337 | year = {2018}, 338 | url = {https://cloud.baidu.com/product/ocr.html}, 339 | modifydate = {2018/05/10}, 340 | citedate = {2018/05/10} 341 | } 342 | 343 | %%%%%%%%%%%%%%%%%%%%%%% 344 | 345 | @webpage{wikipedia_moores_law, 346 | title = {{Moore's law}}, 347 | author = {{Wikipedia contributors}}, 348 | publisher = {Wikipedia, The Free Encyclopedia}, 349 | year = {2015}, 350 | url = {https://en.wikipedia.org/wiki/Moore%27s_law}, 351 | modifydate = {2015/06/14}, 352 | citedate = {2015/06/15} 353 | } 354 | 355 | @webpage{dubash2010, 356 | title = {{Moore's Law is dead, says Gordon Moore}}, 357 | author = {Manek Dubash}, 358 | publisher = {Techworld}, 359 | year = {2010}, 360 | month = {4}, 361 | url = {http://www.techworld.com/news/operating-systems/moores-law-is-dead-says-gordon-moore-3576581/}, 362 | modifydate={2010/4/13}, 363 | citedate={2015/6/16} 364 | } 365 | 366 | @webpage{kanellos2003, 367 | author = {Michael Kanellos}, 368 | title = {{Intel scientists find wall for Moore's Law}}, 369 | publisher = {CNET}, 370 | year = {2003}, 371 | month = {12}, 372 | url = {http://news.cnet.com/2100-1008-5112061.html}, 373 | modifydate={2003/12/1}, 374 | citedate={2015/6/16} 375 | } 376 | 377 | @webpage{intel2014, 378 | title = {{Intel discloses newest microarchitecture and 14 nanometer manufacturing process technical details}}, 379 | author = {{Intel Corporation}}, 380 | publisher = {{Intel Corporation}}, 381 | year = {2014}, 382 | month = {8}, 383 | url = {http://newsroom.intel.com/community/intel_newsroom/blog/2014/08/11/intel-discloses-newest-microarchitecture-and-14-nanometer-manufacturing-process-technical-details}, 384 | modifydate={2014/8/11}, 385 | citedate={2015/6/16} 386 | } 387 | 388 | @webpage{moammer2015, 389 | title = {{TSMC Launching 10nm FinFET Process In 2016, 7nm In 2017}}, 390 | author = {Khalid Moammer}, 391 | publisher = {WCCF Tech}, 392 | year = {2015}, 393 | month = {4}, 394 | url = {http://wccftech.com/tsmc-promises-10nm-production-2016-7nm-2017/}, 395 | modifydate={2015/4/19}, 396 | citedate={2015/6/16} 397 | } 398 | 399 | @webpage{shrout2014, 400 | title = {{Intel Xeon E5-2600 v3 processor overview: Haswell-EP up to 18 cores}}, 401 | author = {Ryan Shrout}, 402 | year = {2014}, 403 | month = {9}, 404 | url = {http://www.pcper.com/reviews/Processors/Intel-Xeon-E5-2600-v3-Processor-Overview-Haswell-EP-18-Cores}, 405 | modifydate = {2014/9/8}, 406 | citedate = {2015/6/16} 407 | } 408 | 409 | @webpage{intel2012, 410 | title = {{Intel chips timeline}}, 411 | author = {{Intel Corporation}}, 412 | publisher = {{Intel Corporation}}, 413 | year = {2012}, 414 | month = {7}, 415 | url = {http://www.intel.co.uk/content/www/uk/en/history/history-intel-chips-timeline-poster.html}, 416 | modifydate={2012/7/13}, 417 | citedate={2015/6/16} 418 | } 419 | 420 | @webpage{wikipedia_transistor_count, 421 | title = {{Transistor count}}, 422 | author = {{Wikipedia contributors}}, 423 | publisher = {Wikipedia, The Free Encyclopedia}, 424 | year = {2015}, 425 | url = {https://en.wikipedia.org/wiki/Transistor_count}, 426 | modifydate = {2015/6/10}, 427 | citedate={2015/6/16} 428 | } 429 | -------------------------------------------------------------------------------- /sample.tex: -------------------------------------------------------------------------------- 1 | %!TEX TS-program = xelatex 2 | %!TEX encoding = UTF-8 Unicode 3 | 4 | %% 5 | %% 使用 njuthesis 文档类生成南京大学本科生毕业论文的示例文档 6 | %% 7 | %% 8 | 9 | %% 10 | %% 南京大学本科学位论文模板 11 | 12 | %% thesis表示毕业论文,design表示毕业设计 13 | %% 如需Adobe字体请用 14 | %% 如果字体不全使用Adobe选项可能会报错 15 | %\documentclass[adobefonts, thesis]{njuthesis} 16 | %% MacOS系统请用 17 | %\documentclass[macfonts, thesis]{njuthesis} 18 | %% Windows系统请用 19 | \documentclass[winfonts, thesis]{njuthesis} 20 | %% Linux系统请用 21 | % \documentclass[linuxfonts, thesis]{njuthesis} 22 | 23 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 24 | % 设置论文的中文封面 25 | 26 | % 论文标题 27 | \title{强袭自由高达的高机动性驾驶} 28 | 29 | % 长标题 30 | % \titlea{一二三四五六七八九十一二三四} 31 | % \titleb{一二三四五六七八九十一二三} 32 | % \titlec{一二三四五六七八九十一二三} 33 | 34 | 35 | % 论文作者姓名 36 | \author{基拉·大和} 37 | % 论文作者学号 38 | \studentid{17180000} 39 | % 导师姓名职称 40 | \supervisor{阿斯兰} 41 | % 导师职称 42 | \supervisortitle{军官} 43 | 44 | % % (可能存在的)第二导师姓名 45 | % \secondsupervisor{第二导师} 46 | % % 导师职称 47 | % \secondsupervisortitle{导师} 48 | 49 | % 论文作者院系 50 | \department{高达驾驶与制造学院} 51 | % 论文作者专业方向 52 | \major{高达驾驶} 53 | % 论文作者的年级 54 | \grade{2017级} 55 | % 论文提交日期,需设置年、月、日。此属性可选,默认值为最后一次编译时的日期,精确到日。 56 | \submitdate{2021年5月20日} 57 | 58 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 59 | % 设置论文的英文封面 60 | 61 | % 论文的英文标题 62 | \englishtitle{Thesis paper template} 63 | % 论文作者姓名的拼音 64 | \englishauthor{San Zhang} 65 | % 导师姓名职称的英文 66 | \englishsupervisor{Professor FengChendian} 67 | % \englishsecondsupervisor{Professor HermitSun} 68 | % 论文作者所在院系的英文名称 69 | \englishdepartment{School of Electronic Science and Engineering} 70 | % 论文作者所在学校或机构的英文名称。此属性可选,默认值为``Nanjing University''。 71 | \englishinstitute{Nanjing University} 72 | % 论文完成日期的英文形式,默认最后一次编译的时间 73 | \englishdate{May 20, 2018} 74 | % 专业 75 | \englishinstitute{Electronic Information Science and Technology} 76 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 77 | % 设置论文的页眉页脚 78 | \usepackage{fancyhdr} 79 | \pagestyle{fancy} 80 | %\lhead{\bfseries 141180092 } 81 | \chead{毕业论文模板} 82 | \rhead{张三} 83 | %\lfoot{From: K. Grant} 84 | %\cfoot{To: Dean A. Smith} 85 | %\rfoot{\thepage} 86 | \renewcommand{\headrulewidth}{0.4pt} 87 | %\renewcommand{\footrulewidth}{0.4pt} 88 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 89 | \begin{document} 90 | 91 | % 制作中文封面 92 | \maketitle 93 | % 制作英文封面 94 | % \makeenglishtitle 95 | % 毕业论文过程管理四页表 96 | % \controlpage %可以将word文件交给老师签字后扫描转成pdf,然后命名为controlpage.pdf 97 | 98 | % 论文的中文摘要 99 | \begin{abstract} 100 | 模板。 101 | 102 | 手写中文文本的多样性、差异性让它的识别成为一个富有前景但又充满挑战的计算机视觉问题。 103 | 104 | % 同时应该注意到,空白页是故意留白,以便章节开头能够出现在奇数页(另页右页开始)。 105 | % 中文关键词。关键词之间用中文全角分号隔开,末尾无标点符号。 106 | \keywords{手写中文;文本识别;深度学习} 107 | \end{abstract} 108 | 109 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 110 | % 论文的英文摘要 111 | \begin{englishabstract} 112 | The diversity of handwritten Chinese text make it a promising but challenging computer vision problem. 113 | % 英文关键词。关键词之间用英文半角逗号隔开,末尾无符号。 114 | \englishkeywords{Handwritten Chinese, Text recognition, Deep learning} 115 | \end{englishabstract} 116 | 117 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 118 | % 论文的前言,应放在目录之前,中英文摘要之后 119 | % 120 | %\begin{preface} 121 | % 122 | %在过去的40年中,手写中文文本领域识别(HCTR)取得了很大的进展[1,2]。 123 | % 124 | %\vspace{1cm} 125 | %\begin{flushright} 126 | %饶安逸\\ 127 | %2018年5月15日于南大仙林 128 | %\end{flushright} 129 | % 130 | %\end{preface} 131 | 132 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 133 | % 生成论文目录 134 | \tableofcontents 135 | 136 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 137 | % 生成插图清单。如无需插图清单则可注释掉下述语句。 138 | %\listoffigures 139 | 140 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 141 | % 生成附表清单。如无需附表清单则可注释掉下述语句。 142 | %\listoftables 143 | 144 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 145 | % 开始正文部分 146 | \mainmatter 147 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 148 | % 学位论文的正文应以《绪论》作为第一章 149 | \chapter{绪论}\label{chapter_introduction} 150 | \section{研究背景} 151 | 在过去的40年中,手写中文文本识别(HCTR)的研究获得了很大的进展,效果得到了很大的提升\cite{fujisawa2008forty}。但是,由于手写中文文本的多样性,它依然是一个具有研究意义和挑战性的问题\cite{xu2012touching}。不同的文本有不同的书写风格,如图\ref{fig:style}。 152 | 153 | \begin{figure}[htbp] 154 | \centering 155 | \includegraphics[width=0.9\textwidth]{style.png} % requires the graphicx package 156 | \caption{不同的书写风格。对于同一句话,有不同的书写风格:倾斜,写错字,工整,潦草等。} 157 | \label{fig:style} 158 | \end{figure} 159 | 160 | \section{相关工作} 161 | 162 | 作为深度神经网络中处理序列的一个重要模型,循环神经网络,如图,在训练和测试过程中不需要知道视觉序列对象中每个元素的位置。但是,对于循环神经网络,非常重要的一点是将输入图片通过图片预处理转化为一串图片特征\cite{graves2009novel,su2014accurate}。但是通常的基于循环卷积神经网络的网络,因为预处理不在系统训练流程之内,所以无法用从头到尾的方式进行训练,不是很方便。 163 | 164 | 165 | \section{本文主要工作} 166 | 本文旨在对图片级手写中文文本做出识别分类。主要工作如下: 167 | \begin{enumerate} 168 | \item 在标准公开数据集里获得了一定的识别准确度。 169 | 170 | \item 在标准公开数据集上击败了一些相关工作的结果。 171 | 172 | \item 建立分本分行规划表格,很好地处理了文本的分行,降低了训练开销。 173 | 174 | \end{enumerate} 175 | \section{本文结构} 176 | 本文的各章节组织结构如下: 177 | 178 | 第一章:绪论。简要说明了手写中文文本识别的研究来由及相关工作。并概括地描述了这篇文章的工作,总结了本文结构。 179 | 180 | 第二章:识别系统 181 | 182 | 第三章:实验。介绍了实验进行的配置环境,文中使用的测度,文本分行的结果,识别的结果并分析了得到这种结果背后的缘由。 183 | 184 | 第四章:总结与讨论。总结全文工作,讨论存在的问题和今后可以继续研究的方向。 185 | 186 | \chapter{系统}\label{chapter_system} 187 | 188 | 怎么使用这个模板 189 | 190 | \section{图片} 191 | 192 | 一行一图,如图\ref{fig:line} 193 | \begin{figure}[htbp] 194 | \centering 195 | \includegraphics[width=0.7\textwidth]{line.png} % requires the graphicx package 196 | \caption{待分行文本} 197 | \label{fig:line} 198 | %\vspace{0.8cm} % 用来调整和下方文字的间距 199 | \end{figure} 200 | 201 | 202 | 一行两个图 203 | \begin{figure}[ht!] 204 | \centering 205 | \begin{subfigure}{.5\textwidth} 206 | \centering 207 | \includegraphics[width=0.9\textwidth]{lstm1.png} 208 | \caption{长短时记忆单元模块} 209 | \end{subfigure} 210 | \begin{subfigure}{.4\textwidth} 211 | \centering 212 | \includegraphics[width=0.8\textwidth]{lstm2.png} 213 | \caption{深双向长短时记忆} 214 | \label{fig:lstm2} 215 | \end{subfigure} 216 | \caption{(a)一个长短时记忆单元模块。(b)深度双向长短时记忆的结构。} 217 | \label{fig:lstm} 218 | \end{figure} 219 | 220 | 多行多图 221 | \begin{figure}[ht!] 222 | \centering 223 | \begin{subfigure}{\textwidth} 224 | \centering 225 | \includegraphics[width=0.59\textwidth]{line1.png} 226 | \caption{全局损失切割} 227 | \label{fig:line1} 228 | \end{subfigure} 229 | \begin{subfigure}{\textwidth} 230 | \centering 231 | \includegraphics[width=0.59\textwidth]{line2.png} 232 | \caption{局部损失切割} 233 | \label{fig:line2} 234 | \end{subfigure} 235 | \caption{分行结果比较。(a)全局损失切割;(b)局部损失切割;(c)局部水平投影切割;(d)投影损失切割} 236 | \end{figure} 237 | 238 | \newpage %为了将图片实例放在一起,另起一页,使用时请删掉 239 | 240 | 241 | \section{公式} 242 | 243 | \begin{equation} 244 | \frac{\partial L}{\partial a_{k}^t} = {d(s)}^2 (y_{k}^t - \frac{\sum_{lab(\mathbf{l},k)} \alpha_t(s)\beta_t(s) }{y_{k}^t} ) 245 | \end{equation} 246 | 247 | \begin{equation} 248 | \begin{aligned} 249 | d_{{0j}} & =\sum _{{k=1}}^{{j}}w_{{\mathrm {ins}}}(a_{{k}}),\quad & {\text{for}}\;1\leq j\leq n \\ 250 | d_{{ij}} & ={\begin{cases}d_{{i-1,j-1}}&{\text{for}}\;a_{{j}}=b_{{i}}\\\min {\begin{cases}d_{{i-1,j}}+w_{{\mathrm {del}}}(b_{{i}})\\d_{{i,j-1}}+w_{{\mathrm {ins}}}(a_{{j}})\\d_{{i-1,j-1}}+w_{{\mathrm {sub}}}(a_{{j}},b_{{i}})\end{cases}}&{\text{for}}\;a_{{j}}\neq b_{{i}}\end{cases}}\quad & {\text{for}}\;1\leq i\leq m,1\leq j\leq n. 251 | \end{aligned} 252 | \end{equation} 253 | 254 | \begin{equation} 255 | \begin{aligned} 256 | & \beta_T(|l{}'|)=y_{b}^{T} \\ 257 | & \beta_T(|l{}'|-1)=y_{l_|l|}^{T} \\ 258 | & \beta_T(s)=0, \forall s < |l{}'|-1 259 | \end{aligned} 260 | \end{equation} 261 | 262 | 递归公式 263 | \begin{equation} 264 | \beta_t(s)=\left\{ 265 | \begin{aligned} 266 | & (\beta_{t+1}(s) d(s)+\beta_{t+1}(s+1))d(s+1)\, y_{l_s{}'}^t, \: \: if \: l_s{}'=b \: or \: l_{s+2}{}'=l_s{}' \\ 267 | & (\beta_{t+1}(s) d(s)+\beta_{t+1}(s+1)d(s+1)+\beta_{t+1}(s+2)d(s+2))\, y_{l_s{}'}^t,\: \: otherwise 268 | \end{aligned} 269 | \right. 270 | \end{equation} 271 | 272 | \section{表格}\footnote{请使用$\backslash$zihao{5}自行调整字号为5号} 273 | 274 | \begin{table}[htbp] 275 | \setlength{\belowcaptionskip}{7pt} 276 | \centering 277 | \begin{tabular}{|c|c|c|c|c|c|c|c|c|c|} 278 | \hline 279 | & & 国 & 内 & 企 & 业 & 包 & 括 & 许 & 多 \\ 280 | \hline 281 | & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\ 282 | \hline 283 | 国 & 1 & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 \\ 284 | \hline 285 | 著 & 2 & 1 & 1 & 2 & 2 & 3 & 4 & 5 & 6 \\ 286 | \hline 287 | \end{tabular} 288 | \vspace{0.2cm} 289 | \caption{编辑距离(乐文斯汀距离计算过程示例表格。字符串``国内企业包括许多''与``国著名括许多''乐文斯汀距离是3。}\label{table:ld} 290 | \end{table} 291 | 292 | 293 | \section{算法} 294 | 295 | \begin{algorithm} 296 | \caption{Beam Search} 297 | \label{alg:beam} 298 | \begin{algorithmic}[1] 299 | \STATE {将初始节点插入到集束中。} 300 | \WHILE{遍历未结束} 301 | \STATE {遍历集束中所有节点的后续节点。} 302 | \IF{该节点是目标节点} 303 | \STATE {算法结束。} 304 | \ELSE 305 | \STATE {扩展该节点,取集束宽度的节点入堆。} 306 | \ENDIF 307 | \ENDWHILE 308 | \end{algorithmic} 309 | \end{algorithm} 310 | 311 | 集束宽度可以在搜索过程中保持为一个定值,也可以根据搜索的进行而变化。搜索算法可以根据搜索的结果进行调整,比如,当以一个小的集束宽度搜索解却无法找到适合解的时候,可以增大集束宽度重新进行一次搜索。 312 | 313 | \section{代码} 314 | 315 | \begin{lstlisting}[language = c++, style=codeBase] 316 | #include 317 | using namespace std; 318 | 319 | int main() { 320 | cout << "Hello World!" << endl; 321 | return 0; 322 | } 323 | \end{lstlisting} 324 | 325 | 326 | \chapter{实验} 327 | 328 | \section{实现细节} 329 | 我们在Tensorflow框架上实现了我们的网络系统。实验在一个搭载2.40GHz 英特尔志强 Xeon E5-2673 CPU,32GB RAM 和一块英伟达1080Ti 12GB 显存的服务器电脑上运行。网络系统使用Adam训练算法。 330 | 331 | 332 | 333 | \section{文本分行结果} 334 | 尽管如此,在局部损失切割和局部水平投影切割之后,每一个竖直段的分行结果的对应关系却很难处理。在一些特殊情况下,无法做到每一竖直段分行关系的对应。所以这两个方法不适用。 335 | 336 | 337 | 338 | 339 | \section{识别结果} 340 | 341 | \subsection{准确率} 342 | 我们根据数据集中人的笔迹将数据集分为了\textbf{HWDB1}-\textbf{HWDB3},并实现了Wang 等人\cite{wang2012end} 和Mishra 等人\cite{mishra2012scene}的方法,通过调用百度的文字识别系统\cite{baiduapi},进行对比实验得到以下结果。 343 | 344 | \vspace{0.2cm} 345 | \begin{table}[htbp] 346 | \setlength{\belowcaptionskip}{5pt} 347 | \centering 348 | \begin{tabular}{cccc} 349 | \toprule 350 | \textbf{方法} & \textbf{HWDB1} & \textbf{HWDB2} & \textbf{HWDB3} \\ 351 | \midrule 352 | Wang 等人\cite{wang2012end} & 74.0 & 60.0 & 68.0 \\ 353 | Mishra 等人\cite{mishra2012scene} & 80.8 & 63.6 & 73.5 \\ 354 | 百度通用文字识别\cite{baiduapi} & 64.8 & 36.8 & 60.8 \\ 355 | \midrule 356 | 我们的方法(没有字典信息) & 81.5 & 67.5 & 73.6 \\ 357 | 我们的方法 & \textbf{81.8} & \textbf{67.8} & \textbf{73.9} \\ 358 | \bottomrule 359 | \end{tabular} 360 | \vspace{0.2cm} 361 | \caption{识别准确率}\label{table:result} 362 | \end{table} 363 | 364 | \subsubsection{测试} 365 | 1234 366 | 367 | \chapter{总结与讨论} 368 | 在本文中,我们使用预处理层-卷积层-循环卷积层-转录层网络来处理手写中文文本识别的问题。这种网络很好地结合了卷积网络和循环网络各自的优势。 369 | 370 | \bibliography{sample} 371 | 372 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 373 | % 致谢,应放在结论之后 374 | \begin{acknowledgement} 375 | 感谢在实验室度过的两年时光,老师无论在学术还是人生的指导上都对我起到了很大的帮助;师兄师姐小伙伴们的鼓励支持和陪伴是我坚持下去的动力。 376 | \end{acknowledgement} 377 | 378 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 379 | \end{document} --------------------------------------------------------------------------------