├── .gitignore ├── LICENSE ├── README.md ├── midterm ├── body │ └── midterm.tex ├── front │ └── coverart.tex ├── hithesis.bst ├── hithesisart.cfg ├── hithesisart.cls ├── latexmkrc ├── reference.bib └── report.tex ├── opening ├── body │ └── opening.tex ├── front │ └── coverart.tex ├── hithesis.bst ├── hithesisart.cfg ├── hithesisart.cls ├── latexmkrc ├── reference.bib └── report.tex └── thesis ├── back ├── acknowledgements.tex ├── appA.tex ├── appendix01.tex ├── ceindex.tex ├── conclusion.tex ├── correspondingaddr.tex ├── doctorpublications.tex ├── publications.tex └── resume.tex ├── body ├── introduction.tex └── regu.tex ├── bthesistitle.eps ├── figures └── golfer.eps ├── front ├── cover.tex └── denotation.tex ├── hithesis.bst ├── hithesis.ist ├── hithesis.sty ├── hithesisbook.cfg ├── hithesisbook.cls ├── hitlogo.eps ├── latexmkrc ├── reference.bib └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- 1 | ## === TeX === 2 | 3 | ## Core latex/pdflatex auxiliary files: 4 | *.aux 5 | *.lof 6 | *.log 7 | *.lot 8 | *.fls 9 | *.out 10 | *.toc 11 | *.fmt 12 | *.fot 13 | *.cb 14 | *.cb2 15 | .*.lb 16 | 17 | ## Intermediate documents: 18 | *.dvi 19 | *.xdv 20 | *-converted-to.* 21 | # these rules might exclude image files for figures etc. 22 | # *.ps 23 | # *.eps 24 | # *.pdf 25 | 26 | ## Generated if empty string is given at "Please type another file name for output:" 27 | .pdf 28 | 29 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 30 | *.bbl 31 | *.bcf 32 | *.blg 33 | *-blx.aux 34 | *-blx.bib 35 | *.run.xml 36 | 37 | ## Build tool auxiliary files: 38 | *.fdb_latexmk 39 | *.synctex 40 | *.synctex(busy) 41 | *.synctex.gz 42 | *.synctex.gz(busy) 43 | *.pdfsync 44 | 45 | ## Build tool directories for auxiliary files 46 | # latexrun 47 | latex.out/ 48 | 49 | ## Auxiliary and intermediate files from other packages: 50 | # algorithms 51 | *.alg 52 | *.loa 53 | 54 | # achemso 55 | acs-*.bib 56 | 57 | # amsthm 58 | *.thm 59 | 60 | # beamer 61 | *.nav 62 | *.pre 63 | *.snm 64 | *.vrb 65 | 66 | # changes 67 | *.soc 68 | 69 | # comment 70 | *.cut 71 | 72 | # cprotect 73 | *.cpt 74 | 75 | # elsarticle (documentclass of Elsevier journals) 76 | *.spl 77 | 78 | # endnotes 79 | *.ent 80 | 81 | # fixme 82 | *.lox 83 | 84 | # feynmf/feynmp 85 | *.mf 86 | *.mp 87 | *.t[1-9] 88 | *.t[1-9][0-9] 89 | *.tfm 90 | 91 | #(r)(e)ledmac/(r)(e)ledpar 92 | *.end 93 | *.?end 94 | *.[1-9] 95 | *.[1-9][0-9] 96 | *.[1-9][0-9][0-9] 97 | *.[1-9]R 98 | *.[1-9][0-9]R 99 | *.[1-9][0-9][0-9]R 100 | *.eledsec[1-9] 101 | *.eledsec[1-9]R 102 | *.eledsec[1-9][0-9] 103 | *.eledsec[1-9][0-9]R 104 | *.eledsec[1-9][0-9][0-9] 105 | *.eledsec[1-9][0-9][0-9]R 106 | 107 | # glossaries 108 | *.acn 109 | *.acr 110 | *.glg 111 | *.glo 112 | *.gls 113 | *.glsdefs 114 | *.lzo 115 | *.lzs 116 | 117 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 118 | # *.ist 119 | 120 | # gnuplottex 121 | *-gnuplottex-* 122 | 123 | # gregoriotex 124 | *.gaux 125 | *.gtex 126 | 127 | # htlatex 128 | *.4ct 129 | *.4tc 130 | *.idv 131 | *.lg 132 | *.trc 133 | *.xref 134 | 135 | # hyperref 136 | *.brf 137 | 138 | # knitr 139 | *-concordance.tex 140 | # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files 141 | # *.tikz 142 | *-tikzDictionary 143 | 144 | # listings 145 | *.lol 146 | 147 | # luatexja-ruby 148 | *.ltjruby 149 | 150 | # makeidx 151 | *.idx 152 | *.ilg 153 | *.ind 154 | 155 | # minitoc 156 | *.maf 157 | *.mlf 158 | *.mlt 159 | *.mtc[0-9]* 160 | *.slf[0-9]* 161 | *.slt[0-9]* 162 | *.stc[0-9]* 163 | 164 | # minted 165 | _minted* 166 | *.pyg 167 | 168 | # morewrites 169 | *.mw 170 | 171 | # nomencl 172 | *.nlg 173 | *.nlo 174 | *.nls 175 | 176 | # pax 177 | *.pax 178 | 179 | # pdfpcnotes 180 | *.pdfpc 181 | 182 | # sagetex 183 | *.sagetex.sage 184 | *.sagetex.py 185 | *.sagetex.scmd 186 | 187 | # scrwfile 188 | *.wrt 189 | 190 | # sympy 191 | *.sout 192 | *.sympy 193 | sympy-plots-for-*.tex/ 194 | 195 | # pdfcomment 196 | *.upa 197 | *.upb 198 | 199 | # pythontex 200 | *.pytxcode 201 | pythontex-files-*/ 202 | 203 | # tcolorbox 204 | *.listing 205 | 206 | # thmtools 207 | *.loe 208 | 209 | # TikZ & PGF 210 | *.dpth 211 | *.md5 212 | *.auxlock 213 | 214 | # todonotes 215 | *.tdo 216 | 217 | # vhistory 218 | *.hst 219 | *.ver 220 | 221 | # easy-todo 222 | *.lod 223 | 224 | # xcolor 225 | *.xcp 226 | 227 | # xmpincl 228 | *.xmpi 229 | 230 | # xindy 231 | *.xdy 232 | 233 | # xypic precompiled matrices and outlines 234 | *.xyc 235 | *.xyd 236 | 237 | # endfloat 238 | *.ttt 239 | *.fff 240 | 241 | # Latexian 242 | TSWLatexianTemp* 243 | 244 | ## Editors: 245 | # WinEdt 246 | *.bak 247 | *.sav 248 | 249 | # Texpad 250 | .texpadtmp 251 | 252 | # LyX 253 | *.lyx~ 254 | 255 | # Kile 256 | *.backup 257 | 258 | # gummi 259 | .*.swp 260 | 261 | # KBibTeX 262 | *~[0-9]* 263 | 264 | # TeXnicCenter 265 | *.tps 266 | 267 | # auto folder when using emacs and auctex 268 | ./auto/* 269 | *.el 270 | 271 | # expex forward references with \gathertags 272 | *-tags.tex 273 | 274 | # standalone packages 275 | *.sta 276 | 277 | # Makeindex log files 278 | *.lpz 279 | 280 | # xwatermark package 281 | *.xwm 282 | 283 | # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib 284 | # option is specified. Footnotes are the stored in a file with suffix Notes.bib. 285 | # Uncomment the next line to have this generated file ignored. 286 | #*Notes.bib 287 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. Copyright and Similar Rights means copyright and/or similar rights 88 | closely related to copyright including, without limitation, 89 | performance, broadcast, sound recording, and Sui Generis Database 90 | Rights, without regard to how the rights are labeled or 91 | categorized. For purposes of this Public License, the rights 92 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 93 | Rights. 94 | d. Effective Technological Measures means those measures that, in the 95 | absence of proper authority, may not be circumvented under laws 96 | fulfilling obligations under Article 11 of the WIPO Copyright 97 | Treaty adopted on December 20, 1996, and/or similar international 98 | agreements. 99 | 100 | e. Exceptions and Limitations means fair use, fair dealing, and/or 101 | any other exception or limitation to Copyright and Similar Rights 102 | that applies to Your use of the Licensed Material. 103 | 104 | f. Licensed Material means the artistic or literary work, database, 105 | or other material to which the Licensor applied this Public 106 | License. 107 | 108 | g. Licensed Rights means the rights granted to You subject to the 109 | terms and conditions of this Public License, which are limited to 110 | all Copyright and Similar Rights that apply to Your use of the 111 | Licensed Material and that the Licensor has authority to license. 112 | 113 | h. Licensor means the individual(s) or entity(ies) granting rights 114 | under this Public License. 115 | 116 | i. NonCommercial means not primarily intended for or directed towards 117 | commercial advantage or monetary compensation. For purposes of 118 | this Public License, the exchange of the Licensed Material for 119 | other material subject to Copyright and Similar Rights by digital 120 | file-sharing or similar means is NonCommercial provided there is 121 | no payment of monetary compensation in connection with the 122 | exchange. 123 | 124 | j. Share means to provide material to the public by any means or 125 | process that requires permission under the Licensed Rights, such 126 | as reproduction, public display, public performance, distribution, 127 | dissemination, communication, or importation, and to make material 128 | available to the public including in ways that members of the 129 | public may access the material from a place and at a time 130 | individually chosen by them. 131 | 132 | k. Sui Generis Database Rights means rights other than copyright 133 | resulting from Directive 96/9/EC of the European Parliament and of 134 | the Council of 11 March 1996 on the legal protection of databases, 135 | as amended and/or succeeded, as well as other essentially 136 | equivalent rights anywhere in the world. 137 | 138 | l. You means the individual or entity exercising the Licensed Rights 139 | under this Public License. Your has a corresponding meaning. 140 | 141 | 142 | Section 2 -- Scope. 143 | 144 | a. License grant. 145 | 146 | 1. Subject to the terms and conditions of this Public License, 147 | the Licensor hereby grants You a worldwide, royalty-free, 148 | non-sublicensable, non-exclusive, irrevocable license to 149 | exercise the Licensed Rights in the Licensed Material to: 150 | 151 | a. reproduce and Share the Licensed Material, in whole or 152 | in part, for NonCommercial purposes only; and 153 | 154 | b. produce, reproduce, and Share Adapted Material for 155 | NonCommercial purposes only. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. No downstream restrictions. You may not offer or impose 186 | any additional or different terms or conditions on, or 187 | apply any Effective Technological Measures to, the 188 | Licensed Material if doing so restricts exercise of the 189 | Licensed Rights by any recipient of the Licensed 190 | Material. 191 | 192 | 6. No endorsement. Nothing in this Public License constitutes or 193 | may be construed as permission to assert or imply that You 194 | are, or that Your use of the Licensed Material is, connected 195 | with, or sponsored, endorsed, or granted official status by, 196 | the Licensor or others designated to receive attribution as 197 | provided in Section 3(a)(1)(A)(i). 198 | 199 | b. Other rights. 200 | 201 | 1. Moral rights, such as the right of integrity, are not 202 | licensed under this Public License, nor are publicity, 203 | privacy, and/or other similar personality rights; however, to 204 | the extent possible, the Licensor waives and/or agrees not to 205 | assert any such rights held by the Licensor to the limited 206 | extent necessary to allow You to exercise the Licensed 207 | Rights, but not otherwise. 208 | 209 | 2. Patent and trademark rights are not licensed under this 210 | Public License. 211 | 212 | 3. To the extent possible, the Licensor waives any right to 213 | collect royalties from You for the exercise of the Licensed 214 | Rights, whether directly or through a collecting society 215 | under any voluntary or waivable statutory or compulsory 216 | licensing scheme. In all other cases the Licensor expressly 217 | reserves any right to collect such royalties, including when 218 | the Licensed Material is used other than for NonCommercial 219 | purposes. 220 | 221 | 222 | Section 3 -- License Conditions. 223 | 224 | Your exercise of the Licensed Rights is expressly made subject to the 225 | following conditions. 226 | 227 | a. Attribution. 228 | 229 | 1. If You Share the Licensed Material (including in modified 230 | form), You must: 231 | 232 | a. retain the following if it is supplied by the Licensor 233 | with the Licensed Material: 234 | 235 | i. identification of the creator(s) of the Licensed 236 | Material and any others designated to receive 237 | attribution, in any reasonable manner requested by 238 | the Licensor (including by pseudonym if 239 | designated); 240 | 241 | ii. a copyright notice; 242 | 243 | iii. a notice that refers to this Public License; 244 | 245 | iv. a notice that refers to the disclaimer of 246 | warranties; 247 | 248 | v. a URI or hyperlink to the Licensed Material to the 249 | extent reasonably practicable; 250 | 251 | b. indicate if You modified the Licensed Material and 252 | retain an indication of any previous modifications; and 253 | 254 | c. indicate the Licensed Material is licensed under this 255 | Public License, and include the text of, or the URI or 256 | hyperlink to, this Public License. 257 | 258 | 2. You may satisfy the conditions in Section 3(a)(1) in any 259 | reasonable manner based on the medium, means, and context in 260 | which You Share the Licensed Material. For example, it may be 261 | reasonable to satisfy the conditions by providing a URI or 262 | hyperlink to a resource that includes the required 263 | information. 264 | 265 | 3. If requested by the Licensor, You must remove any of the 266 | information required by Section 3(a)(1)(A) to the extent 267 | reasonably practicable. 268 | 269 | 4. If You Share Adapted Material You produce, the Adapter's 270 | License You apply must not prevent recipients of the Adapted 271 | Material from complying with this Public License. 272 | 273 | 274 | Section 4 -- Sui Generis Database Rights. 275 | 276 | Where the Licensed Rights include Sui Generis Database Rights that 277 | apply to Your use of the Licensed Material: 278 | 279 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 280 | to extract, reuse, reproduce, and Share all or a substantial 281 | portion of the contents of the database for NonCommercial purposes 282 | only; 283 | 284 | b. if You include all or a substantial portion of the database 285 | contents in a database in which You have Sui Generis Database 286 | Rights, then the database in which You have Sui Generis Database 287 | Rights (but not its individual contents) is Adapted Material; and 288 | 289 | c. You must comply with the conditions in Section 3(a) if You Share 290 | all or a substantial portion of the contents of the database. 291 | 292 | For the avoidance of doubt, this Section 4 supplements and does not 293 | replace Your obligations under this Public License where the Licensed 294 | Rights include other Copyright and Similar Rights. 295 | 296 | 297 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 298 | 299 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 300 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 301 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 302 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 303 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 304 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 305 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 306 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 307 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 308 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 309 | 310 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 311 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 312 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 313 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 314 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 315 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 316 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 317 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 318 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 319 | 320 | c. The disclaimer of warranties and limitation of liability provided 321 | above shall be interpreted in a manner that, to the extent 322 | possible, most closely approximates an absolute disclaimer and 323 | waiver of all liability. 324 | 325 | 326 | Section 6 -- Term and Termination. 327 | 328 | a. This Public License applies for the term of the Copyright and 329 | Similar Rights licensed here. However, if You fail to comply with 330 | this Public License, then Your rights under this Public License 331 | terminate automatically. 332 | 333 | b. Where Your right to use the Licensed Material has terminated under 334 | Section 6(a), it reinstates: 335 | 336 | 1. automatically as of the date the violation is cured, provided 337 | it is cured within 30 days of Your discovery of the 338 | violation; or 339 | 340 | 2. upon express reinstatement by the Licensor. 341 | 342 | For the avoidance of doubt, this Section 6(b) does not affect any 343 | right the Licensor may have to seek remedies for Your violations 344 | of this Public License. 345 | 346 | c. For the avoidance of doubt, the Licensor may also offer the 347 | Licensed Material under separate terms or conditions or stop 348 | distributing the Licensed Material at any time; however, doing so 349 | will not terminate this Public License. 350 | 351 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 352 | License. 353 | 354 | 355 | Section 7 -- Other Terms and Conditions. 356 | 357 | a. The Licensor shall not be bound by any additional or different 358 | terms or conditions communicated by You unless expressly agreed. 359 | 360 | b. Any arrangements, understandings, or agreements regarding the 361 | Licensed Material not stated herein are separate from and 362 | independent of the terms and conditions of this Public License. 363 | 364 | 365 | Section 8 -- Interpretation. 366 | 367 | a. For the avoidance of doubt, this Public License does not, and 368 | shall not be interpreted to, reduce, limit, restrict, or impose 369 | conditions on any use of the Licensed Material that could lawfully 370 | be made without permission under this Public License. 371 | 372 | b. To the extent possible, if any provision of this Public License is 373 | deemed unenforceable, it shall be automatically reformed to the 374 | minimum extent necessary to make it enforceable. If the provision 375 | cannot be reformed, it shall be severed from this Public License 376 | without affecting the enforceability of the remaining terms and 377 | conditions. 378 | 379 | c. No term or condition of this Public License will be waived and no 380 | failure to comply consented to unless expressly agreed to by the 381 | Licensor. 382 | 383 | d. Nothing in this Public License constitutes or may be interpreted 384 | as a limitation upon, or waiver of, any privileges and immunities 385 | that apply to the Licensor or You, including from the legal 386 | processes of any jurisdiction or authority. 387 | 388 | ======================================================================= 389 | 390 | Creative Commons is not a party to its public 391 | licenses. Notwithstanding, Creative Commons may elect to apply one of 392 | its public licenses to material it publishes and in those instances 393 | will be considered the “Licensor.” The text of the Creative Commons 394 | public licenses is dedicated to the public domain under the CC0 Public 395 | Domain Dedication. Except for the limited purpose of indicating that 396 | material is shared under a Creative Commons public license or as 397 | otherwise permitted by the Creative Commons policies published at 398 | creativecommons.org/policies, Creative Commons does not authorize the 399 | use of the trademark "Creative Commons" or any other trademark or logo 400 | of Creative Commons without its prior written consent including, 401 | without limitation, in connection with any unauthorized modifications 402 | to any of its public licenses or any other arrangements, 403 | understandings, or agreements concerning use of licensed material. For 404 | the avoidance of doubt, this paragraph does not form part of the 405 | public licenses. 406 | 407 | Creative Commons may be contacted at creativecommons.org. 408 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hithesis-template 2 | 3 | 已初步配置完成的 [hithesis](https://github.com/dustincys/hithesis) 毕业论文写作模板。 4 | 5 | 推荐(在对应目录下)使用 `latexmk` 构建。 6 | 7 | * `opening` 开题报告 8 | * `midterm` 中期报告 9 | * `thesis` 毕业论文 10 | 11 | 一些资料: 12 | 13 | * [哈工大 LaTeX 论文模板 hithesis(第三版)使用介绍](https://www.bilibili.com/video/BV1tZ4y1T78w): 本模板的使用介绍。 14 | * [LaTeX快速零基础入门及哈工大论文模板hithesis介绍及使用](https://www.bilibili.com/video/BV1zJ41127Xk):这是针对老版的,相当于只包含毕业论文的部分。 15 | * [一份(不太)简短的 LaTeX2ε 介绍](http://mirrors.ctan.org/info/lshort/chinese/lshort-zh-cn.pdf) -------------------------------------------------------------------------------- /midterm/body/midterm.tex: -------------------------------------------------------------------------------- 1 | % section 后有*表示不需要画横线 2 | \section{论文工作是否按开题报告预定的内容及进度安排进行}* 3 | 4 | \lipsum[1] 5 | 6 | \section{目前已完成的研究工作及结果} 7 | 8 | \lipsum[2-3] 9 | 10 | \section{后期拟完成的研究工作及进度安排} 11 | 12 | \lipsum[2-3] 13 | 14 | \section{存在的困难与问题} 15 | 16 | \lipsum[2-3] 17 | 18 | \section{如期完成全部论文工作的可能性}* 19 | 20 | \lipsum[2-3] 21 | 22 | \section*{指导教师意见:} 23 | 24 | \lipsum[2-3] 25 | 26 | \vspace{24bp} 27 | \hfill 指导教师签名:\hspace{8\ccwd} 28 | 29 | \vspace{24bp} 30 | \hfill 年\hspace{2\ccwd}月\hspace{2\ccwd}日 31 | 32 | \section*{检查小组意见:} 33 | 34 | \lipsum[2-3] 35 | 36 | \vspace{24bp} 37 | \hfill 组长(签字):\hspace{8\ccwd} 38 | 39 | \vspace{24bp} 40 | \hfill 年\hspace{2\ccwd}月\hspace{2\ccwd}日 41 | -------------------------------------------------------------------------------- /midterm/front/coverart.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \hitsetup{ 4 | %****************************** 5 | % 注意: 6 | % 1. 配置里面不要出现空行 7 | % 2. 不需要的配置信息可以删除 8 | %****************************** 9 | ctitlecover={局部多孔质气体静压轴承关键技术的研究},%放在封面中使用,自由断行 10 | % ctitleone={局部多孔质气体静压}, 11 | % ctitletwo={轴承关键技术的研究}, 12 | caffil={仪器科学与工程学院}, 13 | csubject={仪器科学与技术}, 14 | cauthor={于冬梅}, 15 | cstudentid={9527}, 16 | cclassid={9527}, 17 | csupervisor={某某某教授}, 18 | % 日期自动使用当前时间,若需指定按如下方式修改: 19 | %cdate={盘古开天地} 20 | % cenrolldate={公元2020年} 21 | } 22 | -------------------------------------------------------------------------------- /midterm/hithesisart.cfg: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesisart.cfg', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `artcfg') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% This is the configuration file of the hithesis package with LaTeX2e. 24 | %% 25 | \ProvidesFile{hithesisart.cfg} 26 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 27 | \theorembodyfont{\normalfont} 28 | \theoremheaderfont{\normalfont\heiti} 29 | \theoremsymbol{\ensuremath{\square}} 30 | \newtheorem*{proof}{证明} 31 | \theoremstyle{plain} 32 | \theoremsymbol{} 33 | \theoremseparator{} 34 | \newtheorem{assumption}{假设} 35 | \newtheorem{definition}{定义} 36 | \newtheorem{proposition}{命题} 37 | \newtheorem{lemma}{引理} 38 | \newtheorem{theorem}{定理} 39 | \newtheorem{axiom}{公理} 40 | \newtheorem{corollary}{推论} 41 | \newtheorem{exercise}{练习} 42 | \newtheorem{example}{例} 43 | \newtheorem{remark}{注释} 44 | \newtheorem{problem}{问题} 45 | \newtheorem{conjecture}{猜想} 46 | \ctexset{% 47 | contentsname={目\hspace{\ccwd}录}, 48 | figurename=图, 49 | tablename=表 50 | } 51 | \let\CJK@todaysave=\today 52 | \def\CJK@todaysmall@short{\the\year 年 \the\month 月} 53 | \def\CJK@todaysmall{\the\year 年 \the\month 月 \the\day 日} 54 | \def\CJK@todaybig@short{\zhdigits{\the\year}年\zhnumber{\the\month}月} 55 | \def\CJK@todaybig{\zhdigits{\the\year}年\zhnumber{\the\month}月\zhnumber{\the\day}日} 56 | \def\CJK@today{\CJK@todaysmall} 57 | \renewcommand\today{\CJK@today} 58 | \newcommand\CJKtoday[1][1]{% 59 | \ifcase#1\def\CJK@today{\CJK@todaysave} 60 | \or\def\CJK@today{\CJK@todaysmall} 61 | \or\def\CJK@today{\CJK@todaybig} 62 | \fi} 63 | \cdate{\ifhit@bachelor\CJK@todaysmall\else\CJK@todaysmall@short\fi} 64 | \ifhit@doctor 65 | \gdef\hit@cxueweishort{博} 66 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 67 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 68 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 69 | \fi 70 | \ifhit@master 71 | \gdef\hit@cxueweishort{硕} 72 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 73 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 74 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 75 | \fi 76 | \ifhit@bachelor 77 | \gdef\hit@cxuewei{学士} 78 | \fi 79 | \def\hit@stage@opening{开题} 80 | \def\hit@stage@midterm{中期} 81 | \def\hit@stage@doctype{报告} 82 | \def\hit@bachelor@cxuewei{本科} 83 | \def\hit@bachelor@cthesisname{毕业设计(论文)} 84 | \def\hit@bachelor@cmajortitle{专\hspace{2\ccwd}业} 85 | \def\hit@bachelor@cstudenttitle{学\hspace{2\ccwd}生} 86 | \def\hit@bachelor@cstudentidtitle{学\hspace{2\ccwd}号} 87 | \def\hit@bachelor@cclass{班\hspace{2\ccwd}号} 88 | \def\hit@bachelor@caffiltitle{院(系)} 89 | \def\hit@bachelor@caffiltitlesz{学院} 90 | \def\hit@bachelor@caffiltitlewh{学院} 91 | \def\hit@bachelor@csupervisortitle{指导教师} 92 | \def\hit@bachelor@cdatetitle{日\hspace{2\ccwd}期} 93 | \newcommand{\hit@bachelor@teachercomment}{指导教师评语:} 94 | \newcommand{\hit@bachelor@teachersign}{指导教师签字:} 95 | \newcommand{\hit@bachelor@checkdate}{检查日期:} 96 | \def\hit@cthesistitleprefix{题\hspace{\ccwd}目} 97 | \def\hit@graduate@caffiltitle{院\hspace{3\ccwd}(系)} 98 | \def\hit@graduate@cmajortitle{学\hspace{4\ccwd}科} 99 | \def\hit@graduate@supervisor{导\hspace{4\ccwd}师} 100 | \def\hit@graduate@studenttitle{研\hspace{1.5\ccwd}究\hspace{1.5\ccwd}生} 101 | \def\hit@graduate@studentid{学\hspace{4\ccwd}号} 102 | \def\hit@graduate@datetitle{\ifhit@opening\hit@stage@opening 103 | \else\ifhit@midterm\hit@stage@midterm\fi\fi\hit@stage@doctype 日期} 104 | \def\hit@graduate@enrolldate{入\hspace{0.6666666\ccwd}学\hspace{0.6666666\ccwd}时\hspace{0.6666666\ccwd}间} 105 | \def\hit@graduate@thesistitle{论\hspace{0.6666666\ccwd}文\hspace{0.6666666\ccwd}题\hspace{0.6666666\ccwd}目} 106 | \def\hit@graduate@cafflimajor{学\hspace{0.6666666\ccwd}科\hspace{0.6666666\ccwd}专\hspace{0.6666666\ccwd}业} 107 | \def\hit@cschoolname{哈尔滨工业大学} 108 | \def\hit@shenzhencampus{(深圳)} 109 | \def\hit@cthesisname{学位论文} 110 | \def\hit@cthesismidtermcheck{博\hspace{.125\ccwd}士\hspace{.125\ccwd}学\hspace{.125\ccwd}位\hspace{.125\ccwd}论\hspace{.125\ccwd}文\hspace{.125\ccwd}中\hspace{.125\ccwd}期\hspace{.125\ccwd}检\hspace{.125\ccwd}查\hspace{.125\ccwd}报\hspace{.125\ccwd}告} 111 | \def\hit@weihaicampus{(威海)} 112 | \def\hit@cschoolnametitle{授予学位单位} 113 | \def\hit@cdatetitle{答辩日期} 114 | \def\hit@caffiltitle{所在单位} 115 | \def\hit@csubjecttitle{学科} 116 | \def\hit@cdegreetitle{申请学位} 117 | \def\hit@csupervisortitle{导师} 118 | \def\hit@cassosupervisortitle{副导师} 119 | \def\hit@ccosupervisortitle{联合导师} 120 | \def\hit@title@csep{:} 121 | \def\hit@natclassifiedindextitle{国内图书分类号} 122 | \def\hit@internatclassifiedindextitle{国际图书分类号} 123 | \def\hit@secretlevel{密级} 124 | \def\hit@schoolidtitle{学校代码} 125 | \def\hit@schoolid{10213} 126 | \newcommand{\hit@authorsig}{作者签名:} 127 | \newcommand{\hit@teachersig}{导师签名:} 128 | \newcommand{\hit@frontdate}{日期:} 129 | \newcommand{\hit@authorizationtitle}{学位论文使用权限} 130 | \newcommand{\hit@shenzhen@schoolbottommark}{ 131 | \begin{center} 132 | \songti\sanhao\textbf{哈工大(深圳)制} 133 | \end{center} 134 | \begin{center} 135 | \songti\sanhao\textbf{二〇一二年三月} 136 | \end{center} 137 | } 138 | \newcommand{\hit@harbin@schoolbottommark}{ 139 | \begin{center} 140 | \songti\sanhao\textbf{研究生院制} 141 | \end{center} 142 | } 143 | \newcommand{\hit@harbin@bachelor@schoolbottommark}{ 144 | \begin{center} 145 | \lishu\xiaoer\textbf{哈尔滨工业大学教务处制} 146 | \end{center} 147 | } 148 | \newcommand{\hit@shenzhen@doctor@midterm@note}{ 149 | \thispagestyle{empty} 150 | {\begin{center} 151 | \songti\sanhao\textbf{说\hspace{4\ccwd}明} 152 | \end{center} 153 | } 154 | \vspace{1cm}\songti\sihao[2] 155 | \begin{enumerate}[itemsep=-4bp] 156 | \item 博士研究生学位论文中期报告一般在入学后的第五学期末完成。 157 | \item 此报告由学生本人填写,请导师签字后提交一份给检查小组。答辩结束后由检查组长签署意见。 158 | \item 报告经中期报告检查组长签字同意后,由学科部保存,以备论文答辩时参考。研究生院学生培养处将对研究生的学位论文中期报告进行抽查。 159 | \item 报告统一用A4纸打印。 160 | \end{enumerate} 161 | } 162 | \newcommand{\hit@datefill}{\hspace{2.5em}年\hspace{1.5em}月\hspace{1.5em}日} 163 | \def\hit@hi{嗨!thesis} 164 | \def\hithesis{\textsc{hi}\-\textsc{Thesis}} 165 | \def\hit{哈尔滨工业大学} 166 | \endinput 167 | %% 168 | %% End of file `hithesisart.cfg'. 169 | -------------------------------------------------------------------------------- /midterm/hithesisart.cls: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesisart.cls', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `artcls') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% To produce the documentation run the original source files ending with `.dtx' 24 | %% through LaTeX. 25 | %% 26 | \NeedsTeXFormat{LaTeX2e}[1999/12/01] 27 | \ProvidesClass{hithesisart} 28 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 29 | \RequirePackage{ifthen} 30 | \RequirePackage{kvoptions} 31 | \SetupKeyvalOptions{ 32 | family=hit, 33 | prefix=hit@, 34 | setkeys=\kvsetkeys} 35 | 36 | \newif\ifhit@bachelor 37 | \newif\ifhit@master 38 | \newif\ifhit@doctor 39 | \define@key{hit}{type}{% 40 | \hit@bachelorfalse 41 | \hit@masterfalse 42 | \hit@doctorfalse 43 | \expandafter\csname hit@#1true\endcsname} 44 | 45 | \newif\ifhit@shenzhen 46 | \newif\ifhit@weihai 47 | \newif\ifhit@harbin 48 | \define@key{hit}{campus}{% 49 | \hit@shenzhenfalse 50 | \hit@weihaifalse 51 | \hit@harbinfalse 52 | \expandafter\csname hit@#1true\endcsname} 53 | \ifhit@weihai\relax\else 54 | \ifhit@shenzhen\relax\else 55 | \hit@harbintrue 56 | \fi 57 | \fi 58 | 59 | \newif\ifhit@opening 60 | \newif\ifhit@midterm 61 | \define@key{hit}{stage}{% 62 | \hit@openingfalse 63 | \hit@midtermfalse 64 | \expandafter\csname hit@#1true\endcsname} 65 | 66 | \DeclareBoolOption[true]{raggedbottom} 67 | \DeclareBoolOption[false]{pifootnote} 68 | \DeclareBoolOption[false]{debug} 69 | \DeclareBoolOption[true]{toc} 70 | \DeclareBoolOption[true]{newtxmath} 71 | 72 | \DeclareStringOption{fontset} 73 | 74 | \DeclareDefaultOption{\PassOptionsToClass{\CurrentOption}{ctexart}} 75 | 76 | \ProcessKeyvalOptions* 77 | \PassOptionsToPackage{no-math}{fontspec} 78 | 79 | \ifhit@bachelor\relax\else 80 | \ifhit@master\relax\else 81 | \ifhit@doctor\relax\else 82 | \ClassError{hithesisart}% 83 | { 84 | \MessageBreak Please specify thesis type in option: 85 | \MessageBreak type=[bachelor | master | doctor] 86 | } 87 | \fi 88 | \fi 89 | \fi 90 | 91 | \ifhit@opening\relax\else 92 | \ifhit@midterm\relax\else 93 | \ClassError{hithesisart}% 94 | { 95 | \MessageBreak Please specify stage in option: 96 | \MessageBreak stage= 97 | } 98 | \fi 99 | \fi 100 | 101 | \ifhit@doctor 102 | \ifhit@midterm 103 | \ifhit@shenzhen 104 | \ClassError{hithesisart}% 105 | { 106 | \MessageBreak This document class does not support midterm report for doctor 107 | in shenzhen campus. 108 | \MessageBreak please use \string\documentclass{hithesisartplus} 109 | } 110 | \fi 111 | \fi 112 | \fi 113 | 114 | \ifthenelse% 115 | {\equal{\hit@fontset}{}}% 116 | {% 117 | \PassOptionsToPackage{AutoFakeBold=2}{xeCJK} 118 | }% 119 | {% 120 | \ifthenelse% 121 | {\equal{\hit@fontset}{siyuan}}% 122 | {\relax}% 123 | {% 124 | \PassOptionsToPackage{AutoFakeBold=2}{xeCJK} 125 | }% 126 | \PassOptionsToClass{fontset=\hit@fontset}{ctexart} 127 | }% 128 | \LoadClass[a4paper,UTF8,zihao=-4,scheme=plain]{ctexart} 129 | 130 | \RequirePackage{etoolbox} 131 | \RequirePackage{ifxetex} 132 | \ifxetex 133 | \else 134 | \ClassError{hithesis}% 135 | {Please use: \MessageBreak 136 | xelatex}{} 137 | \fi 138 | \RequirePackage{xparse} 139 | \RequirePackage{amsmath} 140 | \RequirePackage[amsmath,thmmarks,hyperref]{ntheorem} 141 | \RequirePackage{amssymb} 142 | \RequirePackage[defaultsups]{newtxtext} 143 | \ifhit@newtxmath 144 | \RequirePackage{newtxmath} 145 | \fi 146 | \RequirePackage{courier} 147 | \RequirePackage{graphicx} 148 | \RequirePackage{pdfpages} 149 | \includepdfset{fitpaper=true} 150 | \RequirePackage{enumitem} %使用enumitem宏包,改变列表项的格式 151 | \RequirePackage{environ} 152 | \ifhit@raggedbottom 153 | \RequirePackage[bottom,perpage,hang]{footmisc} 154 | \raggedbottom 155 | \else 156 | \RequirePackage[perpage,hang]{footmisc} 157 | \fi 158 | \ifhit@pifootnote 159 | \RequirePackage{pifont} 160 | \fi 161 | \RequirePackage{xeCJKfntef} 162 | 163 | \RequirePackage{longtable} 164 | \RequirePackage{booktabs} 165 | \RequirePackage[sort&compress,numbers]{natbib} 166 | \RequirePackage{hyperref} 167 | \hypersetup{% 168 | CJKbookmarks=true, 169 | linktoc=all, 170 | bookmarksnumbered=true, 171 | bookmarksopen=true, 172 | bookmarksopenlevel=1, 173 | breaklinks=true, 174 | colorlinks=false, 175 | plainpages=false, 176 | pdfborder=0 0 0} 177 | \urlstyle{same} 178 | 179 | \ifhit@debug 180 | \RequirePackage[showframe]{geometry} 181 | \else 182 | \RequirePackage{geometry} 183 | \fi 184 | 185 | \geometry{%根据PlutoThesis 原版定义而来 186 | a4paper, % 210 * 297mm 187 | hcentering, 188 | ignoreall, 189 | nomarginpar, 190 | centering, 191 | text={150true mm,236true mm}, 192 | left=30true mm, 193 | head=5true mm, 194 | headsep=2true mm, 195 | footskip=0true mm, 196 | foot=5.2true mm 197 | } 198 | 199 | \ifhit@debug% 200 | \RequirePackage{layout} 201 | \RequirePackage{layouts} 202 | \RequirePackage{lineno} 203 | \fi 204 | 205 | \RequirePackage{fancyhdr} 206 | \RequirePackage{tabularx} 207 | \RequirePackage{varwidth} 208 | \RequirePackage{changepage} 209 | \RequirePackage{multicol} 210 | \RequirePackage[below]{placeins}%允许上一个section的浮动图形出现在下一个section的开始部分,还提供\FloatBarrier命令,使所有未处理的浮动图形立即被处理 211 | \RequirePackage{flafter} % 使得所有浮动体不能被放置在其浮动环境之前,以免浮动体在引述它的文本之前出现. 212 | \RequirePackage{multirow} %使用Multirow宏包,使得表格可以合并多个row格 213 | \RequirePackage{subfigure}%支持子图 %centerlast 设置最后一行是否居中 214 | \RequirePackage[subfigure]{ccaption} %支持双语标题 215 | \RequirePackage{xltxtra} 216 | 217 | 218 | \renewcommand\normalsize{% 219 | \@setfontsize\normalsize{12bp}{20.50398bp}% 220 | \abovedisplayskip=8pt 221 | \abovedisplayshortskip=8pt 222 | \belowdisplayskip=\abovedisplayskip 223 | \belowdisplayshortskip=\abovedisplayshortskip} 224 | 225 | \def\hit@def@fontsize#1#2{% 226 | \expandafter\newcommand\csname #1\endcsname[1][1.3]{% 227 | \fontsize{#2}{##1\dimexpr #2}\selectfont}} 228 | \hit@def@fontsize{dachu}{58bp} 229 | \hit@def@fontsize{chuhao}{42bp} 230 | \hit@def@fontsize{xiaochu}{36bp} 231 | \hit@def@fontsize{yihao}{26bp} 232 | \hit@def@fontsize{xiaoyi}{24bp} 233 | \hit@def@fontsize{erhao}{22bp} 234 | \hit@def@fontsize{xiaoer}{18bp} 235 | \hit@def@fontsize{sanhao}{16bp} 236 | \hit@def@fontsize{xiaosan}{15bp} 237 | \hit@def@fontsize{sihao}{14bp} 238 | \hit@def@fontsize{banxiaosi}{13bp} 239 | \hit@def@fontsize{xiaosi}{12bp} 240 | \hit@def@fontsize{dawu}{11bp} 241 | \hit@def@fontsize{wuhao}{10.5bp} 242 | \hit@def@fontsize{xiaowu}{9bp} 243 | \hit@def@fontsize{liuhao}{7.5bp} 244 | \hit@def@fontsize{xiaoliu}{6.5bp} 245 | \hit@def@fontsize{qihao}{5.5bp} 246 | \hit@def@fontsize{bahao}{5bp} 247 | 248 | 249 | \ctexset{% 250 | section={ 251 | afterindent=true, 252 | beforeskip={7.5bp},%上下空0.5行 253 | afterskip={7.5bp}, 254 | format={\heiti\xiaosan[1.25]}, 255 | aftername=\enspace, 256 | fixskip=true, 257 | break={}, 258 | }, 259 | subsection={ 260 | afterindent=true, 261 | beforeskip={7bp}, 262 | afterskip={7bp}, 263 | format={\heiti\sihao[1.25]}, 264 | aftername=\enspace, 265 | fixskip=true, 266 | break={}, 267 | }, 268 | subsubsection={ 269 | afterindent=true, 270 | beforeskip={3bp}, 271 | afterskip={3bp}, 272 | format={\heiti\normalsize}, 273 | aftername=\enspace, 274 | fixskip=true, 275 | break={}, 276 | }, 277 | paragraph/afterindent=true, 278 | subparagraph/afterindent=true 279 | } 280 | 281 | \def\hit@def@term#1{% 282 | \define@key{hit}{#1}{\csname #1\endcsname{##1}} 283 | \expandafter\gdef\csname #1\endcsname##1{% 284 | \expandafter\gdef\csname hit@#1\endcsname{##1}} 285 | \csname #1\endcsname{}} 286 | 287 | \hit@def@term{ctitlecover} %中文标题封面 288 | \hit@def@term{csubject} 289 | \hit@def@term{cauthor} 290 | \hit@def@term{cstudentid} 291 | \hit@def@term{cclassid} 292 | \hit@def@term{caffil} 293 | \hit@def@term{csupervisor} 294 | \hit@def@term{cdate} 295 | 296 | \def\hit@parse@keywords#1{ 297 | \define@key{hit}{#1}{\csname #1\endcsname{##1}} 298 | \expandafter\gdef\csname hit@#1\endcsname{} 299 | \expandafter\gdef\csname #1\endcsname##1{ 300 | \@for\reserved@a:=##1\do{ 301 | \expandafter\ifx\csname hit@#1\endcsname\@empty\else 302 | \expandafter\g@addto@macro\csname hit@#1\endcsname{% 303 | \ignorespaces\csname hit@#1@separator\endcsname} 304 | \fi 305 | \expandafter\expandafter\expandafter\g@addto@macro% 306 | \expandafter\csname hit@#1\expandafter\endcsname\expandafter{\reserved@a}}}} 307 | 308 | \def\hitsetup{\kvsetkeys{hit}} 309 | 310 | \newcommand{\hit@report@titlepage@graduate}{ 311 | \ifthenelse% 312 | {\equal{\hit@fontset}{siyuan}}% 313 | {\xiaosi[1]\vspace*{0.65em}}% 314 | {\xiaosi[1]\textcolor[rgb]{1,1,1}{\songti{\hit@hi}}}% 315 | \vspace*{10mm} 316 | \begin{center} 317 | \kaishu\xiaoer\textbf{\hit@cschoolname\ifhit@shenzhen\hit@shenzhencampus\fi} 318 | \end{center} 319 | \vspace{5mm} 320 | \begin{center} 321 | \songti\erhao\textbf{\hit@cxuewei\hit@cthesisname 322 | \ifhit@opening 323 | \hit@stage@opening 324 | \else 325 | \ifhit@midterm 326 | \hit@stage@midterm 327 | \fi 328 | \fi 329 | \hit@stage@doctype 330 | } 331 | \end{center} 332 | \vspace{10mm} 333 | \parbox[t][3cm][t]{\textwidth}{ 334 | \begin{center} 335 | \songti\xiaoer\textbf{\hit@cthesistitleprefix\hit@title@csep\hit@ctitlecover} 336 | \end{center} 337 | } 338 | \parbox[b][3cm][t]{\textwidth}{ 339 | \begin{center}\songti\sanhao 340 | \renewcommand{\arraystretch}{2.1} 341 | \begin{tabular}{l@{\ \ }c} 342 | \textbf{\hit@graduate@caffiltitle} & \underline{\makebox[6.1cm]{\textbf{\hit@caffil}}}\\ 343 | \textbf{\hit@graduate@cmajortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csubject}}}\\ 344 | \textbf{\hit@graduate@supervisor} & \underline{\makebox[6.1cm]{\textbf{\hit@csupervisor}}}\\ 345 | \textbf{\hit@graduate@studenttitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cauthor}}}\\ 346 | \textbf{\hit@graduate@studentid} & \underline{\makebox[6.1cm]{\textbf{\hit@cstudentid}}}\\ 347 | \textbf{\hit@graduate@datetitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cdate}}}\\ 348 | \end{tabular}\renewcommand{\arraystretch}{1} 349 | \end{center} 350 | } 351 | \vfill 352 | \ifhit@harbin 353 | \hit@harbin@schoolbottommark 354 | \else 355 | \ifhit@shenzhen 356 | \hit@shenzhen@schoolbottommark 357 | \fi 358 | \fi 359 | } 360 | 361 | \newcommand{\hit@report@titlepage@bachelor}{ 362 | \ifthenelse% 363 | {\equal{\hit@fontset}{siyuan}}% 364 | {\xiaosi[1]\vspace*{0.65em}}% 365 | {\xiaosi[1]\textcolor[rgb]{1,1,1}{\songti{\hit@hi}}}% 366 | \vspace*{10mm} 367 | \begin{center} 368 | \includegraphics[width=6.2cm]{hitlogo} 369 | \end{center} 370 | \begin{center} 371 | \songti\xiaoyi\textbf{\hit@bachelor@cthesisname 372 | \ifhit@opening 373 | \hit@stage@opening 374 | \else 375 | \ifhit@midterm 376 | \hit@stage@midterm 377 | \fi 378 | \fi 379 | \hit@stage@doctype 380 | } 381 | \end{center} 382 | \vspace{15mm} 383 | \parbox[t][6.5cm][t]{\textwidth}{ 384 | \begin{center} 385 | \songti\xiaoer\textbf{\hit@cthesistitleprefix\hit@title@csep\hit@ctitlecover} 386 | \end{center} 387 | } 388 | \parbox[b][6cm][t]{\textwidth}{ 389 | \begin{center}\songti\sanhao 390 | \renewcommand{\arraystretch}{2.1} 391 | \begin{tabular}{l@{\ \ }c} 392 | \textbf{\hit@bachelor@cmajortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csubject}}}\\ 393 | \textbf{\hit@bachelor@cstudenttitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cauthor}}}\\ 394 | \textbf{\hit@bachelor@cstudentidtitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cstudentid}}}\\ 395 | \ifhit@weihai % 威海校区特有 396 | \textbf{\hit@bachelor@cclass} & \underline{\makebox[6.1cm]{\textbf{\hit@cclassid}}}\\ 397 | \fi 398 | \textbf{\hit@bachelor@csupervisortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csupervisor}}}\\ 399 | \textbf{\hit@bachelor@cdatetitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cdate}}}\\ 400 | \end{tabular}\renewcommand{\arraystretch}{1} 401 | \end{center} 402 | } 403 | \vfill 404 | \ifhit@weihai 405 | \relax 406 | \else 407 | \hit@harbin@bachelor@schoolbottommark 408 | \fi 409 | } 410 | 411 | \newcommand{\hit@report@backpage@bachelor}{ 412 | \thispagestyle{empty} 413 | \noindent\parbox[t][6.5cm][t]{\textwidth}{\hit@bachelor@teachercomment} 414 | \noindent\parbox[b][6cm][t]{\textwidth}{\hit@bachelor@teachersign\underline{\makebox[3cm]{}}\hfill\hit@bachelor@checkdate\underline{\makebox[3cm]{}}} 415 | } 416 | 417 | \renewcommand\tableofcontents{% 418 | \thispagestyle{empty} 419 | \normalsize\@starttoc{toc} 420 | } 421 | 422 | \def\makecover{ 423 | \begin{titlepage} 424 | \ifhit@bachelor 425 | \hit@report@titlepage@bachelor 426 | \else 427 | \hit@report@titlepage@graduate 428 | \fi 429 | \clearpage 430 | \ifhit@toc 431 | \tableofcontents 432 | \clearpage 433 | \fi 434 | \end{titlepage} 435 | } 436 | \def\makebackcover{ 437 | \clearpage 438 | \hit@report@backpage@bachelor 439 | } 440 | 441 | \newcommand\bibstyle@numerical{\bibpunct{[}{]}{,}{s}{,}{\textsuperscript{,}}} 442 | \newcommand\bibstyle@inline{\bibpunct{[}{]}{,}{n}{,}{\hit@inline@sep}} 443 | 444 | \citestyle{numerical} 445 | \DeclareRobustCommand\inlinecite{\@inlinecite} 446 | \def\@inlinecite#1{\begingroup\citestyle{inline}\let\@cite\NAT@citenum\citep{#1}\endgroup} 447 | \let\onlinecite\inlinecite 448 | 449 | \renewenvironment{thebibliography}[1]{% 450 | \list{\@biblabel{\@arabic\c@enumiv}}% 451 | {\renewcommand{\makelabel}[1]{##1\hfill} 452 | \settowidth{\labelwidth}{\@biblabel{#1}} 453 | \setlength{\labelsep}{0.5em} 454 | \setlength{\itemindent}{0pt} 455 | \setlength{\leftmargin}{\labelsep+\labelwidth} 456 | \addtolength{\itemsep}{-0.8em} 457 | \usecounter{enumiv}% 458 | \let\p@enumiv\@empty 459 | \renewcommand\theenumiv{\@arabic\c@enumiv}}% 460 | \sloppy\frenchspacing 461 | \flushbottom 462 | \clubpenalty0 463 | \@clubpenalty \clubpenalty 464 | \widowpenalty0% 465 | \interlinepenalty-50% 466 | \sfcode`\.\@m} 467 | {\def\@noitemerr 468 | {\@latex@warning{Empty `thebibliography' environment}}% 469 | \endlist\frenchspacing} 470 | \AtEndOfClass{\input{hithesisart.cfg}} 471 | \AtEndOfClass{\sloppy} 472 | \endinput 473 | %% 474 | %% End of file `hithesisart.cls'. 475 | -------------------------------------------------------------------------------- /midterm/latexmkrc: -------------------------------------------------------------------------------- 1 | # vim: set ft=perl: 2 | @default_files = ('report.tex'); 3 | 4 | $pdf_mode = 1; 5 | $bibtex_use = 2; 6 | $recorder = 1; 7 | $clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx"; 8 | $pdflatex = "xelatex -file-line-error --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S"; 9 | $pdf_update_method = 0; 10 | -------------------------------------------------------------------------------- /midterm/reference.bib: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | @INPROCEEDINGS{cnproceed, 4 | author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, 5 | title = {武林高手从入门到精通}, 6 | booktitle = {第~$N$~次华山论剑}, 7 | year = 2006, 8 | address = {西安, 中国}, 9 | month = sep, 10 | language ="zh", 11 | } 12 | 13 | @ARTICLE{cnarticle, 14 | AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", 15 | TITLE = "论刘姥姥食量大如牛之现实意义", 16 | JOURNAL = "红楼梦杂谈", 17 | PAGES = "260-266", 18 | VOLUME = "224", 19 | YEAR = "1800", 20 | language ="zh", 21 | } 22 | 23 | 24 | @inbook{Lin1992, 25 | language ="zh", 26 | AUTHOR = "林来兴", 27 | TITLE = "空间控制技术", 28 | PUBLISHER = "宇航出版社", 29 | YEAR = "1992", 30 | Pages = "25-42", 31 | ADDRESS = "北京", 32 | } 33 | 34 | @book{xin1994, 35 | language ="zh", 36 | title={信息技术与信息服务国际研讨会论文集}, 37 | author={辛希孟 and 中国科学院文献信息中心 and 孟广均 and 信息学}, 38 | year={1994}, 39 | publisher={中国社会科学出版社}, 40 | pages={45-49}, 41 | address={北京}, 42 | typeoflit={C}, 43 | } 44 | 45 | @book{zhao1998, 46 | language ="zh", 47 | title={新时代的工业工程师}, 48 | author={赵耀东}, 49 | year={1998}, 50 | citedate = {1998-09-26}, 51 | address={台北}, 52 | publisher={天下文化出版社}, 53 | url={http://www.ie.nthu.edu.tw/info/ie.newie.htm(Big5)}, 54 | typeoflit={M/OL}, 55 | } 56 | 57 | @phdthesis{Chen1992, 58 | language ="zh", 59 | Author = {谌颖}, 60 | Title = {空间最优交会控制理论与方法研究}, 61 | ADDRESS = "哈尔滨", 62 | School = {哈尔滨工业大学}, 63 | Year = {1992}, 64 | pages= {8-13}, 65 | } 66 | 67 | @article{hithesis2017, 68 | title={Hi!Thesis!,Harbin Institue of Technology}, 69 | author={Yanshuo Chu}, 70 | journal={Github}, 71 | volume={001}, 72 | number={0001}, 73 | pages={000-999}, 74 | year={2017}, 75 | } 76 | -------------------------------------------------------------------------------- /midterm/report.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | % , 4 | % /\^/`\ 5 | % | \/ | CONGRATULATIONS! 6 | % | | | SPRING IS IN THE AIR! 7 | % \ \ / _ _ 8 | % '\\//' _{ ' }_ 9 | % || hithesis v3 { `.!.` } 10 | % || ',_/Y\_,' 11 | % || , dustincys {_,_} 12 | % |\ || |\ Email: yanshuoc@gmail.com | 13 | % | | || | | https://yanshuo.name (\| /) 14 | % | | || / / \| // 15 | % \ \||/ / https://github.com/dustincys/hithesis |// 16 | % `\\//` \\ \./ \\ / // \\./ \\ // \\ |/ / 17 | % ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 18 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 19 | \documentclass[toc=true,type=doctor,stage=midterm]{hithesisart} 20 | % 此处选项中不要有空格 21 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 22 | % 必填选项 23 | % type=doctor|master|bachelor 24 | % stage=opening|midterm 25 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 26 | % 选填选项(选填选项的缺省值已经尽可能满足了大多数需求,除非明确知道自己有什么 27 | % 需求) 28 | % campus=shenzhen|weihai|harbin 29 | % 含义:校区选项,默认harbin 30 | % fontset=windows|mac|ubuntu|fandol 31 | % 含义:前三个对应各自系统,fandol是开源字体。 32 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 33 | \usepackage{lipsum} % 填充文字用的包,不需要可以去掉。 34 | 35 | \graphicspath{{figures/}} 36 | 37 | \begin{document} 38 | 39 | \input{front/coverart} 40 | \makecover 41 | 42 | \input{body/midterm} 43 | 44 | \end{document} 45 | 46 | % Local Variables: 47 | % TeX-engine: xetex 48 | % End: 49 | -------------------------------------------------------------------------------- /opening/body/opening.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | % _ 4 | % _____ ____ _ _ __ _ __| |___ ___ 5 | % / -_) \ / _` | ' \| '_ \ / -_|_-< 6 | % \___/_\_\__,_|_|_|_| .__/_\___/__/ 7 | % |_| 8 | % _ _ _ _ 9 | % | |__ _ _ __| |_ _ __| |_(_)_ _ __ _ _ ___ 10 | % | '_ \ || | / _` | || (_-< _| | ' \/ _| || (_-< 11 | % |_.__/\_, | \__,_|\_,_/__/\__|_|_||_\__|\_, /__/ 12 | % |__/ |__/ 13 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 14 | \section{课题来源及研究的目的和意义} 15 | \subsection{课题来源或研究背景} 16 | \subsection{研究的目的及意义} 17 | \section{国内外在该方向的研究现状及分析} 18 | \subsection{国外研究现状} 19 | \subsection{国内研究现状} 20 | \subsection{国内外文献综述的简析} 21 | (综合评述:国内外研究取得的成果,存在的不足或有待深入研究的问题) 22 | \section{前期的理论研究与试验论证工作的结果} 23 | \section{学位论文的主要研究内容、实施方案及其可行性论证} 24 | \subsection{主要研究内容} 25 | (撰写宜使用将来时态,不能只列出论文目录来代替对研究内容的分析论述) 26 | \subsection{实施方案及其可行性论证} 27 | \section{论文进度安排,预期达到的目标} 28 | \subsection{进度安排} 29 | \subsection{预期达到的目标} 30 | \section{学位论文预期创新点} 31 | \section{为完成课题已具备和所需的条件、外协计划及经费} 32 | \section{预计研究过程中可能遇到的困难、问题,以及解决的途径} 33 | \section{主要参考文献} 34 | \bibliographystyle{hithesis} 35 | \bibliography{reference} 36 | 37 | % Local Variables: 38 | % TeX-master: "../report" 39 | % TeX-engine: xetex 40 | % End: -------------------------------------------------------------------------------- /opening/front/coverart.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \hitsetup{ 4 | %****************************** 5 | % 注意: 6 | % 1. 配置里面不要出现空行 7 | % 2. 不需要的配置信息可以删除 8 | %****************************** 9 | ctitlecover={局部多孔质气体静压轴承关键技术的研究},%放在封面中使用,自由断行 10 | % ctitleone={局部多孔质气体静压}, 11 | % ctitletwo={轴承关键技术的研究}, 12 | caffil={仪器科学与工程学院}, 13 | csubject={仪器科学与技术}, 14 | cauthor={于冬梅}, 15 | cstudentid={9527}, 16 | cclassid={9527}, 17 | csupervisor={某某某教授}, 18 | % 日期自动使用当前时间,若需指定按如下方式修改: 19 | %cdate={盘古开天地} 20 | % cenrolldate={公元2020年} 21 | } 22 | -------------------------------------------------------------------------------- /opening/hithesisart.cfg: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesisart.cfg', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `artcfg') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% This is the configuration file of the hithesis package with LaTeX2e. 24 | %% 25 | \ProvidesFile{hithesisart.cfg} 26 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 27 | \theorembodyfont{\normalfont} 28 | \theoremheaderfont{\normalfont\heiti} 29 | \theoremsymbol{\ensuremath{\square}} 30 | \newtheorem*{proof}{证明} 31 | \theoremstyle{plain} 32 | \theoremsymbol{} 33 | \theoremseparator{} 34 | \newtheorem{assumption}{假设} 35 | \newtheorem{definition}{定义} 36 | \newtheorem{proposition}{命题} 37 | \newtheorem{lemma}{引理} 38 | \newtheorem{theorem}{定理} 39 | \newtheorem{axiom}{公理} 40 | \newtheorem{corollary}{推论} 41 | \newtheorem{exercise}{练习} 42 | \newtheorem{example}{例} 43 | \newtheorem{remark}{注释} 44 | \newtheorem{problem}{问题} 45 | \newtheorem{conjecture}{猜想} 46 | \ctexset{% 47 | contentsname={目\hspace{\ccwd}录}, 48 | figurename=图, 49 | tablename=表 50 | } 51 | \let\CJK@todaysave=\today 52 | \def\CJK@todaysmall@short{\the\year 年 \the\month 月} 53 | \def\CJK@todaysmall{\the\year 年 \the\month 月 \the\day 日} 54 | \def\CJK@todaybig@short{\zhdigits{\the\year}年\zhnumber{\the\month}月} 55 | \def\CJK@todaybig{\zhdigits{\the\year}年\zhnumber{\the\month}月\zhnumber{\the\day}日} 56 | \def\CJK@today{\CJK@todaysmall} 57 | \renewcommand\today{\CJK@today} 58 | \newcommand\CJKtoday[1][1]{% 59 | \ifcase#1\def\CJK@today{\CJK@todaysave} 60 | \or\def\CJK@today{\CJK@todaysmall} 61 | \or\def\CJK@today{\CJK@todaybig} 62 | \fi} 63 | \cdate{\ifhit@bachelor\CJK@todaysmall\else\CJK@todaysmall@short\fi} 64 | \ifhit@doctor 65 | \gdef\hit@cxueweishort{博} 66 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 67 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 68 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 69 | \fi 70 | \ifhit@master 71 | \gdef\hit@cxueweishort{硕} 72 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 73 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 74 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 75 | \fi 76 | \ifhit@bachelor 77 | \gdef\hit@cxuewei{学士} 78 | \fi 79 | \def\hit@stage@opening{开题} 80 | \def\hit@stage@midterm{中期} 81 | \def\hit@stage@doctype{报告} 82 | \def\hit@bachelor@cxuewei{本科} 83 | \def\hit@bachelor@cthesisname{毕业设计(论文)} 84 | \def\hit@bachelor@cmajortitle{专\hspace{2\ccwd}业} 85 | \def\hit@bachelor@cstudenttitle{学\hspace{2\ccwd}生} 86 | \def\hit@bachelor@cstudentidtitle{学\hspace{2\ccwd}号} 87 | \def\hit@bachelor@cclass{班\hspace{2\ccwd}号} 88 | \def\hit@bachelor@caffiltitle{院(系)} 89 | \def\hit@bachelor@caffiltitlesz{学院} 90 | \def\hit@bachelor@caffiltitlewh{学院} 91 | \def\hit@bachelor@csupervisortitle{指导教师} 92 | \def\hit@bachelor@cdatetitle{日\hspace{2\ccwd}期} 93 | \newcommand{\hit@bachelor@teachercomment}{指导教师评语:} 94 | \newcommand{\hit@bachelor@teachersign}{指导教师签字:} 95 | \newcommand{\hit@bachelor@checkdate}{检查日期:} 96 | \def\hit@cthesistitleprefix{题\hspace{\ccwd}目} 97 | \def\hit@graduate@caffiltitle{院\hspace{3\ccwd}(系)} 98 | \def\hit@graduate@cmajortitle{学\hspace{4\ccwd}科} 99 | \def\hit@graduate@supervisor{导\hspace{4\ccwd}师} 100 | \def\hit@graduate@studenttitle{研\hspace{1.5\ccwd}究\hspace{1.5\ccwd}生} 101 | \def\hit@graduate@studentid{学\hspace{4\ccwd}号} 102 | \def\hit@graduate@datetitle{\ifhit@opening\hit@stage@opening 103 | \else\ifhit@midterm\hit@stage@midterm\fi\fi\hit@stage@doctype 日期} 104 | \def\hit@graduate@enrolldate{入\hspace{0.6666666\ccwd}学\hspace{0.6666666\ccwd}时\hspace{0.6666666\ccwd}间} 105 | \def\hit@graduate@thesistitle{论\hspace{0.6666666\ccwd}文\hspace{0.6666666\ccwd}题\hspace{0.6666666\ccwd}目} 106 | \def\hit@graduate@cafflimajor{学\hspace{0.6666666\ccwd}科\hspace{0.6666666\ccwd}专\hspace{0.6666666\ccwd}业} 107 | \def\hit@cschoolname{哈尔滨工业大学} 108 | \def\hit@shenzhencampus{(深圳)} 109 | \def\hit@cthesisname{学位论文} 110 | \def\hit@cthesismidtermcheck{博\hspace{.125\ccwd}士\hspace{.125\ccwd}学\hspace{.125\ccwd}位\hspace{.125\ccwd}论\hspace{.125\ccwd}文\hspace{.125\ccwd}中\hspace{.125\ccwd}期\hspace{.125\ccwd}检\hspace{.125\ccwd}查\hspace{.125\ccwd}报\hspace{.125\ccwd}告} 111 | \def\hit@weihaicampus{(威海)} 112 | \def\hit@cschoolnametitle{授予学位单位} 113 | \def\hit@cdatetitle{答辩日期} 114 | \def\hit@caffiltitle{所在单位} 115 | \def\hit@csubjecttitle{学科} 116 | \def\hit@cdegreetitle{申请学位} 117 | \def\hit@csupervisortitle{导师} 118 | \def\hit@cassosupervisortitle{副导师} 119 | \def\hit@ccosupervisortitle{联合导师} 120 | \def\hit@title@csep{:} 121 | \def\hit@natclassifiedindextitle{国内图书分类号} 122 | \def\hit@internatclassifiedindextitle{国际图书分类号} 123 | \def\hit@secretlevel{密级} 124 | \def\hit@schoolidtitle{学校代码} 125 | \def\hit@schoolid{10213} 126 | \newcommand{\hit@authorsig}{作者签名:} 127 | \newcommand{\hit@teachersig}{导师签名:} 128 | \newcommand{\hit@frontdate}{日期:} 129 | \newcommand{\hit@authorizationtitle}{学位论文使用权限} 130 | \newcommand{\hit@shenzhen@schoolbottommark}{ 131 | \begin{center} 132 | \songti\sanhao\textbf{哈工大(深圳)制} 133 | \end{center} 134 | \begin{center} 135 | \songti\sanhao\textbf{二〇一二年三月} 136 | \end{center} 137 | } 138 | \newcommand{\hit@harbin@schoolbottommark}{ 139 | \begin{center} 140 | \songti\sanhao\textbf{研究生院制} 141 | \end{center} 142 | } 143 | \newcommand{\hit@harbin@bachelor@schoolbottommark}{ 144 | \begin{center} 145 | \lishu\xiaoer\textbf{哈尔滨工业大学教务处制} 146 | \end{center} 147 | } 148 | \newcommand{\hit@shenzhen@doctor@midterm@note}{ 149 | \thispagestyle{empty} 150 | {\begin{center} 151 | \songti\sanhao\textbf{说\hspace{4\ccwd}明} 152 | \end{center} 153 | } 154 | \vspace{1cm}\songti\sihao[2] 155 | \begin{enumerate}[itemsep=-4bp] 156 | \item 博士研究生学位论文中期报告一般在入学后的第五学期末完成。 157 | \item 此报告由学生本人填写,请导师签字后提交一份给检查小组。答辩结束后由检查组长签署意见。 158 | \item 报告经中期报告检查组长签字同意后,由学科部保存,以备论文答辩时参考。研究生院学生培养处将对研究生的学位论文中期报告进行抽查。 159 | \item 报告统一用A4纸打印。 160 | \end{enumerate} 161 | } 162 | \newcommand{\hit@datefill}{\hspace{2.5em}年\hspace{1.5em}月\hspace{1.5em}日} 163 | \def\hit@hi{嗨!thesis} 164 | \def\hithesis{\textsc{hi}\-\textsc{Thesis}} 165 | \def\hit{哈尔滨工业大学} 166 | \endinput 167 | %% 168 | %% End of file `hithesisart.cfg'. 169 | -------------------------------------------------------------------------------- /opening/hithesisart.cls: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesisart.cls', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `artcls') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% To produce the documentation run the original source files ending with `.dtx' 24 | %% through LaTeX. 25 | %% 26 | \NeedsTeXFormat{LaTeX2e}[1999/12/01] 27 | \ProvidesClass{hithesisart} 28 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 29 | \RequirePackage{ifthen} 30 | \RequirePackage{kvoptions} 31 | \SetupKeyvalOptions{ 32 | family=hit, 33 | prefix=hit@, 34 | setkeys=\kvsetkeys} 35 | 36 | \newif\ifhit@bachelor 37 | \newif\ifhit@master 38 | \newif\ifhit@doctor 39 | \define@key{hit}{type}{% 40 | \hit@bachelorfalse 41 | \hit@masterfalse 42 | \hit@doctorfalse 43 | \expandafter\csname hit@#1true\endcsname} 44 | 45 | \newif\ifhit@shenzhen 46 | \newif\ifhit@weihai 47 | \newif\ifhit@harbin 48 | \define@key{hit}{campus}{% 49 | \hit@shenzhenfalse 50 | \hit@weihaifalse 51 | \hit@harbinfalse 52 | \expandafter\csname hit@#1true\endcsname} 53 | \ifhit@weihai\relax\else 54 | \ifhit@shenzhen\relax\else 55 | \hit@harbintrue 56 | \fi 57 | \fi 58 | 59 | \newif\ifhit@opening 60 | \newif\ifhit@midterm 61 | \define@key{hit}{stage}{% 62 | \hit@openingfalse 63 | \hit@midtermfalse 64 | \expandafter\csname hit@#1true\endcsname} 65 | 66 | \DeclareBoolOption[true]{raggedbottom} 67 | \DeclareBoolOption[false]{pifootnote} 68 | \DeclareBoolOption[false]{debug} 69 | \DeclareBoolOption[true]{toc} 70 | \DeclareBoolOption[true]{newtxmath} 71 | 72 | \DeclareStringOption{fontset} 73 | 74 | \DeclareDefaultOption{\PassOptionsToClass{\CurrentOption}{ctexart}} 75 | 76 | \ProcessKeyvalOptions* 77 | \PassOptionsToPackage{no-math}{fontspec} 78 | 79 | \ifhit@bachelor\relax\else 80 | \ifhit@master\relax\else 81 | \ifhit@doctor\relax\else 82 | \ClassError{hithesisart}% 83 | { 84 | \MessageBreak Please specify thesis type in option: 85 | \MessageBreak type=[bachelor | master | doctor] 86 | } 87 | \fi 88 | \fi 89 | \fi 90 | 91 | \ifhit@opening\relax\else 92 | \ifhit@midterm\relax\else 93 | \ClassError{hithesisart}% 94 | { 95 | \MessageBreak Please specify stage in option: 96 | \MessageBreak stage= 97 | } 98 | \fi 99 | \fi 100 | 101 | \ifhit@doctor 102 | \ifhit@midterm 103 | \ifhit@shenzhen 104 | \ClassError{hithesisart}% 105 | { 106 | \MessageBreak This document class does not support midterm report for doctor 107 | in shenzhen campus. 108 | \MessageBreak please use \string\documentclass{hithesisartplus} 109 | } 110 | \fi 111 | \fi 112 | \fi 113 | 114 | \ifthenelse% 115 | {\equal{\hit@fontset}{}}% 116 | {% 117 | \PassOptionsToPackage{AutoFakeBold=2}{xeCJK} 118 | }% 119 | {% 120 | \ifthenelse% 121 | {\equal{\hit@fontset}{siyuan}}% 122 | {\relax}% 123 | {% 124 | \PassOptionsToPackage{AutoFakeBold=2}{xeCJK} 125 | }% 126 | \PassOptionsToClass{fontset=\hit@fontset}{ctexart} 127 | }% 128 | \LoadClass[a4paper,UTF8,zihao=-4,scheme=plain]{ctexart} 129 | 130 | \RequirePackage{etoolbox} 131 | \RequirePackage{ifxetex} 132 | \ifxetex 133 | \else 134 | \ClassError{hithesis}% 135 | {Please use: \MessageBreak 136 | xelatex}{} 137 | \fi 138 | \RequirePackage{xparse} 139 | \RequirePackage{amsmath} 140 | \RequirePackage[amsmath,thmmarks,hyperref]{ntheorem} 141 | \RequirePackage{amssymb} 142 | \RequirePackage[defaultsups]{newtxtext} 143 | \ifhit@newtxmath 144 | \RequirePackage{newtxmath} 145 | \fi 146 | \RequirePackage{courier} 147 | \RequirePackage{graphicx} 148 | \RequirePackage{pdfpages} 149 | \includepdfset{fitpaper=true} 150 | \RequirePackage{enumitem} %使用enumitem宏包,改变列表项的格式 151 | \RequirePackage{environ} 152 | \ifhit@raggedbottom 153 | \RequirePackage[bottom,perpage,hang]{footmisc} 154 | \raggedbottom 155 | \else 156 | \RequirePackage[perpage,hang]{footmisc} 157 | \fi 158 | \ifhit@pifootnote 159 | \RequirePackage{pifont} 160 | \fi 161 | \RequirePackage{xeCJKfntef} 162 | 163 | \RequirePackage{longtable} 164 | \RequirePackage{booktabs} 165 | \RequirePackage[sort&compress,numbers]{natbib} 166 | \RequirePackage{hyperref} 167 | \hypersetup{% 168 | CJKbookmarks=true, 169 | linktoc=all, 170 | bookmarksnumbered=true, 171 | bookmarksopen=true, 172 | bookmarksopenlevel=1, 173 | breaklinks=true, 174 | colorlinks=false, 175 | plainpages=false, 176 | pdfborder=0 0 0} 177 | \urlstyle{same} 178 | 179 | \ifhit@debug 180 | \RequirePackage[showframe]{geometry} 181 | \else 182 | \RequirePackage{geometry} 183 | \fi 184 | 185 | \geometry{%根据PlutoThesis 原版定义而来 186 | a4paper, % 210 * 297mm 187 | hcentering, 188 | ignoreall, 189 | nomarginpar, 190 | centering, 191 | text={150true mm,236true mm}, 192 | left=30true mm, 193 | head=5true mm, 194 | headsep=2true mm, 195 | footskip=0true mm, 196 | foot=5.2true mm 197 | } 198 | 199 | \ifhit@debug% 200 | \RequirePackage{layout} 201 | \RequirePackage{layouts} 202 | \RequirePackage{lineno} 203 | \fi 204 | 205 | \RequirePackage{fancyhdr} 206 | \RequirePackage{tabularx} 207 | \RequirePackage{varwidth} 208 | \RequirePackage{changepage} 209 | \RequirePackage{multicol} 210 | \RequirePackage[below]{placeins}%允许上一个section的浮动图形出现在下一个section的开始部分,还提供\FloatBarrier命令,使所有未处理的浮动图形立即被处理 211 | \RequirePackage{flafter} % 使得所有浮动体不能被放置在其浮动环境之前,以免浮动体在引述它的文本之前出现. 212 | \RequirePackage{multirow} %使用Multirow宏包,使得表格可以合并多个row格 213 | \RequirePackage{subfigure}%支持子图 %centerlast 设置最后一行是否居中 214 | \RequirePackage[subfigure]{ccaption} %支持双语标题 215 | \RequirePackage{xltxtra} 216 | 217 | 218 | \renewcommand\normalsize{% 219 | \@setfontsize\normalsize{12bp}{20.50398bp}% 220 | \abovedisplayskip=8pt 221 | \abovedisplayshortskip=8pt 222 | \belowdisplayskip=\abovedisplayskip 223 | \belowdisplayshortskip=\abovedisplayshortskip} 224 | 225 | \def\hit@def@fontsize#1#2{% 226 | \expandafter\newcommand\csname #1\endcsname[1][1.3]{% 227 | \fontsize{#2}{##1\dimexpr #2}\selectfont}} 228 | \hit@def@fontsize{dachu}{58bp} 229 | \hit@def@fontsize{chuhao}{42bp} 230 | \hit@def@fontsize{xiaochu}{36bp} 231 | \hit@def@fontsize{yihao}{26bp} 232 | \hit@def@fontsize{xiaoyi}{24bp} 233 | \hit@def@fontsize{erhao}{22bp} 234 | \hit@def@fontsize{xiaoer}{18bp} 235 | \hit@def@fontsize{sanhao}{16bp} 236 | \hit@def@fontsize{xiaosan}{15bp} 237 | \hit@def@fontsize{sihao}{14bp} 238 | \hit@def@fontsize{banxiaosi}{13bp} 239 | \hit@def@fontsize{xiaosi}{12bp} 240 | \hit@def@fontsize{dawu}{11bp} 241 | \hit@def@fontsize{wuhao}{10.5bp} 242 | \hit@def@fontsize{xiaowu}{9bp} 243 | \hit@def@fontsize{liuhao}{7.5bp} 244 | \hit@def@fontsize{xiaoliu}{6.5bp} 245 | \hit@def@fontsize{qihao}{5.5bp} 246 | \hit@def@fontsize{bahao}{5bp} 247 | 248 | 249 | \ctexset{% 250 | section={ 251 | afterindent=true, 252 | beforeskip={7.5bp},%上下空0.5行 253 | afterskip={7.5bp}, 254 | format={\heiti\xiaosan[1.25]}, 255 | aftername=\enspace, 256 | fixskip=true, 257 | break={}, 258 | }, 259 | subsection={ 260 | afterindent=true, 261 | beforeskip={7bp}, 262 | afterskip={7bp}, 263 | format={\heiti\sihao[1.25]}, 264 | aftername=\enspace, 265 | fixskip=true, 266 | break={}, 267 | }, 268 | subsubsection={ 269 | afterindent=true, 270 | beforeskip={3bp}, 271 | afterskip={3bp}, 272 | format={\heiti\normalsize}, 273 | aftername=\enspace, 274 | fixskip=true, 275 | break={}, 276 | }, 277 | paragraph/afterindent=true, 278 | subparagraph/afterindent=true 279 | } 280 | 281 | \def\hit@def@term#1{% 282 | \define@key{hit}{#1}{\csname #1\endcsname{##1}} 283 | \expandafter\gdef\csname #1\endcsname##1{% 284 | \expandafter\gdef\csname hit@#1\endcsname{##1}} 285 | \csname #1\endcsname{}} 286 | 287 | \hit@def@term{ctitlecover} %中文标题封面 288 | \hit@def@term{csubject} 289 | \hit@def@term{cauthor} 290 | \hit@def@term{cstudentid} 291 | \hit@def@term{cclassid} 292 | \hit@def@term{caffil} 293 | \hit@def@term{csupervisor} 294 | \hit@def@term{cdate} 295 | 296 | \def\hit@parse@keywords#1{ 297 | \define@key{hit}{#1}{\csname #1\endcsname{##1}} 298 | \expandafter\gdef\csname hit@#1\endcsname{} 299 | \expandafter\gdef\csname #1\endcsname##1{ 300 | \@for\reserved@a:=##1\do{ 301 | \expandafter\ifx\csname hit@#1\endcsname\@empty\else 302 | \expandafter\g@addto@macro\csname hit@#1\endcsname{% 303 | \ignorespaces\csname hit@#1@separator\endcsname} 304 | \fi 305 | \expandafter\expandafter\expandafter\g@addto@macro% 306 | \expandafter\csname hit@#1\expandafter\endcsname\expandafter{\reserved@a}}}} 307 | 308 | \def\hitsetup{\kvsetkeys{hit}} 309 | 310 | \newcommand{\hit@report@titlepage@graduate}{ 311 | \ifthenelse% 312 | {\equal{\hit@fontset}{siyuan}}% 313 | {\xiaosi[1]\vspace*{0.65em}}% 314 | {\xiaosi[1]\textcolor[rgb]{1,1,1}{\songti{\hit@hi}}}% 315 | \vspace*{10mm} 316 | \begin{center} 317 | \kaishu\xiaoer\textbf{\hit@cschoolname\ifhit@shenzhen\hit@shenzhencampus\fi} 318 | \end{center} 319 | \vspace{5mm} 320 | \begin{center} 321 | \songti\erhao\textbf{\hit@cxuewei\hit@cthesisname 322 | \ifhit@opening 323 | \hit@stage@opening 324 | \else 325 | \ifhit@midterm 326 | \hit@stage@midterm 327 | \fi 328 | \fi 329 | \hit@stage@doctype 330 | } 331 | \end{center} 332 | \vspace{10mm} 333 | \parbox[t][3cm][t]{\textwidth}{ 334 | \begin{center} 335 | \songti\xiaoer\textbf{\hit@cthesistitleprefix\hit@title@csep\hit@ctitlecover} 336 | \end{center} 337 | } 338 | \parbox[b][3cm][t]{\textwidth}{ 339 | \begin{center}\songti\sanhao 340 | \renewcommand{\arraystretch}{2.1} 341 | \begin{tabular}{l@{\ \ }c} 342 | \textbf{\hit@graduate@caffiltitle} & \underline{\makebox[6.1cm]{\textbf{\hit@caffil}}}\\ 343 | \textbf{\hit@graduate@cmajortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csubject}}}\\ 344 | \textbf{\hit@graduate@supervisor} & \underline{\makebox[6.1cm]{\textbf{\hit@csupervisor}}}\\ 345 | \textbf{\hit@graduate@studenttitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cauthor}}}\\ 346 | \textbf{\hit@graduate@studentid} & \underline{\makebox[6.1cm]{\textbf{\hit@cstudentid}}}\\ 347 | \textbf{\hit@graduate@datetitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cdate}}}\\ 348 | \end{tabular}\renewcommand{\arraystretch}{1} 349 | \end{center} 350 | } 351 | \vfill 352 | \ifhit@harbin 353 | \hit@harbin@schoolbottommark 354 | \else 355 | \ifhit@shenzhen 356 | \hit@shenzhen@schoolbottommark 357 | \fi 358 | \fi 359 | } 360 | 361 | \newcommand{\hit@report@titlepage@bachelor}{ 362 | \ifthenelse% 363 | {\equal{\hit@fontset}{siyuan}}% 364 | {\xiaosi[1]\vspace*{0.65em}}% 365 | {\xiaosi[1]\textcolor[rgb]{1,1,1}{\songti{\hit@hi}}}% 366 | \vspace*{10mm} 367 | \begin{center} 368 | \includegraphics[width=6.2cm]{hitlogo} 369 | \end{center} 370 | \begin{center} 371 | \songti\xiaoyi\textbf{\hit@bachelor@cthesisname 372 | \ifhit@opening 373 | \hit@stage@opening 374 | \else 375 | \ifhit@midterm 376 | \hit@stage@midterm 377 | \fi 378 | \fi 379 | \hit@stage@doctype 380 | } 381 | \end{center} 382 | \vspace{15mm} 383 | \parbox[t][6.5cm][t]{\textwidth}{ 384 | \begin{center} 385 | \songti\xiaoer\textbf{\hit@cthesistitleprefix\hit@title@csep\hit@ctitlecover} 386 | \end{center} 387 | } 388 | \parbox[b][6cm][t]{\textwidth}{ 389 | \begin{center}\songti\sanhao 390 | \renewcommand{\arraystretch}{2.1} 391 | \begin{tabular}{l@{\ \ }c} 392 | \textbf{\hit@bachelor@cmajortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csubject}}}\\ 393 | \textbf{\hit@bachelor@cstudenttitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cauthor}}}\\ 394 | \textbf{\hit@bachelor@cstudentidtitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cstudentid}}}\\ 395 | \ifhit@weihai % 威海校区特有 396 | \textbf{\hit@bachelor@cclass} & \underline{\makebox[6.1cm]{\textbf{\hit@cclassid}}}\\ 397 | \fi 398 | \textbf{\hit@bachelor@csupervisortitle} & \underline{\makebox[6.1cm]{\textbf{\hit@csupervisor}}}\\ 399 | \textbf{\hit@bachelor@cdatetitle} & \underline{\makebox[6.1cm]{\textbf{\hit@cdate}}}\\ 400 | \end{tabular}\renewcommand{\arraystretch}{1} 401 | \end{center} 402 | } 403 | \vfill 404 | \ifhit@weihai 405 | \relax 406 | \else 407 | \hit@harbin@bachelor@schoolbottommark 408 | \fi 409 | } 410 | 411 | \newcommand{\hit@report@backpage@bachelor}{ 412 | \thispagestyle{empty} 413 | \noindent\parbox[t][6.5cm][t]{\textwidth}{\hit@bachelor@teachercomment} 414 | \noindent\parbox[b][6cm][t]{\textwidth}{\hit@bachelor@teachersign\underline{\makebox[3cm]{}}\hfill\hit@bachelor@checkdate\underline{\makebox[3cm]{}}} 415 | } 416 | 417 | \renewcommand\tableofcontents{% 418 | \thispagestyle{empty} 419 | \normalsize\@starttoc{toc} 420 | } 421 | 422 | \def\makecover{ 423 | \begin{titlepage} 424 | \ifhit@bachelor 425 | \hit@report@titlepage@bachelor 426 | \else 427 | \hit@report@titlepage@graduate 428 | \fi 429 | \clearpage 430 | \ifhit@toc 431 | \tableofcontents 432 | \clearpage 433 | \fi 434 | \end{titlepage} 435 | } 436 | \def\makebackcover{ 437 | \clearpage 438 | \hit@report@backpage@bachelor 439 | } 440 | 441 | \newcommand\bibstyle@numerical{\bibpunct{[}{]}{,}{s}{,}{\textsuperscript{,}}} 442 | \newcommand\bibstyle@inline{\bibpunct{[}{]}{,}{n}{,}{\hit@inline@sep}} 443 | 444 | \citestyle{numerical} 445 | \DeclareRobustCommand\inlinecite{\@inlinecite} 446 | \def\@inlinecite#1{\begingroup\citestyle{inline}\let\@cite\NAT@citenum\citep{#1}\endgroup} 447 | \let\onlinecite\inlinecite 448 | 449 | \renewenvironment{thebibliography}[1]{% 450 | \list{\@biblabel{\@arabic\c@enumiv}}% 451 | {\renewcommand{\makelabel}[1]{##1\hfill} 452 | \settowidth{\labelwidth}{\@biblabel{#1}} 453 | \setlength{\labelsep}{0.5em} 454 | \setlength{\itemindent}{0pt} 455 | \setlength{\leftmargin}{\labelsep+\labelwidth} 456 | \addtolength{\itemsep}{-0.8em} 457 | \usecounter{enumiv}% 458 | \let\p@enumiv\@empty 459 | \renewcommand\theenumiv{\@arabic\c@enumiv}}% 460 | \sloppy\frenchspacing 461 | \flushbottom 462 | \clubpenalty0 463 | \@clubpenalty \clubpenalty 464 | \widowpenalty0% 465 | \interlinepenalty-50% 466 | \sfcode`\.\@m} 467 | {\def\@noitemerr 468 | {\@latex@warning{Empty `thebibliography' environment}}% 469 | \endlist\frenchspacing} 470 | \AtEndOfClass{\input{hithesisart.cfg}} 471 | \AtEndOfClass{\sloppy} 472 | \endinput 473 | %% 474 | %% End of file `hithesisart.cls'. 475 | -------------------------------------------------------------------------------- /opening/latexmkrc: -------------------------------------------------------------------------------- 1 | # vim: set ft=perl: 2 | @default_files = ('report.tex'); 3 | 4 | $pdf_mode = 1; 5 | $bibtex_use = 2; 6 | $recorder = 1; 7 | $clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx"; 8 | $pdflatex = "xelatex -file-line-error --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S"; 9 | $pdf_update_method = 0; 10 | -------------------------------------------------------------------------------- /opening/reference.bib: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | @INPROCEEDINGS{cnproceed, 4 | author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, 5 | title = {武林高手从入门到精通}, 6 | booktitle = {第~$N$~次华山论剑}, 7 | year = 2006, 8 | address = {西安, 中国}, 9 | month = sep, 10 | language ="zh", 11 | } 12 | 13 | @ARTICLE{cnarticle, 14 | AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", 15 | TITLE = "论刘姥姥食量大如牛之现实意义", 16 | JOURNAL = "红楼梦杂谈", 17 | PAGES = "260-266", 18 | VOLUME = "224", 19 | YEAR = "1800", 20 | language ="zh", 21 | } 22 | 23 | 24 | @inbook{Lin1992, 25 | language ="zh", 26 | AUTHOR = "林来兴", 27 | TITLE = "空间控制技术", 28 | PUBLISHER = "宇航出版社", 29 | YEAR = "1992", 30 | Pages = "25-42", 31 | ADDRESS = "北京", 32 | } 33 | 34 | @book{xin1994, 35 | language ="zh", 36 | title={信息技术与信息服务国际研讨会论文集}, 37 | author={辛希孟 and 中国科学院文献信息中心 and 孟广均 and 信息学}, 38 | year={1994}, 39 | publisher={中国社会科学出版社}, 40 | pages={45-49}, 41 | address={北京}, 42 | typeoflit={C}, 43 | } 44 | 45 | @book{zhao1998, 46 | language ="zh", 47 | title={新时代的工业工程师}, 48 | author={赵耀东}, 49 | year={1998}, 50 | citedate = {1998-09-26}, 51 | address={台北}, 52 | publisher={天下文化出版社}, 53 | url={http://www.ie.nthu.edu.tw/info/ie.newie.htm(Big5)}, 54 | typeoflit={M/OL}, 55 | } 56 | 57 | @phdthesis{Chen1992, 58 | language ="zh", 59 | Author = {谌颖}, 60 | Title = {空间最优交会控制理论与方法研究}, 61 | ADDRESS = "哈尔滨", 62 | School = {哈尔滨工业大学}, 63 | Year = {1992}, 64 | pages= {8-13}, 65 | } 66 | 67 | @article{hithesis2017, 68 | title={Hi!Thesis!,Harbin Institue of Technology}, 69 | author={Yanshuo Chu}, 70 | journal={Github}, 71 | volume={001}, 72 | number={0001}, 73 | pages={000-999}, 74 | year={2017}, 75 | } 76 | -------------------------------------------------------------------------------- /opening/report.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | % , 4 | % /\^/`\ 5 | % | \/ | CONGRATULATIONS! 6 | % | | | SPRING IS IN THE AIR! 7 | % \ \ / _ _ 8 | % '\\//' _{ ' }_ 9 | % || hithesis v3 { `.!.` } 10 | % || ',_/Y\_,' 11 | % || , dustincys {_,_} 12 | % |\ || |\ Email: yanshuoc@gmail.com | 13 | % | | || | | https://yanshuo.name (\| /) 14 | % | | || / / \| // 15 | % \ \||/ / https://github.com/dustincys/hithesis |// 16 | % `\\//` \\ \./ \\ / // \\./ \\ // \\ |/ / 17 | % ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 18 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 19 | \documentclass[toc=true,type=doctor,stage=opening]{hithesisart} 20 | % 此处选项中不要有空格 21 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 22 | % 必填选项 23 | % type=doctor|master|bachelor 24 | % stage=opening|midterm 25 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 26 | % 选填选项(选填选项的缺省值已经尽可能满足了大多数需求,除非明确知道自己有什么 27 | % 需求) 28 | % campus=shenzhen|weihai|harbin 29 | % 含义:校区选项,默认harbin 30 | % fontset=windows|mac|ubuntu|fandol 31 | % 含义:前三个对应各自系统,fandol是开源字体。 32 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 33 | 34 | \graphicspath{{figures/}} 35 | 36 | \begin{document} 37 | 38 | \input{front/coverart.tex} 39 | \makecover 40 | 41 | \input{body/opening} 42 | 43 | \end{document} 44 | 45 | % Local Variables: 46 | % TeX-engine: xetex 47 | % End: 48 | -------------------------------------------------------------------------------- /thesis/back/acknowledgements.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{acknowledgements} 3 | 衷心感谢导师~XXX~教授对本人的精心指导。他的言传身教将使我终生受益。 4 | 5 | …… 6 | 7 | 感谢哈工大\LaTeX\ 论文模板\hithesis\ ! 8 | 9 | \end{acknowledgements} 10 | -------------------------------------------------------------------------------- /thesis/back/appA.tex: -------------------------------------------------------------------------------- 1 | % -*-coding: utf-8 -*- 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | \chapter{带章节的附录}[Full Appendix]% 4 | 完整的附录内容,包含章节,公式,图表等 5 | 6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | \section{附录节的内容}[Section in Appendix] 8 | 这是附录的节的内容 9 | 10 | 附录中图的示例: 11 | \begin{figure}[htbp] 12 | \centering 13 | \includegraphics[width = 0.4\textwidth]{golfer} 14 | %\bicaption[golfer5]{}{\xiaosi[0]打高尔夫球的人}{Fig.$\!$}{The person playing golf}\vspace{-1em} 15 | \caption{\xiaosi[0]打高尔夫球的人} 16 | \end{figure} 17 | 18 | 附录中公式的示例: 19 | \begin{align} 20 | a & = b \times c \\ 21 | E & = m c^2 22 | \label{eq} 23 | \end{align} 24 | 25 | \chapter{这个星球上最好的免费Linux软件列表}[List of the Best Linux Software in our Planet] 26 | \section{系统} 27 | 28 | \href{http://fvwm.org/}{FVWM 自从上世纪诞生以来,此星球最强大的窗口管理器。} 29 | 推荐基于FVWM的桌面设计hifvwm:\href{https://github.com/dustincys/hifvwm}{https://github.com/dustincys/hifvwm}。 30 | 31 | \subsection{hifvwm的优点} 32 | 33 | \begin{enumerate} 34 | \item 即使打开上百个窗口也不会“蒙圈”。计算机性能越来越强大,窗口任务的管理必须要升级到打怪兽级别。 35 | \item 自动同步Bing搜索主页的壁纸。每次电脑开机,午夜零点自动更新,用户 36 | 也可以手动更新,从此审美再也不疲劳。 37 | \item 切换窗口自动聚焦到最上面的窗口。使用键盘快捷键切换窗口时候,减少 38 | 操作过程,自动聚焦到目标窗口。这一特性是虚拟窗口必须的人性化设 39 | 计。 40 | \item 类似window右下角的功能的最小化窗口来显示桌面的功能此处类似 41 | win7/win10,实现在一个桌面之内操作多个任务。 42 | \item 任务栏结合标题栏。采用任务栏和标题栏结合,节省空间。 43 | \item 同类窗口切换。可以在同类窗口之内类似alt-tab的方式切换。 44 | \item …… 45 | \end{enumerate} 46 | 47 | \section{其他} 48 | 49 | \href{https://github.com/goldendict/goldendict}{goldendict 星球最强大的桌面字典。} 50 | 51 | \href{https://github.com/yarrick/iodine}{iodine,“HIT-WLAN + 锐捷”时代的福音。} 52 | 53 | \href{http://www.aircrack-ng.org/}{aircrack,Wifi“安全性评估”工具。} 54 | 55 | \href{https://www.ledger-cli.org/}{ledger,前“金融区块链”时代最好的复式记账系统。} 56 | 57 | \href{https://orgmode.org/}{orgmode,最强大的笔记系统,从来没有之一。} 58 | 59 | \href{https://www.jianguoyun.com/}{坚果云,国内一款支持WebDav的云盘系统,国内真正的云盘没有之一。} 60 | 61 | \href{http://www.mutt.org/}{mutt, ``All mail clients suck. This one just sucks less.''} 62 | 63 | \section{vim} 64 | 实现中英文每一句一行,以及实现每一句折叠断行的简单正则式,tex源码更加乖乖。 65 | \begin{lstlisting} 66 | vnoremap fae J:s/[.!?]\zs\s\+/\="\r".matchstr(getline('.'), '^\s*')/g 67 | vnoremap fac J:s/[。!?]/\=submatch(0)."\n".matchstr(getline('.'), '^\s*')/g 68 | vnoremap fle :!fmt -80 -s 69 | \end{lstlisting} 70 | -------------------------------------------------------------------------------- /thesis/back/appendix01.tex: -------------------------------------------------------------------------------- 1 | \chapter{外文资料原文} 2 | \label{cha:engorg} 3 | 4 | \title{The title of the English paper} 5 | 6 | \textbf{Abstract:} As one of the most widely used techniques in operations 7 | research, \emph{ mathematical programming} is defined as a means of maximizing a 8 | quantity known as \emph{bjective function}, subject to a set of constraints 9 | represented by equations and inequalities. Some known subtopics of mathematical 10 | programming are linear programming, nonlinear programming, multiobjective 11 | programming, goal programming, dynamic programming, and multilevel 12 | programming$^{[1]}$. 13 | 14 | It is impossible to cover in a single chapter every concept of mathematical 15 | programming. This chapter introduces only the basic concepts and techniques of 16 | mathematical programming such that readers gain an understanding of them 17 | throughout the book$^{[2,3]}$. 18 | 19 | 20 | \section{Single-Objective Programming} 21 | The general form of single-objective programming (SOP) is written 22 | as follows, 23 | \begin{equation}\tag*{(123)} % 如果附录中的公式不想让它出现在公式索引中,那就请 24 | % 用 \tag*{xxxx} 25 | \left\{\begin{array}{l} 26 | \max \,\,f(x)\\[0.1 cm] 27 | \mbox{subject to:} \\ [0.1 cm] 28 | \qquad g_j(x)\le 0,\quad j=1,2,\cdots,p 29 | \end{array}\right. 30 | \end{equation} 31 | which maximizes a real-valued function $f$ of 32 | $x=(x_1,x_2,\cdots,x_n)$ subject to a set of constraints. 33 | 34 | \newtheorem{mpdef}{Definition}[chapter] 35 | \begin{mpdef} 36 | In SOP, we call $x$ a decision vector, and 37 | $x_1,x_2,\cdots,x_n$ decision variables. The function 38 | $f$ is called the objective function. The set 39 | \begin{equation}\tag*{(456)} % 这里同理,其它不再一一指定。 40 | S=\left\{x\in\Re^n\bigm|g_j(x)\le 0,\,j=1,2,\cdots,p\right\} 41 | \end{equation} 42 | is called the feasible set. An element $x$ in $S$ is called a 43 | feasible solution. 44 | \end{mpdef} 45 | 46 | \newtheorem{mpdefop}[mpdef]{Definition} 47 | \begin{mpdefop} 48 | A feasible solution $x^*$ is called the optimal 49 | solution of SOP if and only if 50 | \begin{equation} 51 | f(x^*)\ge f(x) 52 | \end{equation} 53 | for any feasible solution $x$. 54 | \end{mpdefop} 55 | 56 | One of the outstanding contributions to mathematical programming was known as 57 | the Kuhn-Tucker conditions\ref{eq:ktc}. In order to introduce them, let us give 58 | some definitions. An inequality constraint $g_j(x)\le 0$ is said to be active at 59 | a point $x^*$ if $g_j(x^*)=0$. A point $x^*$ satisfying $g_j(x^*)\le 0$ is said 60 | to be regular if the gradient vectors $\nabla g_j(x)$ of all active constraints 61 | are linearly independent. 62 | 63 | Let $x^*$ be a regular point of the constraints of SOP and assume that all the 64 | functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are differentiable. If $x^*$ is a 65 | local optimal solution, then there exist Lagrange multipliers 66 | $\lambda_j,j=1,2,\cdots,p$ such that the following Kuhn-Tucker conditions hold, 67 | \begin{equation} 68 | \label{eq:ktc} 69 | \left\{\begin{array}{l} 70 | \nabla f(x^*)-\sum\limits_{j=1}^p\lambda_j\nabla g_j(x^*)=0\\[0.3cm] 71 | \lambda_jg_j(x^*)=0,\quad j=1,2,\cdots,p\\[0.2cm] 72 | \lambda_j\ge 0,\quad j=1,2,\cdots,p. 73 | \end{array}\right. 74 | \end{equation} 75 | If all the functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are convex and 76 | differentiable, and the point $x^*$ satisfies the Kuhn-Tucker conditions 77 | (\ref{eq:ktc}), then it has been proved that the point $x^*$ is a global optimal 78 | solution of SOP. 79 | 80 | \subsection{Linear Programming} 81 | \label{sec:lp} 82 | 83 | If the functions $f(x),g_j(x),j=1,2,\cdots,p$ are all linear, then SOP is called 84 | a {\em linear programming}. 85 | 86 | The feasible set of linear is always convex. A point $x$ is called an extreme 87 | point of convex set $S$ if $x\in S$ and $x$ cannot be expressed as a convex 88 | combination of two points in $S$. It has been shown that the optimal solution to 89 | linear programming corresponds to an extreme point of its feasible set provided 90 | that the feasible set $S$ is bounded. This fact is the basis of the {\em simplex 91 | algorithm} which was developed by Dantzig as a very efficient method for 92 | solving linear programming. 93 | \begin{table}[ht] 94 | \centering 95 | \centering 96 | \caption*{Table~1\hskip1em This is an example for manually numbered table, which 97 | would not appear in the list of tables} 98 | \label{tab:badtabular2} 99 | \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline 100 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 101 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 102 | GT-ITM & Waxman Transit-Stub & 600 & 103 | \multirow{2}{2em}{2\%}& 104 | \multirow{2}{2em}{10\%}& 105 | \multirow{2}{2em}{50\%}& 106 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 107 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 108 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 109 | \end{tabular} 110 | \end{table} 111 | 112 | Roughly speaking, the simplex algorithm examines only the extreme points of the 113 | feasible set, rather than all feasible points. At first, the simplex algorithm 114 | selects an extreme point as the initial point. The successive extreme point is 115 | selected so as to improve the objective function value. The procedure is 116 | repeated until no improvement in objective function value can be made. The last 117 | extreme point is the optimal solution. 118 | 119 | \subsection{Nonlinear Programming} 120 | 121 | If at least one of the functions $f(x),g_j(x),j=1,2,\cdots,p$ is nonlinear, then 122 | SOP is called a {\em nonlinear programming}. 123 | 124 | A large number of classical optimization methods have been developed to treat 125 | special-structural nonlinear programming based on the mathematical theory 126 | concerned with analyzing the structure of problems. 127 | 128 | Now we consider a nonlinear programming which is confronted solely with 129 | maximizing a real-valued function with domain $\Re^n$. Whether derivatives are 130 | available or not, the usual strategy is first to select a point in $\Re^n$ which 131 | is thought to be the most likely place where the maximum exists. If there is no 132 | information available on which to base such a selection, a point is chosen at 133 | random. From this first point an attempt is made to construct a sequence of 134 | points, each of which yields an improved objective function value over its 135 | predecessor. The next point to be added to the sequence is chosen by analyzing 136 | the behavior of the function at the previous points. This construction continues 137 | until some termination criterion is met. Methods based upon this strategy are 138 | called {\em ascent methods}, which can be classified as {\em direct methods}, 139 | {\em gradient methods}, and {\em Hessian methods} according to the information 140 | about the behavior of objective function $f$. Direct methods require only that 141 | the function can be evaluated at each point. Gradient methods require the 142 | evaluation of first derivatives of $f$. Hessian methods require the evaluation 143 | of second derivatives. In fact, there is no superior method for all 144 | problems. The efficiency of a method is very much dependent upon the objective 145 | function. 146 | 147 | \subsection{Integer Programming} 148 | 149 | {\em Integer programming} is a special mathematical programming in which all of 150 | the variables are assumed to be only integer values. When there are not only 151 | integer variables but also conventional continuous variables, we call it {\em 152 | mixed integer programming}. If all the variables are assumed either 0 or 1, 153 | then the problem is termed a {\em zero-one programming}. Although integer 154 | programming can be solved by an {\em exhaustive enumeration} theoretically, it 155 | is impractical to solve realistically sized integer programming problems. The 156 | most successful algorithm so far found to solve integer programming is called 157 | the {\em branch-and-bound enumeration} developed by Balas (1965) and Dakin 158 | (1965). The other technique to integer programming is the {\em cutting plane 159 | method} developed by Gomory (1959). 160 | 161 | \hfill\textit{Uncertain Programming\/}\quad(\textsl{BaoDing Liu, 2006.2}) 162 | 163 | \section*{References} 164 | \noindent{\itshape NOTE: These references are only for demonstration. They are 165 | not real citations in the original text.} 166 | 167 | \begin{translationbib} 168 | \item Donald E. Knuth. The \TeX book. Addison-Wesley, 1984. ISBN: 0-201-13448-9 169 | \item Paul W. Abrahams, Karl Berry and Kathryn A. Hargreaves. \TeX\ for the 170 | Impatient. Addison-Wesley, 1990. ISBN: 0-201-51375-7 171 | \item David Salomon. The advanced \TeX book. New York : Springer, 1995. ISBN:0-387-94556-3 172 | \end{translationbib} 173 | 174 | \chapter{外文资料的调研阅读报告或书面翻译} 175 | 176 | \title{英文资料的中文标题} 177 | 178 | {\heiti 摘要:} 本章为外文资料翻译内容。如果有摘要可以直接写上来,这部分好像没有 179 | 明确的规定。 180 | 181 | \section{单目标规划} 182 | 北冥有鱼,其名为鲲。鲲之大,不知其几千里也。化而为鸟,其名为鹏。鹏之背,不知其几 183 | 千里也。怒而飞,其翼若垂天之云。是鸟也,海运则将徙于南冥。南冥者,天池也。 184 | \begin{equation}\tag*{(123)} 185 | p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= 186 | \frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} 187 | \end{equation} 188 | 189 | 吾生也有涯,而知也无涯。以有涯随无涯,殆已!已而为知者,殆而已矣!为善无近名,为 190 | 恶无近刑,缘督以为经,可以保身,可以全生,可以养亲,可以尽年。 191 | 192 | \subsection{线性规划} 193 | 庖丁为文惠君解牛,手之所触,肩之所倚,足之所履,膝之所倚,砉然响然,奏刀騞然,莫 194 | 不中音,合于桑林之舞,乃中经首之会。 195 | \begin{table}[ht] 196 | \centering 197 | \centering 198 | \caption*{表~1\hskip1em 这是手动编号但不出现在索引中的一个表格例子} 199 | \label{tab:badtabular3} 200 | \begin{tabular}[c]{|m{1.5cm}|c|c|c|c|c|c|}\hline 201 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 202 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 203 | GT-ITM & Waxman Transit-Stub & 600 & 204 | \multirow{2}{2em}{2\%}& 205 | \multirow{2}{2em}{10\%}& 206 | \multirow{2}{2em}{50\%}& 207 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 208 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 209 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 210 | \end{tabular} 211 | \end{table} 212 | 213 | 文惠君曰:“嘻,善哉!技盖至此乎?”庖丁释刀对曰:“臣之所好者道也,进乎技矣。始臣之 214 | 解牛之时,所见无非全牛者;三年之后,未尝见全牛也;方今之时,臣以神遇而不以目视, 215 | 官知止而神欲行。依乎天理,批大郤,导大窾,因其固然。技经肯綮之未尝,而况大坬乎! 216 | 良庖岁更刀,割也;族庖月更刀,折也;今臣之刀十九年矣,所解数千牛矣,而刀刃若新发 217 | 于硎。彼节者有间而刀刃者无厚,以无厚入有间,恢恢乎其于游刃必有余地矣。是以十九年 218 | 而刀刃若新发于硎。虽然,每至于族,吾见其难为,怵然为戒,视为止,行为迟,动刀甚微, 219 | 謋然已解,如土委地。提刀而立,为之而四顾,为之踌躇满志,善刀而藏之。” 220 | 221 | 文惠君曰:“善哉!吾闻庖丁之言,得养生焉。” 222 | 223 | 224 | \subsection{非线性规划} 225 | 孔子与柳下季为友,柳下季之弟名曰盗跖。盗跖从卒九千人,横行天下,侵暴诸侯。穴室枢 226 | 户,驱人牛马,取人妇女。贪得忘亲,不顾父母兄弟,不祭先祖。所过之邑,大国守城,小 227 | 国入保,万民苦之。孔子谓柳下季曰:“夫为人父者,必能诏其子;为人兄者,必能教其弟。 228 | 若父不能诏其子,兄不能教其弟,则无贵父子兄弟之亲矣。今先生,世之才士也,弟为盗 229 | 跖,为天下害,而弗能教也,丘窃为先生羞之。丘请为先生往说之。” 230 | 231 | 柳下季曰:“先生言为人父者必能诏其子,为人兄者必能教其弟,若子不听父之诏,弟不受 232 | 兄之教,虽今先生之辩,将奈之何哉?且跖之为人也,心如涌泉,意如飘风,强足以距敌, 233 | 辩足以饰非。顺其心则喜,逆其心则怒,易辱人以言。先生必无往。” 234 | 235 | 孔子不听,颜回为驭,子贡为右,往见盗跖。 236 | 237 | \subsection{整数规划} 238 | 盗跖乃方休卒徒大山之阳,脍人肝而餔之。孔子下车而前,见谒者曰:“鲁人孔丘,闻将军 239 | 高义,敬再拜谒者。”谒者入通。盗跖闻之大怒,目如明星,发上指冠,曰:“此夫鲁国之 240 | 巧伪人孔丘非邪?为我告之:尔作言造语,妄称文、武,冠枝木之冠,带死牛之胁,多辞缪 241 | 说,不耕而食,不织而衣,摇唇鼓舌,擅生是非,以迷天下之主,使天下学士不反其本,妄 242 | 作孝弟,而侥幸于封侯富贵者也。子之罪大极重,疾走归!不然,我将以子肝益昼餔之膳。” 243 | 244 | 245 | \chapter{其它附录} 246 | 前面两个附录主要是给本科生做例子。其它附录的内容可以放到这里,当然如果你愿意,可 247 | 以把这部分也放到独立的文件中,然后将其到主文件中。 248 | -------------------------------------------------------------------------------- /thesis/back/ceindex.tex: -------------------------------------------------------------------------------- 1 | \begin{ceindex} 2 | %如果想要手动加索引,注释掉以下这一样,用wordlist环境 3 | \printsubindex* 4 | \end{ceindex} 5 | -------------------------------------------------------------------------------- /thesis/back/conclusion.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{conclusions} 3 | 4 | 学位论文的结论作为论文正文的最后一章单独排写,但不加章标题序号。 5 | 6 | 结论应是作者在学位论文研究过程中所取得的创新性成果的概要总结,不能与摘要混为一谈。博士学位论文结论应包括论文的主要结果、创新点、展望三部分,在结论中应概括论文的核心观点,明确、客观地指出本研究内容的创新性成果(含新见解、新观点、方法创新、技术创新、理论创新),并指出今后进一步在本研究方向进行研究工作的展望与设想。对所取得的创新性成果应注意从定性和定量两方面给出科学、准确的评价,分(1)、(2)、(3)…条列出,宜用“提出了”、“建立了”等词叙述。 7 | 8 | \end{conclusions} 9 | -------------------------------------------------------------------------------- /thesis/back/correspondingaddr.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{correspondingaddr} 3 | \heiti\xiaosi 4 | \noindent 永久通讯地址: \par 5 | \noindent email: \par 6 | \noindent 电话: \par 7 | \end{correspondingaddr} 8 | -------------------------------------------------------------------------------- /thesis/back/doctorpublications.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \begin{doctorpublication} 4 | \noindent\textbf{(一)发表的学术论文} 5 | \begin{publist} 6 | \item XXX,XXX. Static Oxidation Model of Al-Mg/C Dissipation Thermal Protection Materials[J]. Rare Metal Materials and Engineering, 2010, 39(Suppl. 1): 520-524.(SCI~收录,IDS号为~669JS,IF=0.16) 7 | \item XXX,XXX. 精密超声振动切削单晶铜的计算机仿真研究[J]. 系统仿真学报,2007,19(4):738-741,753.(EI~收录号:20071310514841) 8 | \item XXX,XXX. 局部多孔质气体静压轴向轴承静态特性的数值求解[J]. 摩擦学学报,2007(1):68-72.(EI~收录号:20071510544816) 9 | \item XXX,XXX. 硬脆光学晶体材料超精密切削理论研究综述[J]. 机械工程学报,2003,39(8):15-22.(EI~收录号:2004088028875) 10 | \item XXX,XXX. 基于遗传算法的超精密切削加工表面粗糙度预测模型的参数辨识以及切削参数优化[J]. 机械工程学报,2005,41(11):158-162.(EI~收录号:2006039650087) 11 | \item XXX,XXX. Discrete Sliding Mode Cintrok with Fuzzy Adaptive Reaching Law on 6-PEES Parallel Robot[C]. Intelligent System Design and Applications, Jinan, 2006: 649-652.(EI~收录号:20073210746529) 12 | \end{publist} 13 | 14 | \noindent\textbf{(二)申请及已获得的专利(无专利时此项不必列出)} 15 | \begin{publist} 16 | \item XXX,XXX. 一种温热外敷药制备方案:中国,88105607.3[P]. 1989-07-26. 17 | \end{publist} 18 | 19 | \noindent\textbf{(三)参与的科研项目及获奖情况} 20 | \begin{publist} 21 | \item XXX,XXX. XX~气体静压轴承技术研究, XX~省自然科学基金项目.课题编号:XXXX. 22 | \item XXX,XXX. XX~静载下预应力混凝土房屋结构设计统一理论. 黑江省科学技术二等奖, 2007. 23 | \end{publist} 24 | %\vfill 25 | %\hangafter=1\hangindent=2em\noindent 26 | %\setlength{\parindent}{2em} 27 | \end{doctorpublication} 28 | -------------------------------------------------------------------------------- /thesis/back/publications.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \begin{publication} 3 | \noindent\textbf{发表的相关论文} 4 | \begin{publist} 5 | \item XXX,XXX. Static Oxidation Model of Al-Mg/C Dissipation Thermal Protection Materials[J]. Rare Metal Materials and Engineering, 2010, 39(Suppl. 1): 520-524.(SCI~收录,IDS号为~669JS,IF=0.16) 6 | \item XXX,XXX. 精密超声振动切削单晶铜的计算机仿真研究[J]. 系统仿真学报,2007,19(4):738-741,753.(EI~收录号:20071310514841) 7 | \item XXX,XXX. 局部多孔质气体静压轴向轴承静态特性的数值求解[J]. 摩擦学学报,2007(1):68-72.(EI~收录号:20071510544816) 8 | \item XXX,XXX. 硬脆光学晶体材料超精密切削理论研究综述[J]. 机械工程学报,2003,39(8):15-22.(EI~收录号:2004088028875) 9 | \item XXX,XXX. 基于遗传算法的超精密切削加工表面粗糙度预测模型的参数辨识以及切削参数优化[J]. 机械工程学报,2005,41(11):158-162.(EI~收录号:2006039650087) 10 | \item XXX,XXX. Discrete Sliding Mode Cintrok with Fuzzy Adaptive Reaching Law on 6-PEES Parallel Robot[C]. Intelligent System Design and Applications, Jinan, 2006: 649-652.(EI~收录号:20073210746529) 11 | \end{publist} 12 | 13 | \noindent\textbf{(二)申请及已获得的专利(无专利时此项不必列出)} 14 | \begin{publist} 15 | \item XXX,XXX. 一种温热外敷药制备方案:中国,88105607.3[P]. 1989-07-26. 16 | \end{publist} 17 | 18 | \noindent\textbf{(三)参与的科研项目及获奖情况} 19 | \begin{publist} 20 | \item XXX,XXX. XX~气体静压轴承技术研究, XX~省自然科学基金项目.课题编号:XXXX. 21 | \item XXX,XXX. XX~静载下预应力混凝土房屋结构设计统一理论. 黑江省科学技术二等奖, 2007. 22 | \end{publist} 23 | %\vfill 24 | %\hangafter=1\hangindent=2em\noindent 25 | %\setlength{\parindent}{2em} 26 | \end{publication} 27 | -------------------------------------------------------------------------------- /thesis/back/resume.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \begin{resume} 4 | XXXX~年~XX~月~XX~日出生于~XXXX。 5 | 6 | XXXX~年~XX~月考入~XX~大学~XX~院(系)XX~专业,XXXX~年~XX~月本科毕业并获得~XX~学学士学位。 7 | 8 | XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学硕士学位。 9 | 10 | XXXX~年~XX~月------XXXX~年~XX~月在~XX~大学~XX~院(系)XX~学科学习并获得~XX~学博士学位。 11 | 12 | 获奖情况:如获三好学生、优秀团干部、X~奖学金等(不含科研学术获奖)。 13 | 14 | 工作经历: 15 | 16 | \textbf{( 除全日制硕士生以外,其余学生均应增列此项。个人简历一般应包含教育经历和工作经历。)} 17 | \end{resume} 18 | -------------------------------------------------------------------------------- /thesis/body/introduction.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \chapter{示例文档}[Example] 4 | 5 | 这是 \hithesis\ 的示例文档,基本上覆盖了模板中所有格式的设置。建议大家在使用模 6 | 板之前,除了阅读《\hithesis\:哈尔滨工业大学学位论文模板》\footnote{即 7 | hithesis.pdf文件},本示例文档也最好能看一看。此示例文档尽量使用到所有的排版格式 8 | ,然而对于一些不在我工规范中规定的文档,理论上是由用户自由发挥,这里不给出样例 9 | 。需要另行载入的宏包和自定义命令在文件`hithesis.sty'中有示例,这里不列举。 10 | 11 | \section{关于数字}[Number] 12 | 13 | 按《关于出版物上数字用法的试行规定》(1987年1月1日国家语言文字工作委员会等7个单位公布),除习惯用中文数字表示的以外,一般数字均用阿拉伯数字。 14 | (1)公历的世纪、年代、年、月、日和时刻一律用阿拉伯数字,如20世纪,80年代,4时3刻等。年号要用四位数,如1989年,不能用89年。 15 | (2)记数与计算(含正负整数、分数、小数、百分比、约数等)一律用阿拉伯数字,如3/4,4.5%,10个月,500多种等。 16 | (3)一个数值的书写形式要照顾到上下文。不是出现在一组表示科学计量和具有统计意义数字中的一位数可以用汉字,如一个人,六条意见。星期几一律用汉字,如星期六。邻近两个数字并列连用,表示概数,应该用汉字数字,数字间不用顿号隔开,如三五天,七八十种,四十五六岁,一千七八百元等。 17 | (4)数字作为词素构成定型的词、词组、惯用语、缩略语等应当使用汉字。如二倍体,三叶虫,第三世界,“七五”规划,相差十万八千里等。 18 | (5)5位以上的数字,尾数零多的,可改写为以万、亿为单位的数。一般情况下不得以十、百、千、十万、百万、千万、十亿、百亿、千亿作为单位。如~\num{345000000}~公里可改写为3.45亿公里或~\num{34500}~万公里,但不能写为3亿~\num{4500}~万公里或3亿4千5百万公里。 19 | (6)数字的书写不必每格一个数码,一般每两数码占一格,数字间分节不用分位号“,”,凡4位或4位以上的数都从个位起每3位数空半个数码(1/4汉字)。“\num{3000000}”,不要写成“3,000,000”,小数点后的数从小数点起向右按每三位一组分节。一个用阿拉伯数字书写的多位数不能从数字中间转行。 20 | (7)数量的增加或减少要注意下列用词的概念:1)增加为(或增加到)过去的二倍,即过去为一,现在为二;2)增加(或增加了)二倍,即过去为一,现在为三;3)超额80%,即定额为100,现在为180;4)降低到80%,即过去为100,现在为80;5)降低(或降低了)80%,即原来为100,现在为20;6)为原数的1/4,即原数为4,现在为1,或原数为1,现在为0.25。 21 | 应特别注意在表达数字减小时,不宜用倍数,而应采用分数。如减少为原来的1/2,1/3等。 22 | 23 | 24 | \section{索引示例}[Index] 25 | 26 | 为便于检索文中内容,可编制索引置于论文之后(根据需要决定是否设置)。索引以论文中 27 | 的专业词语为检索线索,指出其相关内容的所在页码。索引用中、英两种文字书写,中文在 28 | 前。\sindex[china]{qi!乔峰}\sindex[english]{Xu Zhu}\sindex[english]{Qiao Feng} 29 | 中文按各词汉语拼音第一个字母排序,英文按该词第一个英文字母排序。 30 | 31 | \section{术语排版举例}[Glossaries and index] 32 | 33 | 术语的定义和使用可以结合索引,灵活使用。 34 | 例如,\gtssbp 是一种应用于狄利克雷过程抽样的算法。 35 | 下次出现将是另一种格式:\gtssbp 。 36 | 还可以切换单复数例如:\gscnas ,下次出现为:\gscnas 。 37 | 此处体现了\LaTeX\ 格式内容分离的优势。 38 | 39 | \section{引用}[Cite] 40 | 41 | \sindex[china]{du!段誉}引文标注遵照GB/T7714-2005,采用顺序编码制。正文中引用文献的标示应置于所引内容最后一个字的右上角,所引文献编号用阿拉伯数字置于方括号“[ ]”中,用小4号字体的上角标。要求: 42 | 43 | (1)引用单篇文献时,如“二次铣削\cite{cnproceed}”。 44 | 45 | (2)同一处引用多篇文献时,各篇文献的序号在方括号内全部列出,各序号间用“,”,如 46 | 遇连续序号,可标注讫序号。如,…形成了多种数学模型\cite{cnarticle,cnproceed}… 47 | 注意此处添加\cs{inlinecite}中文空格\inlinecite{cnarticle,cnproceed},可以在cfg文件中修改空格类型。 48 | 49 | (3)多次引用同一文献时,在文献序号的“[ ]”后标注引文页码。如,…间质细胞CAMP含量 50 | 测定\cite[100-197]{cnarticle}…。…含量测定方法规定 51 | \cite[92]{cnarticle}…。 52 | 53 | (4)当提及的参考文献为文中直接说明时,则用小4号字与正文排齐,如“由文献\inlinecite{hithesis2017}可知” 54 | 55 | \section{定理和定义等}[Theorem] 56 | \begin{theorem}[\cite{cnproceed}] 57 | 宇宙大爆炸是一种爆炸。 58 | \end{theorem} 59 | \begin{definition}[(霍金)] 60 | 宇宙大爆炸是一种爆炸。 61 | \end{definition} 62 | \begin{assumption} 63 | 宇宙大爆炸是一种爆炸。 64 | \end{assumption} 65 | \begin{lemma} 66 | 宇宙大爆炸是一种爆炸。 67 | \end{lemma} 68 | \begin{corollary} 69 | 宇宙大爆炸是一种爆炸。 70 | \end{corollary} 71 | \begin{exercise} 72 | 宇宙大爆炸是一种爆炸。 73 | \end{exercise} 74 | \begin{problem}[(Albert Einstein)] 75 | 宇宙大爆炸是一种爆炸。 76 | \end{problem} 77 | \begin{remark} 78 | 宇宙大爆炸是一种爆炸。 79 | \end{remark} 80 | \begin{axiom}[(爱因斯坦)] 81 | 宇宙大爆炸是一种爆炸。 82 | \end{axiom} 83 | \begin{conjecture} 84 | 宇宙大爆炸是一种爆炸。 85 | \end{conjecture} 86 | \section{图片}[Pictures] 87 | 图应有自明性。插图应与文字紧密配合,文图相符,内容正确。选图要力求精练,插图、照 88 | 片应完整清晰。机械工程图:采用第一角投影法,严格按照GB4457~GB131-83《机械制图》 89 | 标准规定。数据流程图、程序流程图、系统流程图等按GB1526-89标准规定。电气图:图形 90 | 符号、文字符号等应符合附录3所列有关标准的规定。流程图:必须采用结构化程序并正确 91 | 运用流程框图。对无规定符号的图形应采用该行业的常用画法。坐标图的坐标线均用细实线 92 | ,粗细不得超过图中曲线;有数字标注的坐标图,必须注明坐标单位。照片图要求主题和主 93 | 要显示部分的轮廓鲜明,便于制版。如用放大或缩小的复制品,必须清晰,反差适中。照片 94 | 上应有表示目的物尺寸的标度。引用文献中的图时,除在正文文字中标注参考文献序号以外 95 | ,还必须在中、英文表题的右上角标注参考文献序号。 96 | 97 | \subsection{博士毕业论文双语题注}[Doctoral picture example] 98 | \begin{figure}[htpb] 99 | \centering 100 | \includegraphics[width = 0.4\textwidth]{golfer} 101 | \bicaption[golfer1]{}{打高尔夫球球的人(博士论文双语题注)}{Fig.$\!$}{The person playing golf (Doctoral thesis)} 102 | \end{figure} 103 | 104 | 每个图均应有图题(由图序和图名组成),图题不宜有标点符号,图名在图序之后空1个半 105 | 角字符排写。图序按章编排,如第1章第一个插图的图号为“图1-1”。图题置于图下,硕士论 106 | 文只用中文,博士论文用中、英两种文字,居中书写,中文在上,要求中文用宋体5号字, 107 | 英文用Times New Roman 5号字。有图注或其它说明时应置于图题之上。引用图应注明出处 108 | ,在图题右上角加引用文献号。图中若有分图时,分图题置于分图之下或图题之下,可以只 109 | 用中文书写,分图号用a)、b)等表示。图中各部分说明应采用中文(引用的外文图除外)或 110 | 数字符号,各项文字说明置于图题之上(有分图时,置于分图题之上)。图中文字用宋体、 111 | Times New Roman字体,字号尽量采用5号字(当字数较多时可用小5号字,以清晰表达为原 112 | 则,但在一个插图内字号要统一)。同一图内使用文字应统一。图表中物理量、符号用斜体 113 | 。 114 | \subsection{本硕论文题注}[Other picture example] 115 | \begin{figure}[h] 116 | \centering 117 | \includegraphics[width = 0.4\textwidth]{golfer} 118 | \caption{打高尔夫球的人,硕士论文要求只用汉语} 119 | \end{figure} 120 | 121 | \subsection{并排图和子图}[Abreast-picture and Sub-picture example] 122 | \subsubsection{并排图}[Abreast-picture example] 123 | 124 | 使用并排图时,需要注意对齐方式。默认情况是中部对齐。这里给出中部对齐、顶部对齐 125 | 、图片底部对齐三种常见方式。其中,底部对齐方式有一个很巧妙的方式,将长度比较小 126 | 的图放在左面即可。 127 | 128 | \begin{figure}[htbp] 129 | \centering 130 | \begin{minipage}{0.4\textwidth} 131 | \centering 132 | \includegraphics[width=\textwidth]{golfer} 133 | \bicaption[golfer2]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 134 | \end{minipage} 135 | \centering 136 | \begin{minipage}{0.4\textwidth} 137 | \centering 138 | \includegraphics[width=\textwidth]{golfer} 139 | \bicaption[golfer3]{}{打高尔夫球的人。注意,这里默认居中}{Fig.$\!$}{The person playing golf. Please note that, it is vertically center aligned by default.} 140 | \end{minipage} 141 | \end{figure} 142 | 143 | \begin{figure}[htbp] 144 | \centering 145 | \begin{minipage}[t]{0.4\textwidth} 146 | \centering 147 | \includegraphics[width=\textwidth]{golfer} 148 | \bicaption[golfer5]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 149 | \end{minipage} 150 | \centering 151 | \begin{minipage}[t]{0.4\textwidth} 152 | \centering 153 | \includegraphics[width=\textwidth]{golfer} 154 | \bicaption[golfer8]{}{打高尔夫球的人。注意,此图是顶部对齐}{Fig.$\!$}{The person playing golf. Please note that, it is vertically top aligned.} 155 | \end{minipage} 156 | \end{figure} 157 | 158 | \begin{figure}[htbp] 159 | \centering 160 | \begin{minipage}[t]{0.4\textwidth} 161 | \centering 162 | \includegraphics[width=\textwidth,height=\textwidth]{golfer} 163 | \bicaption[golfer9]{}{打高尔夫球的人。注意,此图对齐方式是图片底部对齐}{Fig.$\!$}{The person playing golf. Please note that, it is vertically bottom aligned for figure.} 164 | \end{minipage} 165 | \centering 166 | \begin{minipage}[t]{0.4\textwidth} 167 | \centering 168 | \includegraphics[width=\textwidth]{golfer} 169 | \bicaption[golfer6]{}{打高尔夫球的人}{Fig.$\!$}{The person playing golf} 170 | \end{minipage} 171 | \end{figure} 172 | 173 | \subsubsection{子图}[Sub-picture example] 174 | 注意:子图题注也可以只用中文。规范规定“分图题置于分图之下或图题之下”,但没有给出具体的格式要求。 175 | 没有要求的另外一个说法就是“无论什么格式都不对”。 176 | 所以只有在一个图中有标注“a),b)”,无法使用\cs{subfigure}的情况下,使用最后一个图例中的格式设置方法,否则不要使用。 177 | 为了应对“无论什么格式都不对”,这个子图图题使用“minipage”和“description”环境,宽度,对齐方式可以按照个人喜好自由设置,是否使用双语子图图题也可以自由设置。 178 | 179 | \begin{figure}[!h] 180 | \setlength{\subfigcapskip}{-1bp} 181 | \centering 182 | \begin{minipage}{\textwidth} 183 | \centering 184 | \subfigure{\label{golfer41}}\addtocounter{subfigure}{-2} 185 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~1]{\includegraphics[width=0.4\textwidth]{golfer}}} 186 | \hspace{2em} 187 | \subfigure{\label{golfer42}}\addtocounter{subfigure}{-2} 188 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~2]{\includegraphics[width=0.4\textwidth]{golfer}}} 189 | \end{minipage} 190 | \centering 191 | \begin{minipage}{\textwidth} 192 | \centering 193 | \subfigure{\label{golfer43}}\addtocounter{subfigure}{-2} 194 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~3]{\includegraphics[width=0.4\textwidth]{golfer}}} 195 | \hspace{2em} 196 | \subfigure{\label{golfer44}}\addtocounter{subfigure}{-2} 197 | \subfigure[The person playing golf. Here, 'hang indent' and 'center last line' are not stipulated in the regulation.]{\subfigure[打高尔夫球的人~4。注意,规范中没有明确规定要悬挂缩进、最后一行居中。]{\includegraphics[width=0.4\textwidth]{golfer}}} 198 | \end{minipage} 199 | \vspace{0.2em} 200 | \bicaption[golfer4]{}{打高尔夫球的人}{Fig.$\!$}{The person playing gol} 201 | \end{figure} 202 | 203 | \begin{figure}[t] 204 | \centering 205 | \begin{minipage}{.7\linewidth} 206 | \setlength{\subfigcapskip}{-1bp} 207 | \centering 208 | \begin{minipage}{\textwidth} 209 | \centering 210 | \subfigure{\label{golfer45}}\addtocounter{subfigure}{-2} 211 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~1]{\includegraphics[width=0.4\textwidth]{golfer}}} 212 | \hspace{4em} 213 | \subfigure{\label{golfer46}}\addtocounter{subfigure}{-2} 214 | \subfigure[The person playing golf]{\subfigure[打高尔夫球的人~2]{\includegraphics[width=0.4\textwidth]{golfer}}} 215 | \end{minipage} 216 | \vskip 0.2em 217 | \wuhao 注意:这里是中文图注添加位置(我工要求,图注在图题之上)。 218 | \vspace{0.2em} 219 | \bicaption[golfer47]{}{打高尔夫球的人。注意,此处我工有另外一处要求,子图图题可以位于主图题之下。但由于没有明确说明位于下方具体是什么格式,所以这里不给出举例。}{Fig.$\!$}{The person playing golf. Please note that, although it is appropriate to put subfigures' captions under this caption as stipulated in regulation, but its format is not clearly stated.} 220 | \end{minipage} 221 | \end{figure} 222 | 223 | \begin{figure}[t] 224 | \centering 225 | \begin{tikzpicture} 226 | \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.3\textwidth]{golfer}}; 227 | \begin{scope}[x={(image.south east)},y={(image.north west)}] 228 | \node at (0.3,0.5) {a)}; 229 | \node at (0.8,0.2) {b)}; 230 | \end{scope} 231 | \end{tikzpicture} 232 | \bicaption[golfer0]{}{打高尔夫球球的人(博士论文双语题注)}{Fig.$\!$}{The person playing golf (Doctoral thesis)} 233 | \vskip -0.4em 234 | \hspace{2em} 235 | \begin{minipage}[t]{0.3\textwidth} 236 | \wuhao \setlist[description]{font=\normalfont} 237 | \begin{description} 238 | \item[a)]子图图题 239 | \end{description} 240 | \end{minipage} 241 | \hspace{2em} 242 | \begin{minipage}[t]{0.3\textwidth} 243 | \wuhao \setlist[description]{font=\normalfont} 244 | \begin{description} 245 | \item[b)]子图图题 246 | \item[b)]Subfigure caption 247 | \end{description} 248 | \end{minipage} 249 | \end{figure} 250 | 251 | 252 | \begin{figure}[!h] 253 | \centering 254 | \begin{sideways} 255 | \begin{minipage}{\textheight} 256 | \centering 257 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 258 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 259 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 260 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 261 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 262 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 263 | \fbox{\includegraphics[width=0.2\textwidth]{golfer}} 264 | \bicaption[golfer7]{}{打高尔夫球的人(非规范要求)}{Fig.$\!$}{The person playing golf (Not stated in the regulation)} 265 | \end{minipage} 266 | \end{sideways} 267 | \end{figure} 268 | 269 | \clearpage 270 | 271 | 如果不想让图片浮动到下一章节,那么在此处使用\cs{clearpage}命令。 272 | 273 | \section{如何做出符合规范的漂亮的图} 274 | 关于作图工具在后文\ref{drawtool}中给出一些作图工具的介绍,此处不多言。 275 | 此处以R语言和Tikz为例说明如何做出符合规范的图。 276 | 277 | \subsection{Tikz作图举例} 278 | 使用Tikz作图核心思想是把格式、主题、样式与内容分离,定义在全局中。 279 | 注意字体设置可以有两种选择,如何字少,用五号字,字多用小五。 280 | 使用Tikz作图不会出现字体问题,字体会自动与正文一致。 281 | 282 | \begin{figure}[thb!] 283 | \centering 284 | \begin{tikzpicture}[xscale=0.8,yscale=0.3,rotate=90] 285 | \small 286 | \draw (-22,6.5) node[refcell]{参考基因组}; 287 | \draw[refline] (-23, 5) -- (27, 5); 288 | \draw (-22,3.75) node[tscell]{肿瘤样本}; 289 | \draw (-20,3.75) node[tncell]{正常细胞}; 290 | \draw[tnline] (-21, 2.5) -- (27, 2.5); 291 | \draw (-20,1.25) node[ttcell]{肿瘤细胞}; 292 | \rcell{2}{6}; 293 | \draw[fakeevolve] (4.5, 5.25) -- (4.5, 4.8); 294 | \ncell{2}{4}; 295 | \draw[evolve] (4.5, 3) .. controls (4.5,2.8) and (-3.5,2.9) .. (-3.5, 2); 296 | \draw[evolve] (4.5, 3) .. controls (4.5,2.8) and (11.5,2.9) .. (11.5, 2); 297 | \tcellone{-6}{1.5}; 298 | \draw (-9, 2) node[ttcell]{1}; 299 | \draw[evolve] (-3.5, 0) .. controls (-3.5,-0.2) and (-12,-0.1) .. (-12, -1.5); 300 | \draw[evolve] (-3.5, 0) .. controls (-3.5,-0.2) and (1.5,-0.1) .. (1.5, -1.5); 301 | \tcellthree{7}{1.5}; 302 | \draw (4, 2) node[ttcell]{2}; 303 | \draw[evolve] (11, 0.5) .. controls (11,0.3) and (19,0.4) .. (19, -1.5); 304 | \tcellfive{-16}{-2}; 305 | \draw (-19, -1.5) node[ttcell]{3}; 306 | \tcelltwo{-1}{-2}; 307 | \draw (-4, -1.5) node[ttcell]{4}; 308 | \tcellfour{12}{-2}; 309 | \draw (9, -1.5) node[ttcell]{5}; 310 | \end{tikzpicture} 311 | \begin{minipage}{.9\linewidth} 312 | \vskip 0.2em 313 | \wuhao 图中,带有箭头的淡蓝色箭头表示肿瘤子种群的进化方向。一般地,从肿瘤组织中取用于进行二代测序的样本中含有一定程度的正常细胞污染,因此肿瘤的样本中含有正常细胞和肿瘤细胞。每一个子种群的基因组的模拟过程是把生殖细胞变异和体细胞变异加入到参考基因组中。 314 | \vspace{0.6em} 315 | \end{minipage} 316 | \bicaption[tumor]{}{肿瘤组织中各个子种群的进化示意图}{Fig.$\!$}{The diagram of tumor subpopulation evolution process} 317 | \end{figure} 318 | 319 | \subsection{R作图} 320 | R是一种极具有代表性的典型的作图工具,应用广泛。 321 | 与Tikz图~\ref{tumor}~不同,R作图分两种情况:(1)可以转换为Tikz码;(2)不可转换为Tikz码。 322 | 第一种情况图形简单,图形中不含有很多数据点,使用R语言中的Tikz包即可。 323 | 第二种情况是图形复杂,含有海量数据点,这时候不要转成Tikz矢量图,这会使得论文体积巨大。 324 | 推荐使用pdf或png非矢量图形。 325 | 使用非矢量图形时要注意选择好字号(五号或小五),和字体(宋体、新罗马)然后选择生成图形大小,注意此时在正文中使用\cs{includegraphics}命令导入时,不要像导入矢量图那样控制图形大小,使用图形的原本的 326 | 宽度和高度,这样就确保了非矢量图形中的文字与正文一致了。 327 | 328 | 为了控制\hithesis\ 的大小,此处不给出具体举例, 329 | 330 | \section{表格} 331 | 332 | 表应有自明性。表格不加左、右边线。表的编排建议采用国际通行的三线表。表中文字用宋 333 | 体~5~号字。每个表格均应有表题(由表序和表名组成)。表序一般按章编排,如第~1~章第 334 | 一个插表的序号为“表~1-1”等。表序与表名之间空一格,表名中不允许使用标点符号,表名 335 | 后不加标点。表题置于表上,硕士学位论文只用中文,博士学位论文用中、英文两种文字居 336 | 中排写,中文在上,要求中文用宋体~5~号字,英文用新罗马字体~5~号字。表头设计应简单 337 | 明了,尽量不用斜线。表头中可采用化学符号或物理量符号。 338 | 339 | 340 | \subsection{普通表格的绘制方法}[Methods of drawing normal tables] 341 | 342 | 表格应具有三线表格式,因此需要调用~booktabs~宏包,其标准格式如表~\ref{table1}~所示。 343 | \begin{table}[htbp] 344 | \bicaption[table1]{}{符合研究生院绘图规范的表格}{Table$\!$}{Table in agreement of the standard from graduate school} 345 | \vspace{0.5em}\centering\wuhao 346 | \begin{tabular}{ccccc} 347 | \toprule[1.5pt] 348 | $D$(in) & $P_u$(lbs) & $u_u$(in) & $\beta$ & $G_f$(psi.in)\\ 349 | \midrule[1pt] 350 | 5 & 269.8 & 0.000674 & 1.79 & 0.04089\\ 351 | 10 & 421.0 & 0.001035 & 3.59 & 0.04089\\ 352 | 20 & 640.2 & 0.001565 & 7.18 & 0.04089\\ 353 | \bottomrule[1.5pt] 354 | \end{tabular} 355 | \end{table} 356 | 全表如用同一单位,则将单位符号移至表头右上角,加圆括号。表中数据应准确无误,书写 357 | 清楚。数字空缺的格内加横线“-”(占~2~个数字宽度)。表内文字或数字上、下或左、右 358 | 相同时,采用通栏处理方式,不允许用“〃”、“同上”之类的写法。表内文字说明,起行空一 359 | 格、转行顶格、句末不加标点。如某个表需要转页接排,在随后的各页上应重复表的编号。 360 | 编号后加“(续表)”,表题可省略。续表应重复表头。 361 | 362 | \subsection{长表格的绘制方法}[Methods of drawing long tables] 363 | 364 | 长表格是当表格在当前页排不下而需要转页接排的情况下所采用的一种表格环境。若长表格 365 | 仍按照普通表格的绘制方法来获得,其所使用的\verb|table|浮动环境无法实现表格的换页 366 | 接排功能,表格下方过长部分会排在表格第1页的页脚以下。为了能够实现长表格的转页接 367 | 排功能,需要调用~longtable~宏包,由于长表格是跨页的文本内容,因此只需要单独的 368 | \verb|longtable|环境,所绘制的长表格的格式如表~\ref{table2}~所示。 369 | 370 | 注意,长表格双语标题的格式。 371 | 372 | \vspace{-1.5bp} 373 | \ltfontsize{\wuhao[1.667]} 374 | \wuhao[1.667]\begin{longtable}{ccc}% 375 | \longbionenumcaption{}{{\wuhao 中国省级行政单位一览 376 | }\label{table3}}{Table$\!$}{}{{\wuhao Overview of the provincial administrative 377 | unit of China}}{-0.5em}{3.15bp}\\ 378 | %\caption{\wuhao 中国省级行政单位一览}\\ 379 | \toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] 380 | \endfirsthead 381 | \multicolumn{3}{r}{表~\thetable(续表)}\vspace{0.5em}\\ 382 | \toprule[1.5pt] 名称 & 简称 & 省会或首府 \\ \midrule[1pt] 383 | \endhead 384 | \bottomrule[1.5pt] 385 | \endfoot 386 | 北京市 & 京 & 北京\\ 387 | 天津市 & 津 & 天津\\ 388 | 河北省 & 冀 & 石家庄市\\ 389 | 山西省 & 晋 & 太原市\\ 390 | 内蒙古自治区 & 蒙 & 呼和浩特市\\ 391 | 辽宁省 & 辽 & 沈阳市\\ 392 | 吉林省 & 吉 & 长春市\\ 393 | 黑龙江省 & 黑 & 哈尔滨市\\ 394 | 上海市 & 沪/申 & 上海\\ 395 | 江苏省 & 苏 & 南京市\\ 396 | 浙江省 & 浙 & 杭州市\\ 397 | 安徽省 & 皖 & 合肥市\\ 398 | 福建省 & 闽 & 福州市\\ 399 | 江西省 & 赣 & 南昌市\\ 400 | 山东省 & 鲁 & 济南市\\ 401 | 河南省 & 豫 & 郑州市\\ 402 | 湖北省 & 鄂 & 武汉市\\ 403 | 湖南省 & 湘 & 长沙市\\ 404 | 广东省 & 粤 & 广州市\\ 405 | 广西壮族自治区 & 桂 & 南宁市\\ 406 | 海南省 & 琼 & 海口市\\ 407 | 重庆市 & 渝 & 重庆\\ 408 | 四川省 & 川/蜀 & 成都市\\ 409 | 贵州省 & 黔/贵 & 贵阳市\\ 410 | 云南省 & 云/滇 & 昆明市\\ 411 | 西藏自治区 & 藏 & 拉萨市\\ 412 | 陕西省 & 陕/秦 & 西安市\\ 413 | 甘肃省 & 甘/陇 & 兰州市\\ 414 | 青海省 & 青 & 西宁市\\ 415 | 宁夏回族自治区 & 宁 & 银川市\\ 416 | 新疆维吾尔自治区 & 新 & 乌鲁木齐市\\ 417 | 香港特别行政区 & 港 & 香港\\ 418 | 澳门特别行政区 & 澳 & 澳门\\ 419 | 台湾省 & 台 & 台北市\\ 420 | \end{longtable}\normalsize 421 | \vspace{-1em} 422 | 423 | 此长表格~\ref{table2}~第~2~页的标题“编号(续表)”和表头是通过代码自动添加上去的,无需人工添加,若表格在页面中的竖直位置发生了变化,长表格在第~2~页 424 | 及之后各页的标题和表头位置能够始终处于各页的最顶部,也无需人工调整,\LaTeX~系统的这一优点是~word~等软件所无法比拟的。 425 | 426 | \subsection{列宽可调表格的绘制方法}[Methods of drawing tables with adjustable-width columns] 427 | 论文中能用到列宽可调表格的情况共有两种,一种是当插入的表格某一单元格内容过长以至 428 | 于一行放不下的情况,另一种是当对公式中首次出现的物理量符号进行注释的情况,这两种 429 | 情况都需要调用~tabularx~宏包。下面将分别对这两种情况下可调表格的绘制方法进行阐述 430 | 。 431 | \subsubsection{表格内某单元格内容过长的情况}[The condition when the contents in 432 | some cells of tables are too long] 433 | 首先给出这种情况下的一个例子如表~\ref{table3}~所示。 434 | \begin{table}[htbp] 435 | \centering 436 | \bicaption[table4]{}{最小的三个正整数的英文表示法}{Table$\!$}{The English construction of the smallest three positive integral numbers}\vspace{0.5em}\wuhao 437 | \begin{tabularx}{0.7\textwidth}{llX} 438 | \toprule[1.5pt] 439 | Value & Name & Alternate names, and names for sets of the given size\\\midrule[1pt] 440 | 1 & One & ace, single, singleton, unary, unit, unity\\ 441 | 2 & Two & binary, brace, couple, couplet, distich, deuce, double, doubleton, duad, duality, duet, duo, dyad, pair, snake eyes, span, twain, twosome, yoke\\ 442 | 3 & Three & deuce-ace, leash, set, tercet, ternary, ternion, terzetto, threesome, tierce, trey, triad, trine, trinity, trio, triplet, troika, hat-trick\\\bottomrule[1.5pt] 443 | \end{tabularx} 444 | \end{table} 445 | tabularx环境共有两个必选参数:第1个参数用来确定表格的总宽度,第2个参数用来确定每 446 | 列格式,其中标为X的项表示该列的宽度可调,其宽度值由表格总宽度确定。标为X的列一般 447 | 选为单元格内容过长而无法置于一行的列,这样使得该列内容能够根据表格总宽度自动分行 448 | 。若列格式中存在不止一个X项,则这些标为X的列的列宽相同,因此,一般不将内容较短的 449 | 列设为X。标为X的列均为左对齐,因此其余列一般选为l(左对齐),这样可使得表格美观 450 | ,但也可以选为c或r。 451 | 452 | \subsubsection{对物理量符号进行注释的情况}[The condition when physical symbols 453 | need to be annotated] 454 | 455 | 为使得对公式中物理量符号注释的转行与破折号“———”后第一个字对齐,此处最好采用表格 456 | 环境。此表格无任何线条,左对齐,且在破折号处对齐,一共有“式中”二字、物理量符号和 457 | 注释三列,表格的总宽度可选为文本宽度,因此应该采用\verb|tabularx|环境。由 458 | \verb|tabularx|环境生成的对公式中物理量符号进行注释的公式如式(\ref{eq:1})所示。 459 | \begin{equation}\label{eq:1} 460 | \ddot{\boldsymbol{\rho}}-\frac{\mu}{R_{t}^{3}}\left(3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)=\mathbf{a} 461 | \end{equation} 462 | \begin{tabularx}{\textwidth}{@{}l@{\quad}r@{———}X@{}} 463 | 式中& $\boldsymbol{\rho}$ &追踪飞行器与目标飞行器之间的相对位置矢量;\\ 464 | & $\boldsymbol{\ddot{\rho}}$&追踪飞行器与目标飞行器之间的相对加速度;\\ 465 | & $\mathbf{a}$ &推力所产生的加速度;\\ 466 | & $\mathbf{R_t}$ & 目标飞行器在惯性坐标系中的位置矢量;\\ 467 | & $\omega_{t}$ & 目标飞行器的轨道角速度;\\ 468 | & $\mathbf{g}$ & 重力加速度,$=\frac{\mu}{R_{t}^{3}}\left( 469 | 3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)=\omega_{t}^{2}\frac{R_{t}}{p}\left( 470 | 3\mathbf{R_{t}}\frac{\mathbf{R_{t}\rho}}{R_{t}^{2}}-\boldsymbol{\rho}\right)$,这里~$p$~是目标飞行器的轨道半通径。 471 | \end{tabularx}\vspace{3.15bp} 472 | 由此方法生成的注释内容应紧邻待注释公式并置于其下方,因此不能将代码放入 473 | \verb|table|浮动环境中。但此方法不能实现自动转页接排,可能会在当前页剩余空间不够 474 | 时,全部移动到下一页而导致当前页出现很大空白。因此在需要转页处理时,还请您手动将 475 | 需要转页的代码放入一个新的\verb|tabularx|环境中,将原来的一个\verb|tabularx|环境 476 | 拆分为两个\verb|tabularx|环境。 477 | 478 | \subsubsection{排版横版表格的举例}[An example of landscape table] 479 | 480 | \begin{table}[p] 481 | \centering 482 | \begin{sideways} 483 | \begin{minipage}{\textheight} 484 | \bicaption[table2]{}{不在规范中规定的横版表格}{Table$\!$}{A table style which is not stated in the regulation} 485 | \vspace{0.5em}\centering\wuhao 486 | \begin{tabular}{ccccc} 487 | \toprule[1.5pt] 488 | $D$(in) & $P_u$(lbs) & $u_u$(in) & $\beta$ & $G_f$(psi.in)\\ 489 | \midrule[1pt] 490 | 5 & 269.8 & 0.000674 & 1.79 & 0.04089\\ 491 | 10 & 421.0 & 0.001035 & 3.59 & 0.04089\\ 492 | 20 & 640.2 & 0.001565 & 7.18 & 0.04089\\ 493 | \bottomrule[1.5pt] 494 | \end{tabular} 495 | \end{minipage} 496 | \end{sideways} 497 | \end{table} 498 | 499 | 500 | \section{公式} 501 | 与正常\LaTeX\ 使用方法一致,此处略。关于公式中符号样式的定义在`hithesis.sty'有示 502 | 例。 503 | 504 | \section{其他杂项}[Miscellaneous] 505 | 506 | \subsection{右翻页}[Open right] 507 | 508 | 对于双面打印的论文,强制使每章的标题页出现右手边为右翻页。 509 | 规范中没有明确规定是否是右翻页打印。 510 | 模板给出了右翻页选项。 511 | 为了应对用户的个人喜好,在希望设置成右翻页的位置之前添加\cs{cleardoublepage}命令即可。 512 | 513 | \subsection{算法}[Algorithms] 514 | 我工算法有以下几大特点。 515 | 516 | (1)算法不在规范中要求。 517 | 518 | (2)算法常常被使用(至少计算机学院)。 519 | 520 | (3)格式乱,甚至出现了每个实验室的格式要求都不一样。 521 | 522 | 此处不给出示例,因为没法给,在 523 | \href{https://github.com/dustincys/PlutoThesis}{https://github.com/dustincys/PlutoThesis} 524 | 的readme文件中有不同实验室算法要求说明。 525 | 526 | \subsection{脚注}[Footnotes] 527 | 不在再规范\footnote{规范是指\PGR\ 和\UGR}中要求,模板默认使用清华大学的格式。 528 | 529 | \subsection{源码}[Source code] 530 | 也不在再规范中要求。如果有需要最好使用minted包,但在编译的时候需要添加“ 531 | -shell-escape”选项且安装pygmentize软件,这些不在模板中默认载入,如果需要自行载入 532 | 。 533 | \subsection{思源宋体}[Siyuan font] 534 | 如果要使用思源字体,需要思源字体的定义文件,此文件请到模板的开发版网址github: 535 | \href{https://gihitb.com/dustincys/hithesis}{https://gihitb.com/dustincys/hithesis} 536 | 或者oschia: 537 | \href{https://git.oschina.net/dustincys/hithesis}{https://git.oschina.net/dustincys/hithesis} 538 | 处下载。 539 | 540 | \subsection{专业绘图工具}[Processional drawing tool] 541 | \label{drawtool} 542 | 推荐使用tikz包,使用tikz源码绘图的好处是,图片中的字体与正文中的字体一致。具体如 543 | 何使用tikz绘图不属于模板范畴。 544 | tikz适合用来画不需要大量实验数据支撑示意图。但R语言等专业绘图工具具有画出各种、 545 | 专业、复杂的数据图。R语言中有tikz包,能自动生成tikz码,这样tikz几乎无所不能。 546 | 对于排版有极致追求的小伙伴,可以参考 547 | \href{http://www.texample.net/tikz/resources/}{http://www.texample.net/tikz/resources/} 548 | 中所列工具,几乎所有作图软件所作的图形都可转成tikz,然后可以自由的在tikz中修改 549 | 图中内容,定义字体等等。实现前文窝工规范中要求的图中字体的一致性的终极目标。 550 | 551 | 552 | \subsection{术语词汇管理}[Manage glossaries] 553 | 推荐使用glossaries包管理术语、缩略语,可以自动生成首次全写,非首次缩写。 554 | 555 | \subsection{\TeX\ 源码编辑器}[\TeX editor] 556 | 推荐:(1)付费软件Winedt;(2)免费软件kile;(3)vim或emaces或sublime等神级编 557 | 译器(需要配置)。 558 | 559 | \subsection{\LaTeX\ 排版重要原则}[\LaTeX\ typesetting rules] 560 | 格式和内容分离是\LaTeX\ 最大优势,所有多次出现的内容、样式等等都可以定义为简单命 561 | 令、环境。这样的好处是方便修改、管理。例如,如果想要把所有的表示向量的符号由粗体 562 | \cs{mathbf}变换到花体\cs{mathcal},只需修改该格式的命令的定义部分,不需要像MS 563 | word那样处处修改。总而言之,使用自定义命令和环境才是正确的使用\LaTeX\ 的方式。 564 | 565 | \section{关于捐助} 566 | 各位刀客和大侠如用的嗨,要解囊相助,请参照图~\ref{zfb}~中提示操作(二维码被矢量化后之后去 567 | 除了头像等冗余无用的部分~)。 568 | 569 | \begin{figure}[!h] 570 | \centering\includegraphics[width=0.4\textwidth]{zfb} 571 | \vspace{0.2em} 572 | \bicaption[Donation]{}{捐助,注意此处是子图只用汉语图题的形式,我工规定可以不用 573 | 英语图题}{Fig.$\!$}{Donation, please note that it is OK to use Chinese caption 574 | only} 575 | \end{figure} 576 | 577 | 578 | % Local Variables: 579 | % TeX-master: "../main" 580 | % TeX-engine: xetex 581 | % End: 582 | -------------------------------------------------------------------------------- /thesis/body/regu.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \chapter[哈尔滨工业大学研究生学位论文撰写规范]{哈尔滨工业大学研究生学 4 | 位论文\protect\\撰写规范}[Harbin Institute of Technology Postgraduate Dissertation Writing Specifications] 5 | 6 | 研究生学位论文是研究生科学研究工作的全面总结,是描述其研究成果、代表其研究水平的 7 | 重要学术文献资料,是申请和授予相应学位的基本依据。学位论文撰写是研究生培养过程的 8 | 基本训练之一,必须按照确定的规范认真执行。研究生应严肃认真地撰写学位论文,指导教 9 | 师应加强指导,严格把关。 10 | 11 | 学位论文撰写应实事求是,杜绝造假和抄袭等行为;应符合国家及各专业部门制定的有关标 12 | 准,符合汉语语法规范。硕士和博士学位论文,除在字数、理论研究的深度及创造性成果等 13 | 方面的要求不同外,撰写规范要求基本一致。人文与社会科学、管理学科可在本撰写规范的 14 | 基础上补充制定专业的学术规范。 15 | 16 | \section{内容要求}[Content specification] 17 | \subsection{题目}[Title] 18 | 19 | 题目应以简明的词语,恰当、准确、科学地反映论文最重要的特定内容(一般不超过25字), 20 | 应中英文对照。题目通常由名词性短语构成,不能含有标点符号;应尽量避免使用不常用的 21 | 缩略词、首字母缩写字、字符、代号和公式等。 22 | 23 | 如题目内容层次很多,难以简化时,可采用题目和副题目相结合的方法。题目与副题目字数 24 | 之和不应超过35字,中文的题目与副题目之间用破折号相连,英文则用冒号相连。副题目起 25 | 补充、阐明题目的作用。题目和副题目在整篇学位论文中的不同地方出现时,应保持一致。 26 | 27 | \subsection{摘要与关键词}[Abstraction and key words] 28 | \subsubsection{摘要}[Abstraction] 29 | 30 | 摘要是论文内容的高度概括,应具有独立性和自含性,即不阅读论文的全文,就能通过摘要 31 | 了解整个论文的必要信息。摘要应包括本论文研究的目的、理论与实际意义、主要研究内容、 32 | 研究方法等,重点突出研究成果和结论。 33 | 34 | 摘要的内容要完整、客观、准确,应做到不遗漏、不拔高、不添加。摘要应按层次逐段简要 35 | 写出,避免将摘要写成目录式的内容介绍。摘要在叙述研究内容、研究方法和主要结论时, 36 | 除作者的价值和经验判断可以使用第一人称外,一般使用第三人称,采用“分析了……原因”、 37 | “认为……”、“对……进行了探讨”等记述方法进行描述。避免主观性的评价意见,避免 38 | 对背景、目的、意义、概念和一般性(常识性)理论叙述过多。 39 | 40 | 摘要需采用规范的名词术语(包括地名、机构名和人名)。对个别新术语或无中文译文的术 41 | 语,可用外文或在中文译文后加括号注明外文。摘要中不宜使用公式、化学结构式、图表、 42 | 非常用的缩写词和非公知公用的符号与术语,不标注引用文献编号。 43 | 44 | 博士学位论文摘要应包括以下几个方面的内容: 45 | 46 | (1)论文的研究背景及目的。简洁准确地交代论文的研究背景与意义、相关领域的研究现 47 | 状、论文所针对的关键科学问题,使读者把握论文选题的必要性和重要性。此部分介绍不宜 48 | 写得过多,一般不多于400字。 49 | 50 | (2)论文的主要研究内容。介绍论文所要解决核心问题开展的主要研究工作以及研究方法 51 | 或研究手段,使读者可以了解论文的研究思路、研究方案、研究方法或手段的合理性与先进 52 | 性。 53 | 54 | (3)论文的主要创新成果。简要阐述论文的新思想、新观点、新技术、新方法、新结论等 55 | 主要信息,使读者可以了解论文的创新性。 56 | 57 | (4)论文成果的理论和实际意义。客观、简要地介绍论文成果的理论和实际意义,使读者 58 | 可以快速获得论文的学术价值。 59 | 60 | \subsubsection{关键词}[Keywords] 61 | 关键词是供检索用的主题词条。关键词应集中体现论文特色,反映研究成果的内涵,具有语 62 | 义性,在论文中有明确的出处,并应尽量采用《汉语主题词表》或各专业主题词表提供的规 63 | 范词,应列取3$\sim$6个关键词,按词条的外延层次从大到小排列。 64 | 65 | \subsection{目录}[Content] 66 | 67 | 论文中各章节的顺序排列表,包括论文中全部章、节、条三级标题及其页码。 68 | 69 | \subsection{论文正文}[Main body] 70 | 71 | 论文正文包括绪论、论文主体及结论等部分。 72 | 73 | \subsubsection{绪论} 74 | 绪论一般作为第1章。绪论应包括:本研究课题的来源、背景及其理论意义与实际意义;国 75 | 内外与课题相关研究领域的研究进展及成果、存在的不足或有待深入研究的问题,归纳出将 76 | 要开展研究的理论分析框架、研究内容、研究程序和方法。 77 | 78 | 绪论部分要注意对论文所引用国内外文献的准确标注。绪论的主要研究内容的撰写宜使用将 79 | 来时态,切忌将论文目录直接作为研究内容。 80 | 81 | \subsubsection{论文主体} 82 | 论文主体是学位论文的主要部分,应该结构严谨,层次清晰,重点突出,文字简练、通顺。 83 | 论文各章之间应该前后关联,构成一个有机的整体。论文给出的数据必须真实可靠,推理正 84 | 确,结论明确,无概念性和科学性错误。对于科学实验、计算机仿真的条件、实验过程、仿 85 | 真过程等需加以叙述,避免直接给出结果、曲线和结论。引用他人研究成果或采用他人成说 86 | 时,应注明出处,不得将其与本人提出的理论分析混淆在一起。 87 | 88 | 论文主体各章后应有一节“本章小结”,实验方法或材料等章节可不写“本章小结”。各章 89 | 小结是对各章研究内容、方法与成果的简洁准确的总结与概括,也是论文最后结论的依据。 90 | 91 | \subsubsection{结论} 92 | 结论作为学位论文正文的组成部分,单独排写,不加章标题序号,不标注 93 | 94 | 95 | 96 | 97 | % Local Variables: 98 | % TeX-master: "../main" 99 | % TeX-engine: xetex 100 | % End: -------------------------------------------------------------------------------- /thesis/bthesistitle.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.10 (http://cairographics.org) 3 | %%CreationDate: Sat Aug 26 23:43:48 2017 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 0 -1 422 55 8 | %%EndComments 9 | %%BeginProlog 10 | save 11 | 50 dict begin 12 | /q { gsave } bind def 13 | /Q { grestore } bind def 14 | /cm { 6 array astore concat } bind def 15 | /w { setlinewidth } bind def 16 | /J { setlinecap } bind def 17 | /j { setlinejoin } bind def 18 | /M { setmiterlimit } bind def 19 | /d { setdash } bind def 20 | /m { moveto } bind def 21 | /l { lineto } bind def 22 | /c { curveto } bind def 23 | /h { closepath } bind def 24 | /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 25 | 0 exch rlineto 0 rlineto closepath } bind def 26 | /S { stroke } bind def 27 | /f { fill } bind def 28 | /f* { eofill } bind def 29 | /n { newpath } bind def 30 | /W { clip } bind def 31 | /W* { eoclip } bind def 32 | /BT { } bind def 33 | /ET { } bind def 34 | /pdfmark where { pop globaldict /?pdfmark /exec load put } 35 | { globaldict begin /?pdfmark /pop load def /pdfmark 36 | /cleartomark load def end } ifelse 37 | /BDC { mark 3 1 roll /BDC pdfmark } bind def 38 | /EMC { mark /EMC pdfmark } bind def 39 | /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def 40 | /Tj { show currentpoint cairo_store_point } bind def 41 | /TJ { 42 | { 43 | dup 44 | type /stringtype eq 45 | { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse 46 | } forall 47 | currentpoint cairo_store_point 48 | } bind def 49 | /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore 50 | cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def 51 | /Tf { pop /cairo_font exch def /cairo_font_matrix where 52 | { pop cairo_selectfont } if } bind def 53 | /Td { matrix translate cairo_font_matrix matrix concatmatrix dup 54 | /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point 55 | /cairo_font where { pop cairo_selectfont } if } bind def 56 | /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def 57 | cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def 58 | /g { setgray } bind def 59 | /rg { setrgbcolor } bind def 60 | /d1 { setcachedevice } bind def 61 | /cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def 62 | /cairo_image { image cairo_flush_ascii85_file } def 63 | /cairo_imagemask { imagemask cairo_flush_ascii85_file } def 64 | %%EndProlog 65 | %%BeginSetup 66 | %%EndSetup 67 | %%Page: 1 1 68 | %%BeginPageSetup 69 | %%PageBoundingBox: 0 -1 422 55 70 | %%EndPageSetup 71 | q 0 -1 422 56 rectclip q 72 | 0 g 73 | 20.781 0.454 m 20.582 0.704 20.312 4.915 20.18 9.95 c 20.047 14.927 19.844 74 | 19.544 19.723 20.208 c 19.512 21.403 19.488 21.415 17.988 21.192 c 17.156 75 | 21.067 14.938 20.813 13.062 20.634 c 8.965 20.235 7.098 19.766 4.219 18.399 76 | c 0.973 16.864 0.621 16.958 0.168 19.442 c -0.25 21.751 0.102 22.798 1.293 77 | 22.798 c 1.676 22.798 2.816 23.032 3.828 23.317 c 5.516 23.79 6.543 24.063 78 | 12.273 25.559 c 13.32 25.833 15.043 26.298 16.105 26.599 c 17.168 26.895 79 | 18.309 27.141 18.641 27.141 c 19.082 27.141 19.242 27.466 19.242 28.388 80 | c 19.242 29.161 19.551 29.989 20.055 30.567 c 20.871 31.505 l 22.859 30.806 81 | l 23.953 30.423 25.258 29.72 25.754 29.243 c 26.66 28.376 l 32.27 28.821 82 | l 35.352 29.067 38.203 29.302 38.602 29.349 c 40.082 29.509 40.516 29.274 83 | 41.535 27.774 c 42.109 26.927 42.68 26.153 42.801 26.056 c 43.188 25.739 84 | 43.527 22.552 43.281 21.571 c 43.098 20.833 42.824 20.626 42.02 20.626 85 | c 41.457 20.626 40.902 20.778 40.789 20.962 c 40.676 21.145 39.551 21.638 86 | 38.293 22.056 c 36.312 22.716 35.297 22.806 30.789 22.72 c 25.574 22.618 87 | l 25.324 20.626 l 25.188 19.532 25.043 14.727 25 9.95 c 24.961 5.177 24.859 88 | 0.981 24.773 0.634 c 24.652 0.138 24.238 0.001 22.879 0.001 c 21.918 0.001 89 | 20.977 0.204 20.781 0.454 c h 90 | 202.465 0.454 m 202.309 0.7 202.234 4.911 202.301 9.809 c 202.375 15.247 91 | 202.246 20.274 201.977 22.72 c 201.535 26.731 l 200.133 26.966 l 198.18 92 | 27.298 196.074 26.872 194.555 25.845 c 193.848 25.364 193.043 24.97 192.766 93 | 24.97 c 192.152 24.97 189.68 29.513 189.68 30.641 c 189.68 31.294 189.945 94 | 31.493 191.039 31.681 c 191.785 31.806 192.965 32.059 193.66 32.239 c 194.359 95 | 32.419 195.309 32.563 195.777 32.567 c 196.242 32.567 197.746 32.907 199.117 96 | 33.325 c 201.609 34.083 l 201.707 41.919 l 201.805 49.759 l 203.684 49.864 97 | l 204.992 49.942 206.055 49.751 207.18 49.239 c 209.047 48.388 209.301 98 | 47.942 208.66 46.665 c 208.371 46.095 208.152 43.868 208.074 40.786 c 207.957 99 | 35.825 l 209.273 35.825 l 209.996 35.825 211.422 36.095 212.445 36.427 100 | c 214.23 37.001 214.328 36.997 214.855 36.337 c 215.16 35.954 215.578 35.196 101 | 215.789 34.649 c 215.996 34.102 216.293 33.653 216.449 33.653 c 216.832 102 | 33.653 217.645 30.641 217.484 29.806 c 217.367 29.192 216.957 29.13 213.016 103 | 29.114 c 210.633 29.102 208.41 28.97 208.082 28.817 c 207.363 28.481 206.992 104 | 22.196 206.918 9.044 c 206.879 2.056 206.781 0.641 206.328 0.352 c 205.535 105 | -0.144 202.801 -0.077 202.465 0.454 c h 106 | 407.906 2.102 m 406.441 2.333 402.094 5.352 402.332 5.974 c 402.445 6.27 107 | 402.707 6.513 402.914 6.513 c 403.426 6.513 410.059 13.184 410.059 13.7 108 | c 410.059 13.927 410.184 14.114 410.332 14.114 c 410.895 14.122 413.797 109 | 19.571 414.762 22.434 c 417.156 29.536 417.203 38.747 414.895 47.946 c 110 | 414.594 49.141 414.215 50.649 414.047 51.294 c 413.758 52.427 413.781 52.462 111 | 414.707 52.259 c 417.59 51.634 417.832 51.333 419.203 46.681 c 422.32 36.099 112 | 422.586 26.45 420.016 17.052 c 419.426 14.895 416.766 9.188 415.988 8.407 113 | c 415.711 8.134 415.488 7.778 415.488 7.618 c 415.488 7.462 414.449 6.247 114 | 413.18 4.919 c 410.883 2.516 409.605 1.833 407.906 2.102 c h 115 | 262.418 2.829 m 260.957 3.532 260.273 4.263 260.258 5.145 c 260.25 5.485 116 | 260.02 6.302 259.746 6.954 c 257.246 12.884 256.172 26.763 257.664 33.872 117 | c 258.633 38.485 259.824 41.72 261.766 45.02 c 263.887 48.626 268.145 52.833 118 | 269.668 52.833 c 270.238 52.833 274.098 50.97 274.633 50.438 c 274.883 119 | 50.188 275.41 49.884 275.809 49.755 c 276.207 49.63 276.531 49.407 276.531 120 | 49.255 c 276.531 49.001 274.07 46.681 273.797 46.681 c 273.5 46.681 270.016 121 | 42.997 270.016 42.684 c 270.016 42.493 269.887 42.341 269.73 42.341 c 269.445 122 | 42.341 266.758 38.907 266.758 38.54 c 266.758 38.434 266.391 37.735 265.934 123 | 36.993 c 264.969 35.411 263.863 32.599 262.914 29.313 c 262.355 27.368 124 | 262.238 25.77 262.254 20.083 c 262.273 13.337 262.504 11.423 263.945 5.97 125 | c 264.887 2.403 264.906 2.169 264.277 2.196 c 263.953 2.204 263.113 2.493 126 | 262.418 2.829 c h 127 | 386.898 2.415 m 378.605 3.438 377.863 3.704 377.195 5.88 c 375.809 10.376 128 | 373.941 12.786 371.555 13.149 c 370.211 13.352 370.016 13.251 367.859 11.231 129 | c 365.59 9.106 365.094 8.774 361.84 7.181 c 360.895 6.716 360.121 6.227 130 | 360.121 6.095 c 360.121 5.661 357.707 4.341 356.914 4.341 c 354.457 4.341 131 | 348.902 8.356 348.902 10.134 c 348.902 10.813 349.148 10.856 353.184 10.856 132 | c 356.52 10.856 358 11.024 359.879 11.614 c 361.207 12.032 362.293 12.52 133 | 362.293 12.7 c 362.293 12.88 362.457 13.028 362.66 13.028 c 363.078 13.028 134 | 366.273 16.266 366.273 16.684 c 366.273 17.184 364.309 18.345 362.422 18.966 135 | c 360.445 19.61 360.137 20.067 360.129 22.356 c 360.121 23.665 360.91 25.829 136 | 361.527 26.212 c 361.746 26.345 362.91 25.876 364.117 25.169 c 365.324 137 | 24.462 366.445 23.884 366.609 23.884 c 366.773 23.884 367.113 23.638 367.359 138 | 23.341 c 367.605 23.044 368.086 22.798 368.426 22.798 c 369.125 22.798 139 | 369.891 25.466 369.891 27.891 c 369.891 29.438 369.422 29.681 367.969 28.872 140 | c 367.48 28.602 365.57 28.431 362.988 28.419 c 359.531 28.411 358.57 28.282 141 | 357.477 27.696 c 356.164 26.985 356.152 26.985 355.625 27.696 c 355.055 142 | 28.458 354.332 31.302 354.332 32.774 c 354.332 33.849 355.266 34.282 358.246 143 | 34.587 c 362.355 35.009 368.797 36.509 370.098 37.349 c 370.312 37.485 144 | 372.266 38.192 374.441 38.919 c 376.617 39.645 378.758 40.47 379.199 40.747 145 | c 380.543 41.595 381.707 41.372 382.68 40.079 c 384.594 37.528 385.734 146 | 33.751 384.637 33.587 c 384.391 33.548 383.02 33.509 381.59 33.493 c 378.305 147 | 33.466 377.375 32.841 375.738 29.532 c 374.648 27.325 373.168 21.665 373.152 148 | 19.653 c 373.148 18.552 378.91 12.809 380.75 12.087 c 381.047 11.97 381.781 149 | 11.649 382.379 11.38 c 382.973 11.106 384.902 10.372 386.668 9.747 c 390.215 150 | 8.489 392.648 7.013 393.762 5.446 c 394.797 3.997 394.684 3.372 393.324 151 | 2.946 c 392.031 2.548 388.324 2.239 386.898 2.415 c h 152 | 152.227 4.099 m 149.426 4.513 149.035 4.825 148.445 7.145 c 148.23 7.993 153 | 147.895 8.684 147.699 8.684 c 147.504 8.684 147.344 8.931 147.344 9.227 154 | c 147.344 9.528 147.098 9.77 146.801 9.77 c 146.5 9.77 146.258 9.931 146.258 155 | 10.126 c 146.258 10.52 143.5 11.942 142.73 11.942 c 142.457 11.942 141.797 156 | 11.481 141.262 10.923 c 138.781 8.333 136.094 6.876 133.781 6.876 c 132.195 157 | 6.876 129.453 7.86 128.688 8.708 c 128.082 9.376 128.082 9.442 128.707 158 | 10.134 c 129.066 10.532 129.656 10.856 130.016 10.856 c 131.078 10.856 135.316 159 | 12.778 137.27 14.145 c 138.605 15.083 l 136.484 17.313 l 135.305 18.552 160 | 134.051 19.54 133.66 19.54 c 132.48 19.54 131.969 20.563 132 22.849 c 132.035 161 | 25.462 132.816 26.563 134.383 26.22 c 134.996 26.087 135.402 26.149 135.402 162 | 26.376 c 135.402 26.993 142.492 29.04 144.098 28.888 c 145.492 28.755 145.5 163 | 28.759 144.836 29.485 c 143.207 31.274 143 32.27 143 38.341 c 143 44.794 164 | 142.957 44.888 140.816 43.102 c 139.562 42.056 l 139.582 38.852 l 139.59 165 | 37.087 139.672 34.782 139.762 33.724 c 139.922 31.813 139.918 31.798 138.098 166 | 30.087 c 135.477 27.626 131.059 26.356 131.059 28.067 c 131.059 28.333 167 | 131.547 29.274 132.145 30.161 c 132.742 31.044 133.23 31.907 133.23 32.079 168 | c 133.234 32.247 133.496 32.876 133.816 33.474 c 134.238 34.263 134.445 169 | 35.942 134.574 39.626 c 134.691 42.876 134.926 44.962 135.227 45.442 c 170 | 135.656 46.13 139.707 47.766 140.977 47.766 c 141.246 47.766 141.938 48.009 171 | 142.508 48.309 c 143.953 49.059 146.387 48.985 148.055 48.134 c 149.832 172 | 47.227 150.133 46.317 149.238 44.587 c 148.355 42.888 147.648 39.95 147.613 173 | 37.852 c 147.582 35.696 148.406 34.516 150.328 33.966 c 152.465 33.356 174 | 152.77 33.04 152.77 31.454 c 152.77 30.411 152.527 29.841 151.801 29.165 175 | c 150.82 28.255 148.48 27.618 147.629 28.028 c 147.371 28.153 147.473 28.044 176 | 147.855 27.786 c 149.988 26.349 150.328 25.423 149.152 24.247 c 148.754 177 | 23.849 148.43 23.282 148.43 22.993 c 148.43 22.477 148.07 21.552 146.543 178 | 18.102 c 145.828 16.485 l 146.91 15.571 l 147.504 15.067 148.383 14.329 179 | 148.863 13.931 c 150.176 12.845 153.766 11.083 156.207 10.329 c 162.23 180 | 8.47 164.34 7.106 163.805 5.415 c 163.562 4.653 163.234 4.54 159.645 3.985 181 | c 156.93 3.567 155.723 3.587 152.227 4.099 c h 182 | 142.797 24.309 m 142.523 25.177 141.594 25.141 139.391 24.181 c 137.582 183 | 23.391 l 141.676 19.454 l 142.344 21.552 l 142.707 22.708 142.914 23.95 184 | 142.797 24.309 c h 185 | 315.25 4.927 m 312.305 6.091 309.629 8.333 309.27 9.942 c 308.648 12.696 186 | 308.348 16.372 308.375 20.774 c 308.395 23.579 308.402 26.149 308.395 26.485 187 | c 308.383 26.927 307.93 26.657 306.797 25.544 c 304.602 23.38 302.277 21.86 188 | 300.727 21.575 c 299.773 21.399 299.355 21.11 299.219 20.528 c 299.113 189 | 20.083 298.762 19.005 298.438 18.13 c 297.465 15.505 297.832 15.165 299.734 190 | 16.923 c 301.922 18.938 302.586 18.934 302.586 16.919 c 302.586 14.095 191 | 300.703 10.075 298.281 7.72 c 297.199 6.669 296.75 6.661 295.832 7.692 c 192 | 294.453 9.227 293.852 12.157 294.121 15.993 c 294.41 20.114 294.184 21.352 193 | 293.145 21.352 c 292.25 21.352 291.098 20.782 290.043 19.825 c 288.664 194 | 18.571 287.23 19.645 286.145 22.735 c 285.496 24.583 286.012 25.618 287.711 195 | 25.884 c 290.102 26.255 293.352 27.255 293.762 27.743 c 293.98 28.009 294.273 196 | 28.227 294.41 28.227 c 294.547 28.227 295.02 28.606 295.457 29.067 c 295.895 197 | 29.532 296.527 30.009 296.859 30.134 c 297.781 30.47 300.223 28.536 300.621 198 | 27.149 c 300.957 25.985 l 302.855 28.532 l 303.902 29.934 304.758 31.239 199 | 304.758 31.434 c 304.758 31.63 305 32.29 305.301 32.903 c 305.598 33.516 200 | 306.086 34.52 306.387 35.13 c 306.684 35.743 306.93 36.528 306.93 36.868 201 | c 306.93 37.212 307.07 37.645 307.242 37.833 c 307.414 38.024 307.973 39.403 202 | 308.48 40.903 c 308.988 42.399 309.562 44.028 309.758 44.52 c 309.953 45.013 203 | 310.395 46.474 310.734 47.766 c 311.078 49.063 311.625 50.813 311.949 51.657 204 | c 312.52 53.153 312.582 53.192 314.184 53.196 c 315.09 53.196 316.027 53.001 205 | 316.266 52.763 c 316.848 52.177 316.793 50.329 316.156 49.216 c 315.512 206 | 48.091 315.449 44.372 316.066 43.724 c 316.312 43.458 316.762 42.774 317.059 207 | 42.196 c 317.359 41.618 318.426 40.282 319.438 39.224 c 320.445 38.165 208 | 321.992 36.438 322.871 35.388 c 325.047 32.786 327.559 30.399 328.117 30.399 209 | c 328.371 30.399 328.633 30.27 328.699 30.11 c 328.766 29.954 329.719 29.364 210 | 330.812 28.798 c 333.949 27.177 336.176 25.614 336.363 24.899 c 336.914 211 | 22.786 335.586 22.224 330.949 22.61 c 325.246 23.087 323.25 23.989 323.223 212 | 26.099 c 323.211 27.255 321.867 30.399 321.387 30.399 c 321.195 30.399 213 | 321.043 30.641 321.043 30.942 c 321.043 31.239 320.879 31.485 320.68 31.485 214 | c 320.48 31.485 320.02 31.77 319.656 32.118 c 319.293 32.466 318.602 33.083 215 | 318.117 33.493 c 317.637 33.903 316.508 35.059 315.613 36.067 c 314.719 216 | 37.075 313.648 38.075 313.234 38.29 c 312.551 38.645 312.383 38.477 311.355 217 | 36.438 c 309.703 33.149 309.098 31.524 309.098 30.349 c 309.098 29.337 218 | 309.145 29.309 310.508 29.528 c 311.625 29.708 312.062 29.606 312.633 29.036 219 | c 313.273 28.395 313.312 28.106 312.992 26.263 c 312.797 25.13 312.723 220 | 24.118 312.828 24.016 c 312.93 23.911 313.723 24.247 314.586 24.755 c 315.449 221 | 25.266 316.488 25.833 316.895 26.013 c 317.301 26.192 317.852 26.602 318.113 222 | 26.923 c 318.875 27.841 319.586 27.606 320.156 26.247 c 321.023 24.165 223 | 320.57 21.712 319.312 21.712 c 319.102 21.712 318.875 21.591 318.809 21.442 224 | c 318.648 21.079 315.371 18.458 315.082 18.458 c 314.953 18.458 314.355 225 | 17.997 313.754 17.431 c 312.664 16.415 312.66 16.395 313.051 14.278 c 313.27 226 | 13.102 313.68 11.915 313.961 11.63 c 314.789 10.802 317.961 10.665 319.562 227 | 11.388 c 321.227 12.138 321.766 13.536 321.766 17.122 c 321.766 18.431 228 | 321.93 19.602 322.129 19.724 c 322.82 20.153 323.934 19.493 324.164 18.524 229 | c 324.293 17.989 324.52 17.388 324.672 17.188 c 325.281 16.384 326.793 230 | 9.849 326.809 7.962 c 326.824 6.044 326.402 5.669 323.867 5.376 c 319.918 231 | 4.919 315.816 4.704 315.25 4.927 c h 232 | 121.473 6.602 m 120.414 9.708 120.145 12.118 120.258 17.368 c 120.383 22.977 233 | l 118.77 22.856 l 117.723 22.774 116.785 22.423 116.117 21.86 c 115.547 234 | 21.38 114.852 20.989 114.574 20.989 c 113.812 20.989 112.613 23.634 112.512 235 | 25.524 c 112.426 27.153 112.453 27.2 113.789 27.669 c 114.539 27.931 115.84 236 | 28.251 116.684 28.376 c 119.211 28.759 122.801 30.251 124.078 31.454 c 237 | 125.223 32.532 126.121 32.388 127.402 30.927 c 128.809 29.325 128.879 27.759 238 | 127.621 26.056 c 127.125 25.38 126.715 24.556 126.715 24.22 c 126.715 23.888 239 | 126.496 22.981 126.227 22.212 c 125.562 20.298 125.199 17.368 125.625 17.368 240 | c 125.812 17.368 126.469 17.86 127.078 18.454 c 128.398 19.743 129.973 241 | 19.934 129.973 18.806 c 129.973 18.403 129.73 17.485 129.43 16.77 c 129.133 242 | 16.056 128.887 15.208 128.887 14.884 c 128.883 14.559 128.641 13.829 128.344 243 | 13.259 c 128.043 12.688 127.801 12.063 127.801 11.872 c 127.801 11.454 244 | 124.668 7.247 123.875 6.602 c 123.57 6.356 122.941 6.153 122.473 6.153 c 245 | 122.008 6.153 121.559 6.356 121.473 6.602 c h 246 | 181.875 7.872 m 180.062 12.13 179.805 13.708 180.109 18.638 c 180.562 25.884 247 | 180.512 26.438 179.473 25.903 c 178.559 25.434 177.449 24.755 176.965 24.364 248 | c 175.574 23.251 174.926 23.434 173.891 25.224 c 173.34 26.177 172.785 249 | 27.04 172.66 27.141 c 172.535 27.239 172.246 27.856 172.023 28.513 c 171.676 250 | 29.528 171.715 29.798 172.289 30.372 c 172.656 30.743 173.668 31.153 174.535 251 | 31.282 c 176.316 31.552 179.082 32.575 183.066 34.442 c 183.906 34.833 252 | 184.887 35.063 185.242 34.95 c 185.996 34.712 188.086 31.653 188.43 30.282 253 | c 188.625 29.513 188.434 29.122 187.406 28.149 c 186.711 27.497 185.949 254 | 26.583 185.719 26.126 c 185.199 25.11 184.73 16.278 185.195 16.298 c 185.91 255 | 16.325 187.492 18.048 189.113 20.559 c 190.293 22.388 191.008 23.165 191.426 256 | 23.079 c 192.348 22.888 192.082 19.411 190.965 16.966 c 190.09 15.056 188.59 257 | 12.298 188.234 11.942 c 187.844 11.552 186.426 9.427 186.426 9.231 c 186.426 258 | 9.118 185.91 8.462 185.281 7.77 c 183.727 6.063 182.633 6.095 181.875 7.872 259 | c h 260 | 57.926 8.548 m 57.348 9.239 56.527 11.497 56.52 12.403 c 56.512 13.173 261 | 57.469 13.575 60.133 13.915 c 62.109 14.169 63.715 14.563 68.691 16.024 262 | c 72.648 17.184 72.555 17.036 72.473 22.192 c 72.441 24.384 72.375 24.599 263 | 71.895 24.118 c 71.594 23.817 71.352 23.489 71.352 23.384 c 71.352 23.024 264 | 67.984 19.54 67.637 19.54 c 66.953 19.54 63.852 22.997 63.441 24.216 c 265 | 63.102 25.216 63.125 25.606 63.551 26.259 c 64.004 26.95 64.391 27.063 66.266 266 | 27.044 c 67.816 27.028 68.645 27.196 69.113 27.626 c 69.48 27.954 69.945 267 | 28.227 70.145 28.227 c 70.348 28.227 70.789 28.528 71.125 28.899 c 71.664 268 | 29.493 71.707 30.165 71.488 34.52 c 71.184 40.575 71.41 41.255 73.719 41.255 269 | c 75.59 41.255 78.469 40.032 78.758 39.114 c 78.875 38.739 78.723 37.802 270 | 78.41 37.028 c 77.949 35.876 77.867 34.169 77.945 27.493 c 78.043 19.36 271 | l 78.926 19.458 l 79.414 19.513 79.855 19.602 79.91 19.657 c 80.43 20.177 272 | 81.168 25.462 81.637 32.024 c 82.121 38.794 82.473 41.677 83.508 47.29 273 | c 83.766 48.669 84.703 49.302 86.113 49.036 c 88.926 48.509 89.969 47.001 274 | 88.707 45.29 c 88.18 44.583 87.824 43.364 87.617 41.571 c 87.449 40.102 275 | 87.145 37.763 86.938 36.368 c 86.73 34.974 86.566 32.778 86.566 31.481 276 | c 86.57 29.13 l 87.5 30.216 l 89.414 32.446 89.805 32.942 89.805 33.114 277 | c 89.805 33.212 90.051 33.579 90.352 33.927 c 90.652 34.274 91.355 35.114 278 | 91.918 35.79 c 93.238 37.384 94.32 37.161 96.156 34.923 c 97.621 33.134 279 | 97.68 31.735 96.301 31.298 c 95.895 31.165 93.906 29.446 91.887 27.47 c 280 | 89.871 25.493 87.613 23.595 86.875 23.247 c 85.812 22.751 85.5 22.38 85.395 281 | 21.481 c 85.316 20.856 85.316 20.165 85.391 19.942 c 85.551 19.462 93.125 282 | 19.423 95.594 19.891 c 96.492 20.063 97.84 20.321 98.59 20.462 c 99.645 283 | 20.665 100.113 20.579 100.66 20.087 c 102.062 18.817 103.727 14.122 103.496 284 | 12.095 c 103.383 11.095 103.289 11.04 101.746 11.079 c 100.852 11.102 98.902 285 | 11.548 97.418 12.075 c 94.828 12.989 94.406 13.028 87.285 13.016 c 82.078 286 | 13.005 79.203 12.845 77.684 12.477 c 76.488 12.188 74.68 11.95 73.668 11.946 287 | c 70.68 11.938 63.766 10.274 60.375 8.747 c 58.289 7.809 58.52 7.829 57.926 288 | 8.548 c h 289 | 11.016 28.677 m 10.027 30.2 10.016 30.266 10.125 35.462 c 10.184 38.349 290 | 10.039 42.02 9.805 43.622 c 9.43 46.177 9.449 46.677 9.977 47.692 c 10.434 291 | 48.583 10.805 48.845 11.559 48.825 c 13.102 48.782 15.043 47.958 15.441 292 | 47.177 c 15.754 46.567 15.988 46.513 17.168 46.794 c 18.238 47.048 18.73 293 | 46.985 19.465 46.505 c 20.871 45.583 20.414 44.153 17.934 41.712 c 16.324 294 | 40.126 15.863 39.415 15.711 38.278 c 15.52 36.849 l 16.566 37.825 l 18.434 295 | 39.563 20.707 40.962 21.301 40.735 c 21.746 40.563 21.824 40.177 21.656 296 | 38.95 c 21.469 37.587 20.539 35.29 19.953 34.739 c 19.844 34.641 19.398 297 | 34.091 18.957 33.516 c 16.648 30.509 13.129 27.149 12.281 27.141 c 12.133 298 | 27.141 11.562 27.833 11.016 28.677 c h 299 | 25.684 31.841 m 24.75 32.653 23.625 34.032 23.191 34.907 c 22.434 36.415 300 | 22.41 36.766 22.676 41.681 c 22.832 44.532 22.977 48.329 23 50.118 c 23.023 301 | 51.911 23.172 53.579 23.332 53.829 c 23.781 54.52 25.348 54.368 26.758 302 | 53.497 c 28.023 52.712 l 27.809 49.903 l 27.59 47.091 l 28.754 47.481 l 303 | 29.395 47.692 30.172 48.091 30.488 48.36 c 31.309 49.067 32.543 48.966 32.98 304 | 48.153 c 33.574 47.04 33.41 44.423 32.695 43.606 c 31.887 42.681 29.879 305 | 41.255 29.387 41.255 c 29.18 41.255 29.012 41.11 29.012 40.934 c 29.012 306 | 40.759 28.523 40.415 27.926 40.169 c 26.965 39.77 26.84 39.544 26.844 38.224 307 | c 26.852 36.138 27.227 35.72 29.117 35.681 c 31.188 35.634 31.945 36.306 308 | 32.762 38.895 c 33.109 39.993 33.586 40.888 33.824 40.88 c 35.031 40.849 309 | 36.609 38.337 36.609 36.45 c 36.609 35.759 36.859 34.489 37.164 33.63 c 310 | 37.688 32.141 37.676 32.028 36.973 31.321 c 36.32 30.665 35.703 30.567 311 | 31.809 30.474 c 27.383 30.368 l h 312 | 296.914 34.356 m 294.777 35.325 294.484 36.071 294.785 39.774 c 295.031 313 | 42.79 295.594 44.161 296.578 44.141 c 296.945 44.134 298.684 41.708 300.68 314 | 38.423 c 301.555 36.985 301.719 35.466 301.125 34.352 c 300.637 33.446 315 | 298.918 33.446 296.914 34.356 c h 316 | 124.816 38.591 m 122.375 39.829 l 122.375 42.13 l 122.375 45.54 123.875 317 | 48.489 125.613 48.489 c 126.07 48.489 126.535 48.13 126.781 47.587 c 127.008 318 | 47.087 127.332 46.681 127.496 46.681 c 127.664 46.681 127.801 46.438 127.801 319 | 46.138 c 127.801 45.841 127.934 45.595 128.098 45.595 c 128.418 45.595 320 | 129.484 43.595 130.191 41.673 c 130.938 39.638 129.73 37.259 127.984 37.321 321 | c 127.586 37.337 126.16 37.907 124.816 38.591 c h 322 | 185.168 39.817 m 183 40.587 182.699 41.337 183.145 44.864 c 183.723 49.47 323 | 185.5 51.028 186.973 48.22 c 187.363 47.474 187.773 46.782 187.879 46.681 324 | c 189.934 44.794 191.742 41.169 191.312 39.813 c 191.113 39.184 190.789 325 | 39.091 189.023 39.13 c 187.895 39.157 186.16 39.466 185.168 39.817 c h 326 | 368.988 42.251 m 365.379 44.106 364.602 48.188 367.129 52.016 c 367.988 327 | 53.321 369.418 53.618 369.754 52.563 c 370.152 51.298 371.145 49.028 371.375 328 | 48.852 c 371.504 48.755 371.977 47.817 372.426 46.77 c 374.074 42.923 372.277 329 | 40.559 368.988 42.251 c h 330 | 368.988 42.251 m f 331 | Q Q 332 | showpage 333 | %%Trailer 334 | end restore 335 | %%EOF 336 | -------------------------------------------------------------------------------- /thesis/front/cover.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | \hitsetup{ 4 | %****************************** 5 | % 注意: 6 | % 1. 配置里面不要出现空行 7 | % 2. 不需要的配置信息可以删除 8 | %****************************** 9 | % 10 | %===== 11 | % 秘级 12 | %===== 13 | statesecrets={公开}, 14 | natclassifiedindex={TM301.2}, 15 | intclassifiedindex={62-5}, 16 | % 17 | %========= 18 | % 中文信息 19 | %========= 20 | % ctitleone={局部多孔质气体静压},%本科生封面使用 21 | % ctitletwo={轴承关键技术的研究},%本科生封面使用 22 | ctitlecover={局部多孔质气体静压轴承关键技术的研究},%放在封面中使用,自由断行 23 | ctitle={局部多孔质气体静压轴承关键技术的研究},%放在原创性声明中使用 24 | % csubtitle={一条副标题}, %一般情况没有,可以注释掉 25 | cxueke={工学}, 26 | csubject={仪器科学与技术}, 27 | caffil={仪器科学与工程学院}, 28 | cauthor={于冬梅}, 29 | csupervisor={某某某教授}, 30 | cassosupervisor={某某某教授}, % 副指导老师 31 | ccosupervisor={某某某教授}, % 联合指导老师 32 | % 日期自动使用当前时间,若需指定按如下方式修改: 33 | %cdate={超新星纪元}, 34 | cstudentid={9527}, 35 | % cstudenttype={同等学力人员}, %非全日制教育申请学位者 36 | cnumber={no9527}, %编号 37 | % cpositionname={哈铁西站}, %博士后站名称 38 | % cstartdate={3050年9月10日}, %到站日期 39 | % cenddate={3090年10月10日}, %出站日期 40 | %(同等学力人员)、(工程硕士)、(工商管理硕士)、 41 | %(高级管理人员工商管理硕士)、(公共管理硕士)、(中职教师)、(高校教师)等 42 | % 43 | % 44 | %========= 45 | % 英文信息 46 | %========= 47 | etitle={Research on key technologies of partial porous externally pressurized gas bearing}, 48 | % esubtitle={This is the sub title}, 49 | exueke={Engineering}, 50 | esubject={Instruments Science and Technology}, 51 | eaffil={\emultiline[t]{School of Instrumentation Science \\ and Engineering}}, 52 | eauthor={Yu Dongmei}, 53 | esupervisor={Professor XXX}, 54 | eassosupervisor={XXX}, 55 | % 日期自动生成,若需指定按如下方式修改: 56 | % edate={December, 2017}, 57 | % estudenttype={Master of Art}, 58 | % 59 | % 关键词用“英文逗号”分割 60 | ckeywords={\TeX, \LaTeX, CJK, 嗨!, thesis}, 61 | ekeywords={\TeX, \LaTeX, CJK, template, thesis}, 62 | } 63 | 64 | \begin{cabstract} 65 | 66 | 摘要的字数(以汉字计),硕士学位论文一般为500 $\sim$ 1000字,博士学位论文为1000 $\sim$ 2000字, 67 | 均以能将规定内容阐述清楚为原则,文字要精练,段落衔接要流畅。摘要页不需写出论文题目。 68 | 英文摘要与中文摘要的内容应完全一致,在语法、用词上应准确无误,语言简练通顺。 69 | 留学生的英文版博士学位论文中应有不少于3000字的“详细中文摘要”。 70 | 71 | 关键词是为了文献标引工作、用以表示全文主要内容信息的单词或术语。关键词不超过 5 72 | 个,每个关键词中间用分号分隔。(模板作者注:关键词分隔符不用考虑,模板会自动处 73 | 理。英文关键词同理。) 74 | \end{cabstract} 75 | 76 | \begin{eabstract} 77 | An abstract of a dissertation is a summary and extraction of research work 78 | and contributions. Included in an abstract should be description of research 79 | topic and research objective, brief introduction to methodology and research 80 | process, and summarization of conclusion and contributions of the 81 | research. An abstract should be characterized by independence and clarity and 82 | carry identical information with the dissertation. It should be such that the 83 | general idea and major contributions of the dissertation are conveyed without 84 | reading the dissertation. 85 | 86 | An abstract should be concise and to the point. It is a misunderstanding to 87 | make an abstract an outline of the dissertation and words ``the first 88 | chapter'', ``the second chapter'' and the like should be avoided in the 89 | abstract. 90 | 91 | Key words are terms used in a dissertation for indexing, reflecting core 92 | information of the dissertation. An abstract may contain a maximum of 5 key 93 | words, with semi-colons used in between to separate one another. 94 | \end{eabstract} 95 | -------------------------------------------------------------------------------- /thesis/front/denotation.tex: -------------------------------------------------------------------------------- 1 | \begin{denotation} 2 | \begin{table}[h]%此处最好是h 3 | \caption{国际单位制中具有专门名称的导出单位} 4 | \vspace{0.5em}\centering\wuhao 5 | \begin{tabular}{ccccc} 6 | \toprule[1.5pt] 7 | 量的名称&单位名称&单位符号&其它表示实例\\ 8 | \midrule[1pt] 9 | 频率&赫[兹]&Hz&s-1\\ 10 | \bottomrule[1.5pt] 11 | \end{tabular} 12 | \end{table} 13 | \end{denotation} 14 | -------------------------------------------------------------------------------- /thesis/hithesis.ist: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesis.ist', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `ist') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% This is the configuration file of the hithesis package with LaTeX2e. 24 | %% 25 | headings_flag 1 26 | heading_prefix "\{\\vskip -\\baselineskip\\centering\\normalsize\\textbf\{" 27 | heading_suffix "\}\\par\}\\nopagebreak\\wuhao\n" 28 | delim_0 "\\hspace*{\\fill}" 29 | delim_1 "\\hspace*{\\fill}" 30 | \endinput 31 | %% 32 | %% End of file `hithesis.ist'. 33 | -------------------------------------------------------------------------------- /thesis/hithesis.sty: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `examples/hitbook/chinese/hithesis.sty', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `hithesis-style') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% To produce the documentation run the original source files ending with `.dtx' 24 | %% through LaTeX. 25 | %% 26 | \ProvidesPackage{hithesis} 27 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 28 | 29 | \RequirePackage{xeCJKfntef} 30 | 31 | \RequirePackage{siunitx} 32 | \sisetup{group-minimum-digits=4, group-separator= \hspace{0.25em}} 33 | \sisetup{detect-weight,detect-mode,detect-family} 34 | 35 | \RequirePackage{bm} 36 | \RequirePackage{mathrsfs} 37 | \RequirePackage{xcolor} 38 | 39 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 40 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 41 | 42 | \definecolor{colorzero}{rgb}{0, 0, 0} 43 | \definecolor{colorone}{rgb}{1, 0, 0} 44 | \definecolor{colortwo}{rgb}{0, 0, 1} 45 | \definecolor{colorthree}{rgb}{0, 1, 0} 46 | \RequirePackage{rotating} 47 | 48 | \RequirePackage[algoruled,linesnumbered,algochapter]{algorithm2e} 49 | \SetAlCapSty{} 50 | \newcommand{\foocaption}[1]{ \def\@algocf@pre@plainruled{\hrule height1.5pt depth0pt\kern\interspacetitleruled #1 \kern\interspacealgoruled\hrule height1pt depth0pt\kern\interspacetitleruled} } 51 | \def\@algocf@post@ruled{\kern\interspacealgoruled\hrule height1.5pt\relax}% 52 | 53 | \newcommand{\algoenname}{Algo.} %算法英文标题 54 | \newfloatlist[chapter]{algoen}{aen}{\listalgoenname}{\algoenname} 55 | \newfixedcaption{\algoencaption}{algoen} 56 | \renewcommand{\thealgoen}{\thechapter-\arabic{algocf}} 57 | \renewcommand{\@cftmakeaentitle}{\chapter*{\listalgoenname\@mkboth{\listalgoenname}{\listalgoenname}} 58 | } 59 | \renewcommand{\algorithmcfname}{算法} 60 | \setlength\AlCapSkip{1.2ex} 61 | \SetAlgoSkip{1pt} 62 | \renewcommand{\algocf@captiontext}[2]{\wuhao#1\algocf@typo~\AlCapFnt{}#2} % text of caption 63 | \expandafter\ifx\csname algocf@within\endcsname\relax% if \algocf@within doesn't exist 64 | \renewcommand\thealgocf{\@arabic\c@algocf} % and the way it is printed 65 | \else% else 66 | \renewcommand\thealgocf{\csname the\algocf@within\endcsname-\@arabic\c@algocf} 67 | \fi 68 | \renewcommand{\algocf@makecaption}[2]{%中英文双标题一定多于一行,因此去掉单行时的判断,并将\parbox中标题设置为居中 69 | \addtolength{\hsize}{\algomargin}% 70 | \sbox\@tempboxa{\algocf@captiontext{#1}{#2}}% 71 | \hskip .5\algomargin% 72 | \parbox[t]{\hsize}{\centering\algocf@captiontext{#1}{#2}}% 73 | \addtolength{\hsize}{-\algomargin}% 74 | } 75 | \newcommand{\AlgoBiCaption}[2]{%直接取出自定义的中英文标题条目加入到真正的\caption 中 76 | \caption[#1]{\protect\setlength{\baselineskip}{1.5em}#1 \protect \\ Algo.\thealgocf~#2} % \algoencaption{#2} 77 | \addcontentsline{aen}{algoen}{\protect\numberline{\thealgoen}{#2}} 78 | } 79 | 80 | \RequirePackage{listings} 81 | \lstset{ 82 | columns=flexible, 83 | breaklines=true 84 | } 85 | 86 | 87 | 88 | \newacronym{etssbp}{TSSBP}{Tree-structured Stick-breaking process} 89 | \newacronym{etse}{TSE}{Taylor Series Expansion} 90 | \newacronym{esvm}{SVM}{Support Vector Machine} 91 | \newacronym{eml}{ML}{Machine Learning} 92 | \newacronym{eco}{CO}{Convex Optimization} 93 | 94 | \newacronym{tssbp}{树结构折筷过程}{树结构折筷过程(Tree-structured Stick-breaking process)} 95 | \def\gtssbp{\gls{tssbp}\sindex[china]{shu!树结构折筷过程}\sindex[english]{Tree-structured Stick-breaking process}} 96 | \newacronym[shortplural=SCNAs,longplural={体细胞拷贝数变异(Somatic copy number alternation,SCNA)}]{scna}{SCNA}{体细胞拷贝数变异(Somatic copy number alternation,SCNA)} 97 | \def\gscna{\gls{scna}\sindex[china]{ti!体细胞拷贝数变异}\sindex[english]{Somatic copy number alternation}\ignorespaces} 98 | \def\gscnas{\glspl{scna}\sindex[china]{ti!体细胞拷贝数变异}\sindex[english]{Somatic copy number alternation}\ignorespaces} 99 | 100 | \usepackage{tikz} 101 | 102 | \tikzstyle{maternal}= [colorone] 103 | \tikzstyle{paternal}= [colortwo] 104 | \tikzstyle{variant}= [colorthree!80!colorzero] 105 | \tikzstyle{reference}= [colorzero] 106 | 107 | \tikzstyle{aallele}= [colorzero,rotate=90] 108 | \tikzstyle{ballele}= [colorthree!80!colorzero,rotate=90] 109 | 110 | \tikzstyle{refseg}= [colorzero,draw=colorzero, opacity=0.2] 111 | \tikzstyle{mseg}= [colorone,draw=colorone, opacity=0.2] 112 | \tikzstyle{pseg}= [colortwo,draw=colortwo, opacity=0.2] 113 | \tikzstyle{vseg}= [colorthree!80!colorzero,draw=colorthree!80!colorzero, opacity=0.6] 114 | 115 | \tikzstyle{bncell}= [draw=colorzero,opacity=0.2,line width=2pt, rounded corners=1pt] 116 | \tikzstyle{btcell}= [draw=colorone,opacity=0.6, line width=2pt, rounded corners=1pt] 117 | 118 | \tikzstyle{tncell}= [colorzero,opacity=0.9] 119 | \tikzstyle{ttcell}= [colorone,opacity=0.6] 120 | \tikzstyle{tscell}= [colorzero] 121 | \tikzstyle{refcell}= [colorzero] 122 | 123 | \tikzstyle{evolve}= [->,draw=colortwo,opacity=0.3,line width=1.5pt] 124 | \tikzstyle{fakeevolve}= [->,draw=colorzero,opacity=0.3,line width=1.5pt] 125 | 126 | \tikzstyle{refline}= [dashed,draw=colorzero,line width=1pt] 127 | \tikzstyle{tnline}= [dashed,draw=colorzero,opacity=0.3,line width=1pt] 128 | 129 | \newcommand{\gseg}[9]{% 130 | \pgfmathsetmacro{\sstartx}{#1} 131 | \pgfmathsetmacro{\slengx}{#2} 132 | \pgfmathsetmacro{\sy}{#3} 133 | \pgfmathsetmacro{\sdy}{#4} 134 | \pgfmathsetmacro{\sdx}{#5} 135 | \pgfmathsetmacro{\sdxh}{#7} 136 | \pgfmathsetmacro{\sdxt}{#8} 137 | \fill[#6](\sstartx,\sy)--(\sstartx-\sdx,\sy+\sdy)-- 138 | (\slengx+\sstartx+1.5-\sdx,\sy+\sdy)--(\slengx+\sstartx+1.5,\sy)-- 139 | (\slengx+\sstartx+1.5-\sdx,\sy-\sdy)--(\sstartx-\sdx,\sy-\sdy)--cycle; 140 | \draw[#9] (\sstartx-\sdxh,\sy) -- (\sstartx, \sy); 141 | \draw[#9] (\slengx+\sstartx+1.5, \sy) -- (\slengx+\sstartx+1.5+\sdxt,\sy); 142 | } 143 | \newcommand{\gsegr}[9]{% 144 | \pgfmathsetmacro{\sstartx}{#1} 145 | \pgfmathsetmacro{\slengx}{#2} 146 | \pgfmathsetmacro{\sy}{#3} 147 | \pgfmathsetmacro{\sdy}{#4} 148 | \pgfmathsetmacro{\sdx}{#5} 149 | \pgfmathsetmacro{\sdxh}{#7} 150 | \pgfmathsetmacro{\sdxt}{#8} 151 | \fill[#6](\sstartx-0.5,\sy)--(\sstartx+\sdx-0.5,\sy+\sdy)-- 152 | (\slengx+\sstartx+1.5+\sdx-0.5,\sy+\sdy)--(\slengx+\sstartx+1.5-0.5,\sy)-- 153 | (\slengx+\sstartx+1.5+\sdx-0.5,\sy-\sdy)--(\sstartx+\sdx-0.5,\sy-\sdy)--cycle; 154 | \draw[#9] (\sstartx-\sdxh-0.5,\sy) -- (\sstartx-0.5, \sy); 155 | \draw[#9] (\slengx+\sstartx+1.5-0.5, \sy) -- (\slengx+\sstartx+1.5+\sdxt-0.5,\sy); 156 | } 157 | 158 | \newcommand{\rcell}[2]{% 159 | \pgfmathsetmacro{\x}{#1} 160 | \pgfmathsetmacro{\y}{#2} 161 | \draw (\x+1,\y) node[aallele]{A}; 162 | \draw (\x+2,\y) node[aallele]{C}; 163 | \draw (\x+3,\y) node[aallele]{T}; 164 | \draw (\x+4,\y) node[aallele]{C}; 165 | \gseg{\x}{4}{\y}{0.2}{0.5}{refseg}{1.5}{1}{reference}; 166 | } 167 | 168 | \newcommand{\ncell}[2]{% 169 | \pgfmathsetmacro{\x}{#1} 170 | \pgfmathsetmacro{\y}{#2} 171 | \draw[bncell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 172 | (\x+7,\y-1)--(\x-2,\y-1)--cycle; 173 | \draw (\x+1,\y) node[aallele]{A}; 174 | \draw (\x+2,\y) node[ballele]{G}; 175 | \draw (\x+3,\y) node[aallele]{T}; 176 | \draw (\x+4,\y) node[aallele]{C}; 177 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 178 | \draw (\x+1,\y-0.5) node[ballele]{T}; 179 | \draw (\x+2,\y-0.5) node[aallele]{C}; 180 | \draw (\x+3,\y-0.5) node[aallele]{T}; 181 | \draw (\x+4,\y-0.5) node[ballele]{A}; 182 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 183 | } 184 | 185 | \newcommand{\tcellone}[2]{% 186 | \pgfmathsetmacro{\x}{#1} 187 | \pgfmathsetmacro{\y}{#2} 188 | \draw[btcell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 189 | (\x+7,\y-1.5)--(\x-2,\y-1.5)--cycle; 190 | \draw (\x+1,\y) node[aallele]{A}; 191 | \draw (\x+2,\y) node[ballele]{G}; 192 | \draw (\x+3,\y) node[aallele]{T}; 193 | \draw (\x+4,\y) node[aallele]{C}; 194 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 195 | \draw (\x+1,\y-0.5) node[aallele]{A}; 196 | \draw (\x+2,\y-0.5) node[ballele]{G}; 197 | \draw (\x+3,\y-0.5) node[aallele]{T}; 198 | \draw (\x+4,\y-0.5) node[aallele]{C}; 199 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 200 | \draw (\x+1,\y-1) node[ballele]{T}; 201 | \draw (\x+2,\y-1) node[aallele]{C}; 202 | \draw (\x+3,\y-1) node[aallele]{T}; 203 | \draw (\x+4,\y-1) node[ballele]{A}; 204 | \gseg{\x}{4}{\y-1}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 205 | } 206 | 207 | \newcommand{\tcellthree}[2]{% 208 | \pgfmathsetmacro{\x}{#1} 209 | \pgfmathsetmacro{\y}{#2} 210 | \draw[btcell](\x-2,\y+0.5)--(\x+11,\y+0.5)-- 211 | (\x+11,\y-1)--(\x-2,\y-1)--cycle; 212 | \draw (\x+1,\y) node[aallele]{A}; 213 | \draw (\x+2,\y) node[ballele]{G}; 214 | \gseg{\x}{2}{\y}{0.2}{0.5}{mseg}{1.5}{0}{maternal}; 215 | \gseg{\x+4}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 216 | \draw (\x+7,\y) node[aallele]{T}; 217 | \draw (\x+8,\y) node[aallele]{C}; 218 | \gseg{\x+6}{2}{\y}{0.2}{0.5}{mseg}{0}{1}{maternal}; 219 | \draw (\x+1,\y-0.5) node[ballele]{T}; 220 | \draw (\x+2,\y-0.5) node[aallele]{C}; 221 | \draw (\x+3,\y-0.5) node[aallele]{T}; 222 | \draw (\x+4,\y-0.5) node[ballele]{A}; 223 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 224 | } 225 | 226 | \newcommand{\tcellfour}[2]{% 227 | \pgfmathsetmacro{\x}{#1} 228 | \pgfmathsetmacro{\y}{#2} 229 | \draw[btcell](\x-2,\y+0.5)--(\x+15,\y+0.5)-- 230 | (\x+15,\y-1)--(\x-2,\y-1)--cycle; 231 | \draw (\x+1,\y) node[aallele]{A}; 232 | \draw (\x+2,\y) node[ballele]{G}; 233 | \gseg{\x}{2}{\y}{0.2}{0.5}{mseg}{1.5}{0}{maternal}; 234 | \gseg{\x+4}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 235 | \draw (\x+7,\y) node[aallele]{T}; 236 | \gseg{\x+6}{1}{\y}{0.2}{0.5}{mseg}{0}{0}{maternal}; 237 | \gseg{\x+9}{0}{\y}{0.2}{0.5}{vseg}{0.5}{0.5}{variant}; 238 | \draw (\x+12,\y) node[aallele]{C}; 239 | \gseg{\x+11}{1}{\y}{0.2}{0.5}{mseg}{0}{1}{maternal}; 240 | \draw (\x+1,\y-0.5) node[ballele]{T}; 241 | \draw (\x+2,\y-0.5) node[aallele]{C}; 242 | \draw (\x+3,\y-0.5) node[aallele]{T}; 243 | \draw (\x+4,\y-0.5) node[ballele]{A}; 244 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 245 | } 246 | 247 | \newcommand{\tcelltwo}[2]{% 248 | \pgfmathsetmacro{\x}{#1} 249 | \pgfmathsetmacro{\y}{#2} 250 | \draw[btcell](\x-2,\y+0.5)--(\x+7,\y+0.5)-- 251 | (\x+7,\y-1.5)--(\x-2,\y-1.5)--cycle; 252 | \draw (\x+1,\y) node[aallele]{A}; 253 | \draw (\x+2,\y) node[ballele]{G}; 254 | \draw (\x+3,\y) node[aallele]{T}; 255 | \draw (\x+4,\y) node[aallele]{C}; 256 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 257 | \draw (\x+1,\y-0.5) node[aallele]{A}; 258 | \draw (\x+2,\y-0.5) node[ballele]{G}; 259 | \draw (\x+3,\y-0.5) node[aallele]{T}; 260 | \draw (\x+4,\y-0.5) node[ballele]{G}; 261 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 262 | \draw (\x+1,\y-1) node[ballele]{T}; 263 | \draw (\x+2,\y-1) node[aallele]{C}; 264 | \draw (\x+3,\y-1) node[aallele]{T}; 265 | \draw (\x+4,\y-1) node[ballele]{A}; 266 | \gseg{\x}{4}{\y-1}{0.2}{0.5}{pseg}{1.5}{1}{paternal}; 267 | } 268 | 269 | \newcommand{\tcellfive}[2]{% 270 | \pgfmathsetmacro{\x}{#1} 271 | \pgfmathsetmacro{\y}{#2} 272 | \draw[btcell](\x-2,\y+0.5)--(\x+9.5,\y+0.5)-- 273 | (\x+9.5,\y-1.5)--(\x-2,\y-1.5)--cycle; 274 | \draw (\x+1,\y) node[aallele]{A}; 275 | \draw (\x+2,\y) node[ballele]{G}; 276 | \draw (\x+3,\y) node[aallele]{T}; 277 | \draw (\x+4,\y) node[aallele]{C}; 278 | \gseg{\x}{4}{\y}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 279 | \draw (\x+1,\y-0.5) node[aallele]{A}; 280 | \draw (\x+2,\y-0.5) node[ballele]{G}; 281 | \draw (\x+3,\y-0.5) node[aallele]{T}; 282 | \draw (\x+4,\y-0.5) node[aallele]{C}; 283 | \gseg{\x}{4}{\y-0.5}{0.2}{0.5}{mseg}{1.5}{1}{maternal}; 284 | \draw (\x+1,\y-1) node[ballele]{T}; 285 | \gseg{\x}{1}{\y-1}{0.2}{0.5}{pseg}{1.5}{0}{paternal}; 286 | \draw (\x+4.5,\y-1) node[ballele]{A}; 287 | \draw (\x+5.5,\y-1) node[aallele]{T}; 288 | \draw (\x+6.5,\y-1) node[aallele]{C}; 289 | \gsegr{\x+3.5}{3}{\y-1}{0.2}{0.5}{pseg}{0.5}{1.5}{paternal}; 290 | } 291 | 292 | \newcommand{\theVector}[1]{\bm{#1}} 293 | \newcommand{\theMatrix}[1]{\mathbb{#1}} 294 | \newcommand{\theSet}[1]{\mathcal{#1}} 295 | \newcommand{\theDirected}[1]{{\overrightarrow{#1}}} 296 | \newcommand{\theUndirected}[1]{{\overline{#1}}} 297 | \newcommand{\theNetwork}[1]{\mathscr{#1}} 298 | \newcommand{\theNode}[1]{{\text{#1}}} 299 | \newcommand{\theDirectedEdge}[2]{{\overrightarrow{{#1}{#2}}}} 300 | \newcommand{\theUndirectedEdge}[2]{{\overline{{#1}{#2}}}} 301 | 302 | \def\cmd#1{\cs{\expandafter\cmd@to@cs\string#1}} 303 | \def\cmd@to@cs#1#2{\char\number`#2\relax} 304 | \DeclareRobustCommand\cs[1]{\texttt{\char`\\#1}} 305 | \endinput 306 | %% 307 | %% End of file `examples/hitbook/chinese/hithesis.sty'. 308 | -------------------------------------------------------------------------------- /thesis/hithesisbook.cfg: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `hithesisbook.cfg', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% hithesis.dtx (with options: `bookcfg') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2017-2021 by Chu Yanshuo 12 | %% 13 | %% This file may be distributed and/or modified under the 14 | %% conditions of the LaTeX Project Public License, either version 1.3a 15 | %% of this license or (at your option) any later version. 16 | %% The latest version of this license is in: 17 | %% 18 | %% http://www.latex-project.org/lppl.txt 19 | %% 20 | %% and version 1.3a or later is part of all distributions of LaTeX 21 | %% version 2004/10/01 or later. 22 | %% 23 | %% This is the configuration file of the hithesis package with LaTeX2e. 24 | %% 25 | \ProvidesFile{hithesisbook.cfg} 26 | [2021/05/06 3.0.15 Harbin Institute of Technology Thesis Template] 27 | \theorembodyfont{\normalfont} 28 | \theoremsymbol{\ensuremath{\square}} 29 | \ifhit@english 30 | \theoremheaderfont{\normalfont\bf} 31 | \newtheorem*{proof}{Proof} 32 | \else 33 | \theoremheaderfont{\normalfont\heiti} 34 | \newtheorem*{proof}{证明} 35 | \fi 36 | \theoremstyle{plain} 37 | \theoremsymbol{} 38 | \theoremseparator{} 39 | \ifhit@english 40 | \newtheorem{assumption}{Assumption}[chapter] 41 | \newtheorem{definition}{Definition}[chapter] 42 | \newtheorem{proposition}{Proposition}[chapter] 43 | \newtheorem{lemma}{Lemma}[chapter] 44 | \newtheorem{theorem}{Theorem}[chapter] 45 | \newtheorem{axiom}{Axiom}[chapter] 46 | \newtheorem{corollary}{Corollary}[chapter] 47 | \newtheorem{exercise}{exercise}[chapter] 48 | \newtheorem{example}{Example}[chapter] 49 | \newtheorem{remark}{Remark}[chapter] 50 | \newtheorem{problem}{Problem}[chapter] 51 | \newtheorem{conjecture}{Conjecture}[chapter] 52 | \newtheorem{fact}{Fact}[chapter] 53 | \else 54 | \newtheorem{assumption}{假设}[chapter] 55 | \newtheorem{definition}{定义}[chapter] 56 | \newtheorem{proposition}{命题}[chapter] 57 | \newtheorem{lemma}{引理}[chapter] 58 | \newtheorem{theorem}{定理}[chapter] 59 | \newtheorem{axiom}{公理}[chapter] 60 | \newtheorem{corollary}{推论}[chapter] 61 | \newtheorem{exercise}{练习}[chapter] 62 | \newtheorem{example}{例}[chapter] 63 | \newtheorem{remark}{注释}[chapter] 64 | \newtheorem{problem}{问题}[chapter] 65 | \newtheorem{conjecture}{猜想}[chapter] 66 | \newtheorem{fact}{事实}[chapter] 67 | \fi 68 | \ifhit@english 69 | \ctexset{% 70 | chapter/name={Chapter\enskip,}, 71 | appendixname={Appendix}, 72 | contentsname={Contents}, 73 | listfigurename={List of Figures}, 74 | listtablename={List of Tables}, 75 | figurename={Figure}, 76 | tablename={Table}, 77 | bibname={References}, 78 | } 79 | \else 80 | \ctexset{% 81 | chapter/name={第,章}, 82 | appendixname=附录, 83 | contentsname={目\hspace{\ccwd}录}, 84 | listfigurename=插图索引, 85 | listtablename=表格索引, 86 | figurename=图, 87 | tablename=表, 88 | bibname=参考文献, 89 | indexname=索引, 90 | } 91 | \fi 92 | \ifhit@postdoc 93 | \ctexset{ 94 | contentsname={目录}, 95 | } 96 | \fi 97 | \ifhit@english 98 | \newcommand\equationname{Equation} 99 | \else 100 | \newcommand\equationname{公式} 101 | \fi 102 | \newcommand\listfigureename{Index of figure} 103 | \newcommand\listtableename{Index of table} 104 | \newcommand\listequationename{Index of equation} 105 | \newcommand\listequationname{公式索引} 106 | \newcommand{\cabstractename}{Abstract (In Chinese)} 107 | \newcommand{\eabstractcname}{Abstract} 108 | \newcommand{\eabstractename}{Abstract (In English)} 109 | \ifhit@postdoc 110 | \newcommand{\cabstractcname}{摘要} 111 | \else 112 | \newcommand{\cabstractcname}{摘\hspace{\ccwd}要} 113 | \fi 114 | \newcommand{\hit@ckeywords@title}{关键词:} 115 | \def\hit@ckeywords@separator{;} 116 | \def\hit@ekeywords@separator{,} 117 | \let\CJK@todaysave=\today 118 | \def\CJK@todaysmall@short{\the\year 年 \the\month 月} 119 | \def\CJK@todaysmall{\the\year 年 \the\month 月 \the\day 日} 120 | \def\CJK@todaybig@short{\zhdigits{\the\year}年\zhnumber{\the\month}月} 121 | \def\CJK@todaybig{\zhdigits{\the\year}年\zhnumber{\the\month}月\zhnumber{\the\day}日} 122 | \def\CJK@today{\CJK@todaysmall} 123 | \renewcommand\today{\CJK@today} 124 | \newcommand\CJKtoday[1][1]{% 125 | \ifcase#1\def\CJK@today{\CJK@todaysave} 126 | \or\def\CJK@today{\CJK@todaysmall} 127 | \or\def\CJK@today{\CJK@todaybig} 128 | \fi} 129 | \cdate{\ifhit@bachelor\CJK@todaysmall\else\CJK@todaysmall@short\fi} 130 | \edate{\ifcase \month \or January\or February\or March\or April\or May% 131 | \or June\or July \or August\or September\or October\or November 132 | \or December\fi\unskip,\ \ \the\year} 133 | \ifhit@postdoc 134 | \gdef\hit@cxueweishort{博} 135 | \gdef\hit@exuewei{Doctor} 136 | \gdef\hit@exueweier{Doctoral} 137 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 138 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 139 | \gdef\hit@edegree{\hit@exuewei \ of \hit@exueke} 140 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 141 | \fi 142 | 143 | 144 | \ifhit@doctor 145 | \gdef\hit@cxueweishort{博} 146 | \gdef\hit@exuewei{Doctor} 147 | \gdef\hit@exueweier{Doctoral} 148 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 149 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 150 | \gdef\hit@edegree{\hit@exuewei \ of \hit@exueke} 151 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 152 | \fi 153 | \ifhit@master 154 | \gdef\hit@cxueweishort{硕} 155 | \gdef\hit@exuewei{Master} 156 | \gdef\hit@exueweier{Master's} 157 | \gdef\hit@cxuewei{\hit@cxueweishort 士} 158 | \gdef\hit@cdegree{\hit@cxueke\hit@cxuewei} 159 | \gdef\hit@edegree{\hit@exuewei \ of \hit@exueke} 160 | \def\hit@cauthortitle{\hit@cxueweishort 士研究生} 161 | \fi 162 | \ifhit@bachelor 163 | \gdef\hit@cxuewei{学士} 164 | \fi 165 | 166 | \def\hit@postdoc@classifiedindex{分类号} 167 | \def\hit@postdoc@secretlevel{密级} 168 | \def\hit@postdoc@UDC{U\hspace{0.4\ccwd}D\hspace{0.4\ccwd}C} 169 | \def\hit@stage@opening{开题} 170 | \def\hit@stage@midterm{中期} 171 | \def\hit@stage@doctype{报告} 172 | 173 | \def\hit@postdoc@number{编号} 174 | \def\hit@postdoc@documenttitle{博\hspace{0.58\ccwd}士\hspace{0.58\ccwd}后\hspace{0.58\ccwd}研\hspace{0.58\ccwd}究\hspace{0.58\ccwd}工\hspace{0.58\ccwd}作\hspace{0.58\ccwd}报\hspace{0.58\ccwd}告} 175 | \def\hit@postdoc@documenttitlenospace{博士后研究工作报告} 176 | \def\hit@postdoc@finishdate{工作完成日期} 177 | \def\hit@postdoc@submitdate{报告提交日期} 178 | 179 | \def\hit@postdoc@authorname{博\hspace{0.5\ccwd}士\hspace{0.5\ccwd}后\hspace{0.5\ccwd}姓\hspace{0.5\ccwd}名} 180 | \def\hit@postdoc@supervisor{合\hspace{\ccwd}作\hspace{\ccwd}导\hspace{\ccwd}师} 181 | \def\hit@postdoc@positionname{流\hspace{0.5\ccwd}动\hspace{0.5\ccwd}站\hspace{0.5\ccwd}名\hspace{0.5\ccwd}称} 182 | \def\hit@postdoc@major{专\hspace{\ccwd}业\hspace{\ccwd}名\hspace{\ccwd}称} 183 | \def\hit@postdoc@startdate{研究工作起始时间} 184 | \def\hit@postdoc@enddate{研究工作期满时间} 185 | \def\hit@postdoc@separator{:} 186 | 187 | 188 | \def\hit@bachelor@cxuewei{本科} 189 | \def\hit@bachelor@cthesisname{毕业设计(论文)} 190 | 191 | \def\hit@bachelor@cmajortitle{专\hspace{2\ccwd}业} 192 | \def\hit@bachelor@cstudenttitle{学\hspace{2\ccwd}生} 193 | \def\hit@bachelor@cstudentidtitle{学\hspace{2\ccwd}号} 194 | \def\hit@bachelor@cclass{班\hspace{2\ccwd}号} 195 | 196 | 197 | \def\hit@bachelor@caffiltitle{院(系)} 198 | \def\hit@bachelor@caffiltitlesz{学院} 199 | \def\hit@bachelor@caffiltitlewh{学院} 200 | \def\hit@bachelor@cstudentidtitle{学号} 201 | \def\hit@bachelor@cmajortitle{专业} 202 | \def\hit@bachelor@csupervisortitle{指导教师} 203 | \def\hit@bachelor@cthesistitle{题目} 204 | \def\hit@bachelor@cstudenttitle{学生} 205 | \def\hit@cthesisname{学位论文} 206 | 207 | \def\hit@bachelor@cdatetitle{日\hspace{2\ccwd}期} 208 | 209 | \newcommand{\hit@bachelor@teachercomment}{指导教师评语:} 210 | \newcommand{\hit@bachelor@teachersign}{指导教师签字:} 211 | \newcommand{\hit@bachelor@checkdate}{检查日期:} 212 | 213 | \def\hit@cthesistitleprefix{题\hspace{\ccwd}目} 214 | 215 | \def\hit@graduate@caffiltitle{院\hspace{3\ccwd}(系)} 216 | \def\hit@graduate@cmajortitle{学\hspace{4\ccwd}科} 217 | \def\hit@graduate@supervisor{导\hspace{4\ccwd}师} 218 | \def\hit@graduate@studenttitle{研\hspace{1.5\ccwd}究\hspace{1.5\ccwd}生} 219 | \def\hit@graduate@studentid{学\hspace{4\ccwd}号} 220 | 221 | \def\hit@graduate@datetitle{\ifhit@opening\hit@stage@opening 222 | \else\ifhit@midterm\hit@stage@midterm\fi\fi\hit@stage@doctype 日期} 223 | \def\hit@graduate@enrolldate{入\hspace{0.6666666\ccwd}学\hspace{0.6666666\ccwd}时\hspace{0.6666666\ccwd}间} 224 | \def\hit@graduate@thesistitle{论\hspace{0.6666666\ccwd}文\hspace{0.6666666\ccwd}题\hspace{0.6666666\ccwd}目} 225 | \def\hit@graduate@cafflimajor{学\hspace{0.6666666\ccwd}科\hspace{0.6666666\ccwd}专\hspace{0.6666666\ccwd}业} 226 | 227 | \def\hit@cschoolname{哈尔滨工业大学} 228 | \def\hit@shenzhencampus{(深圳)} 229 | \def\hit@weihaicampus{(威海)} 230 | \def\hit@harbincampus{(哈尔滨)} 231 | 232 | \def\hit@cschoolnametitle{授予学位单位} 233 | \def\hit@cdatetitle{答辩日期} 234 | \def\hit@caffiltitle{所在单位} 235 | \def\hit@csubjecttitle{学科} 236 | \def\hit@cdegreetitle{申请学位} 237 | \def\hit@csupervisortitle{导师} 238 | \def\hit@cassosupervisortitle{副导师} 239 | \def\hit@ccosupervisortitle{联合导师} 240 | \def\hit@title@csep{:} 241 | \def\hit@eauthortitle{Candidate} 242 | \def\hit@esupervisortitle{Supervisor} 243 | \def\hit@eassosupervisortitle{Associate Supervisor} 244 | \def\hit@ecosupervisortitle{Co Supervisor} 245 | \def\hit@edegreetitle{Academic Degree Applied for} 246 | \def\hit@esubjecttitle{Specialty} 247 | \def\hit@eaffiltitle{Affiliation} 248 | \def\hit@edatetitle{Date of Defence} 249 | \def\hit@eschoolnametitle{Degree-Conferring-Institution} 250 | \def\hit@eschoolname{Harbin Institute of Technology} 251 | \def\hit@title@esep{:} 252 | \def\hit@natclassifiedindextitle{国内图书分类号} 253 | \def\hit@internatclassifiedindextitle{国际图书分类号} 254 | \def\hit@secretlevel{密级} 255 | \def\hit@schoolidtitle{学校代码} 256 | \def\hit@schoolid{10213} 257 | 258 | \ifhit@postdoc 259 | \def\hit@conclusion@ctitle{结论} 260 | \else 261 | \def\hit@conclusion@ctitle{结\hspace{\ccwd}论} 262 | \fi 263 | 264 | \def\hit@conclusion@etitle{Conclusions} 265 | \def\hit@bibname@etitle{References} 266 | 267 | \ifhit@postdoc 268 | \def\hit@acknowledgement@ctitle{致谢} 269 | \else 270 | \def\hit@acknowledgement@ctitle{致\hspace{\ccwd}谢} 271 | \fi 272 | 273 | \def\hit@acknowledgement@etitle{Acknowledgements} 274 | \ifhit@postdoc 275 | \def\hit@resume@ctitle{博士后个人简历} 276 | \else 277 | \def\hit@resume@ctitle{个人简历} 278 | \fi 279 | 280 | \def\hit@correspondingaddr@ctitle{永久通讯地址} 281 | 282 | \def\hit@resume@etitle{Resume} 283 | \def\hit@authorization@ctitle{哈尔滨工业大学学位论文原创性声明和使用权限} 284 | \def\hit@authorization@etitle{Statement of copyright and Letter of authorization} 285 | 286 | \newcommand{\hit@authorsig}{作者签名:} 287 | \newcommand{\hit@teachersig}{导师签名:} 288 | \newcommand{\hit@frontdate}{日期:} 289 | \newcommand{\hit@denotation@ctitle}{物理量名称及符号表} 290 | \newcommand{\hit@denotation@etitle}{List of physical quantity and symbol} 291 | \newcommand{\hit@authorizationtitle}{学位论文使用权限} 292 | 293 | \newcommand{\hit@shenzhen@schoolbottommark}{ 294 | \begin{center} 295 | \songti\sanhao\textbf{哈工大(深圳)制} 296 | \end{center} 297 | \begin{center} 298 | \songti\sanhao\textbf{二〇一二年三月} 299 | \end{center} 300 | } 301 | \newcommand{\hit@harbin@schoolbottommark}{ 302 | \begin{center} 303 | \songti\sanhao\textbf{研究生院制} 304 | \end{center} 305 | \begin{center} 306 | \songti\sanhao\textbf{二〇一四年九月} 307 | \end{center} 308 | } 309 | 310 | \newcommand{\hit@harbin@bachelor@schoolbottommark}{ 311 | \begin{center} 312 | \lishu\xiaoer\textbf{哈尔滨工业大学教务处制} 313 | \end{center} 314 | } 315 | 316 | \newcommand{\hit@shenzhen@doctor@midterm@note}{ 317 | \thispagestyle{empty} 318 | {\begin{center} 319 | \songti\sanhao\textbf{说\hspace{4\ccwd}明} 320 | \end{center} 321 | } 322 | \vspace{1cm}\songti\sihao[2] 323 | \begin{enumerate}[itemsep=-4bp] 324 | \item 博士研究生学位论文中期报告一般在入学后的第五学期末完成。 325 | \item 此报告由学生本人填写,请导师签字后提交一份给检查小组。答辩结束后由检查组长签署意见。 326 | \item 报告经中期报告检查组长签字同意后,由学科部保存,以备论文答辩时参考。研究生院学生培养处将对研究生的学位论文中期报告进行抽查。 327 | \item 报告统一用A4纸打印。 328 | \end{enumerate} 329 | } 330 | 331 | 332 | \newcommand{\hit@authorizationtext}{% 333 | 学位论文是研究生在哈尔滨工业大学攻读学位期间完成的成果,知识产权归属哈尔滨工业大学。学位论文的使用权限如下: 334 | 335 | (1)学校可以采用影印、缩印或其他复制手段保存研究生上交的学位论文,并向国家图书馆报送学位论文;(2)学校可以将学位论文部分或全部内容编入有关数据库进行检索和提供相应阅览服务;(3)研究生毕业后发表与此学位论文研究成果相关的学术论文和其他成果时,应征得导师同意,且第一署名单位为哈尔滨工业大学。 336 | 337 | 保密论文在保密期内遵守有关保密规定,解密后适用于此使用权限规定。 338 | 339 | 本人知悉学位论文的使用权限,并将遵守有关规定。} 340 | \newcommand{\hit@declarename@bachelor}{哈尔滨工业大学本科毕业设计(论文)原创性声明} 341 | \newcommand{\hit@authorizationtext@bachelor}{% 342 | 本人郑重声明:在哈尔滨工业大学攻读学士学位期间,所提交的毕业设计(论文)《\hit@ctitle》,是本人在导师指导下独立进行研究工作所取得的成果。对本文的研究工作做出重要贡献的个人和集体,均已在文中以明确方式注明,其它未注明部分不包含他人已发表或撰写过的研究成果,不存在购买、由他人代写、剽窃和伪造数据等作假行为。 343 | 344 | 本人愿为此声明承担法律责任。} 345 | \newcommand{\hit@declarename}{学位论文原创性声明} 346 | \newcommand{\hit@declaretext}{% 347 | 本人郑重声明:此处所提交的学位论文《\hit@ctitle》,是本人在导师指导下,在哈尔滨工业大学攻读学位期间独立进行研究工作所取得的成果,且学位论文中除已标注引用文献的部分外不包含他人完成或已发表的研究成果。对本学位论文的研究工作做出重要贡献的个人和集体,均已在文中以明确方式注明。} 348 | 349 | \ifhit@english 350 | \newcommand{\hit@publication@ctitle}{Author's Publications} 351 | \else 352 | \ifhit@postdoc 353 | \newcommand{\hit@publication@ctitle}{博士后期间的研究成果} 354 | \else 355 | \newcommand{\hit@publication@ctitle}{攻读\hit@cxuewei 学位期间发表的论文及其他成果} 356 | \fi 357 | \fi 358 | \newcommand{\hit@doctorpublication@ctitle}{博士生期间的研究成果} 359 | 360 | \newcommand{\hit@datefill}{\hspace{2.5em}年\hspace{1.5em}月\hspace{1.5em}日} 361 | \newcommand{\hit@publication@etitle}{Papers published in the period of Ph.D. education} 362 | \def\hit@index@etitle{Index} 363 | \def\hit@hi{嗨!thesis} 364 | \def\hit@cbraceleft{(} 365 | \def\hit@cbraceright{)} 366 | \def\hit@ebraceleft{(} 367 | \def\hit@ebraceright{)} 368 | \newcommand{\pozhehao}{——} 369 | \def\hithesis{\textsc{hi}\-\textsc{Thesis}} 370 | \def\hit{哈尔滨工业大学} 371 | \def\PGR{\href{http://hitgs.hit.edu.cn/aa/fd/c3425a109309/page.htm} 372 | {《\hit 研究生学位论文撰写规范》}} 373 | \def\UGR{\href{http://jwc.hit.edu.cn/2566/list.htm} 374 | {《\hit 本科生毕业论文撰写规范》}} 375 | \def\hit@inline@sep{,} 376 | \endinput 377 | %% 378 | %% End of file `hithesisbook.cfg'. 379 | -------------------------------------------------------------------------------- /thesis/hitlogo.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Creator: cairo 1.14.10 (http://cairographics.org) 3 | %%CreationDate: Sat Aug 26 21:27:21 2017 4 | %%Pages: 1 5 | %%DocumentData: Clean7Bit 6 | %%LanguageLevel: 2 7 | %%BoundingBox: 98 590 565 677 8 | %%EndComments 9 | %%BeginProlog 10 | save 11 | 50 dict begin 12 | /q { gsave } bind def 13 | /Q { grestore } bind def 14 | /cm { 6 array astore concat } bind def 15 | /w { setlinewidth } bind def 16 | /J { setlinecap } bind def 17 | /j { setlinejoin } bind def 18 | /M { setmiterlimit } bind def 19 | /d { setdash } bind def 20 | /m { moveto } bind def 21 | /l { lineto } bind def 22 | /c { curveto } bind def 23 | /h { closepath } bind def 24 | /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 25 | 0 exch rlineto 0 rlineto closepath } bind def 26 | /S { stroke } bind def 27 | /f { fill } bind def 28 | /f* { eofill } bind def 29 | /n { newpath } bind def 30 | /W { clip } bind def 31 | /W* { eoclip } bind def 32 | /BT { } bind def 33 | /ET { } bind def 34 | /pdfmark where { pop globaldict /?pdfmark /exec load put } 35 | { globaldict begin /?pdfmark /pop load def /pdfmark 36 | /cleartomark load def end } ifelse 37 | /BDC { mark 3 1 roll /BDC pdfmark } bind def 38 | /EMC { mark /EMC pdfmark } bind def 39 | /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def 40 | /Tj { show currentpoint cairo_store_point } bind def 41 | /TJ { 42 | { 43 | dup 44 | type /stringtype eq 45 | { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse 46 | } forall 47 | currentpoint cairo_store_point 48 | } bind def 49 | /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore 50 | cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def 51 | /Tf { pop /cairo_font exch def /cairo_font_matrix where 52 | { pop cairo_selectfont } if } bind def 53 | /Td { matrix translate cairo_font_matrix matrix concatmatrix dup 54 | /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point 55 | /cairo_font where { pop cairo_selectfont } if } bind def 56 | /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def 57 | cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def 58 | /g { setgray } bind def 59 | /rg { setrgbcolor } bind def 60 | /d1 { setcachedevice } bind def 61 | /cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def 62 | /cairo_image { image cairo_flush_ascii85_file } def 63 | /cairo_imagemask { imagemask cairo_flush_ascii85_file } def 64 | %%EndProlog 65 | %%BeginSetup 66 | %%EndSetup 67 | %%Page: 1 1 68 | %%BeginPageSetup 69 | %%PageBoundingBox: 98 590 565 677 70 | %%EndPageSetup 71 | q 98 590 467 87 rectclip q 72 | 0 g 73 | 532.574 596.495 m 527.34 601.503 l 532.105 601.257 l 536.867 601.015 l 74 | 537.176 605.284 l 537.57 610.765 535.727 611.605 529.727 608.679 c 525.621 75 | 606.675 525.082 606.632 522.34 608.054 c 519.105 609.734 518.207 613.554 76 | 521.047 613.554 c 526.309 613.554 535.574 615.941 536.098 617.433 c 536.414 77 | 618.331 537.324 619.831 538.117 620.761 c 539.957 622.917 538.949 624.589 78 | 535.809 624.589 c 534.309 624.589 533.371 625.167 533.371 626.093 c 533.371 79 | 627.132 534.414 627.597 536.746 627.597 c 538.602 627.597 540.684 628.273 80 | 541.367 629.101 c 542.051 629.929 543.152 630.605 543.816 630.605 c 545.504 81 | 630.605 554.359 636.612 554.359 637.753 c 554.359 640.003 551.082 639.741 82 | 548.531 637.292 c 546.605 635.437 545.172 634.859 543.562 635.28 c 542.25 83 | 635.624 540.578 635.269 539.586 634.433 c 538.641 633.64 535.949 632.155 84 | 533.602 631.136 c 529.934 629.542 528.992 629.468 526.855 630.616 c 525.492 85 | 631.351 524.375 632.526 524.375 633.237 c 524.375 634.55 530.199 636.609 86 | 533.93 636.62 c 535.062 636.624 536.859 637.276 537.926 638.069 c 539.75 87 | 639.425 539.766 639.616 538.18 641.234 c 536.59 642.855 536.336 642.855 88 | 533.902 641.253 c 529.945 638.651 527.355 641.421 531.121 644.23 c 532.781 89 | 645.468 532.785 645.62 531.133 647.3 c 529.477 648.987 529.316 648.98 527.637 90 | 647.112 c 526.668 646.034 524.629 643.234 523.109 640.89 c 520.074 636.202 91 | 519.285 635.859 516.941 638.214 c 515.5 639.659 515.535 640.05 517.367 92 | 642.632 c 519.605 645.784 519.863 648.249 518.371 652.194 c 517.082 655.597 93 | 517.922 657.003 520.438 655.651 c 522.004 654.812 522.375 653.526 522.375 94 | 648.929 c 522.375 644.753 522.672 643.542 523.488 644.362 c 525.016 645.898 95 | 524.98 659.335 523.438 664.03 c 522.742 666.136 522.426 668.109 522.73 96 | 668.413 c 523.68 669.37 528.34 667.757 530.293 665.796 c 532.059 664.023 97 | 532.078 663.616 530.602 658.296 c 529.742 655.202 529.355 652.359 529.738 98 | 651.976 c 530.117 651.593 531.637 652.491 533.113 653.972 c 535.215 656.081 99 | 535.535 656.925 534.582 657.878 c 532.492 659.98 533.246 660.816 536.652 100 | 660.175 c 539.746 659.593 540.133 659.859 543.301 664.769 c 545.152 667.632 101 | 546.953 671.386 547.305 673.109 c 548.117 677.101 550.496 677.569 552.109 102 | 674.058 c 554.223 669.452 553.566 667.433 548.82 663.929 c 544.594 660.808 103 | 543.32 658.456 545.219 657.28 c 545.688 656.991 547.113 657.866 548.391 104 | 659.23 c 549.664 660.589 551.164 661.706 551.719 661.706 c 552.273 661.706 105 | 553.707 662.624 554.898 663.749 c 556.094 664.878 558.707 666.066 560.711 106 | 666.39 c 563.699 666.878 564.352 666.679 564.352 665.28 c 564.352 662.866 107 | 562.582 659.78 558.711 655.433 c 556.867 653.362 555.355 651.331 555.355 108 | 650.917 c 555.355 650.507 554.223 648.847 552.836 647.23 c 549.637 643.499 109 | 550.965 641.87 555.352 644.148 c 559.18 646.136 563.352 645.437 563.352 110 | 642.804 c 563.352 640.519 555.363 633.476 551.09 631.995 c 548.676 631.159 111 | 547.922 630.343 548.094 628.757 c 548.223 627.589 547.203 624.968 545.824 112 | 622.929 c 542.656 618.245 543.805 616.956 549.211 619.128 c 553.934 621.023 113 | 556.355 620.526 556.355 617.655 c 556.355 615.093 554.867 614.226 549.359 114 | 613.577 c 544.863 613.05 l 545.203 605.913 l 545.523 599.101 545.395 598.612 115 | 542.348 595.132 c 540.594 593.124 538.855 591.484 538.48 591.484 c 538.109 116 | 591.484 535.449 593.737 532.57 596.495 c h 117 | 545.535 641.296 m 547.727 643.284 547.891 644.651 545.934 644.651 c 544.055 118 | 644.651 541.191 641.734 541.914 640.558 c 542.719 639.253 543.449 639.401 119 | 545.535 641.296 c h 120 | 544.215 645.972 m 545.816 647.913 546.102 653.878 544.613 654.405 c 543.871 121 | 654.671 543.363 653.995 543.363 652.73 c 543.363 651.562 542.691 650.347 122 | 541.867 650.03 c 539.598 649.155 540.055 644.651 542.41 644.651 c 542.801 123 | 644.651 543.613 645.245 544.215 645.972 c h 124 | 551.395 649.917 m 553.59 653.487 554.887 657.499 554.098 658.288 c 553.82 125 | 658.566 552.422 658.499 550.988 658.136 c 548.836 657.593 548.398 656.929 126 | 548.488 654.327 c 548.551 652.593 548.27 650.155 547.863 648.913 c 546.742 127 | 645.472 549.066 646.132 551.395 649.917 c h 128 | 538.367 650.702 m 538.367 653.507 535.695 654.288 533.355 652.163 c 530.906 129 | 649.937 531.66 648.663 535.43 648.663 c 537.715 648.663 538.367 649.116 130 | 538.367 650.702 c h 131 | 282.875 600.261 m 277.797 605.624 277.324 605.894 276.215 604.112 c 272.863 132 | 598.734 269.059 596.937 267.828 600.155 c 267.441 601.167 267.922 602.335 133 | 269.066 603.175 c 270.871 604.503 270.859 604.601 268.73 606.097 c 266.473 134 | 607.683 265.711 612.261 267.395 614.105 c 268.73 615.566 269.637 620.386 135 | 268.684 620.976 c 268.219 621.265 266.312 619.921 264.449 617.987 c 262.059 136 | 615.511 260.328 614.562 258.594 614.765 c 255.715 615.109 254.789 612.874 137 | 254.629 605.21 c 254.535 600.519 253.203 596.495 251.746 596.503 c 251.355 138 | 596.503 249.742 598.905 248.168 601.839 c 245.32 607.136 245.312 607.202 139 | 247.07 610.609 c 248.27 612.944 249.082 617.749 249.594 625.585 c 250.008 140 | 631.933 250.805 638.308 251.363 639.753 c 252.125 641.714 251.977 643.499 141 | 250.781 646.843 c 249.219 651.198 249.508 654.683 251.426 654.683 c 253.09 142 | 654.683 258.27 649.773 258.812 647.679 c 259.164 646.339 258.359 644.612 143 | 256.426 642.53 c 252.633 638.456 251.941 635.39 253.887 631.269 c 255.355 144 | 628.167 255.328 627.573 253.5 622.737 c 252.418 619.882 251.531 616.87 145 | 251.531 616.05 c 251.531 613.741 253.32 614.284 254.043 616.812 c 255.953 146 | 623.487 259.816 632.554 260.559 632.093 c 261.027 631.804 260.547 629.655 147 | 259.492 627.323 c 257.395 622.687 256.992 619.573 258.484 619.573 c 259.879 148 | 619.573 271.633 631.741 272.492 634.069 c 274.375 639.183 269.77 642.163 149 | 265.789 638.409 c 263.043 635.819 264.242 633.862 267.5 635.612 c 270.496 150 | 637.218 271.133 636.206 269.094 633.085 c 266.918 629.749 263.18 630.019 151 | 262.684 633.542 c 262.496 634.882 261.68 636.991 260.871 638.23 c 259.566 152 | 640.226 259.578 640.835 260.961 643.523 c 261.824 645.191 262.527 647.554 153 | 262.527 648.769 c 262.527 650.909 262.59 650.921 264.5 649.191 c 265.586 154 | 648.202 266.754 646.511 267.094 645.429 c 267.617 643.773 268.297 643.566 155 | 271.367 644.109 c 273.375 644.468 276.207 645.612 277.656 646.659 c 280.102 156 | 648.421 281.516 648.39 281.516 646.566 c 281.516 646.151 280.379 644.452 157 | 278.992 642.796 c 277.355 640.847 276.852 639.546 277.555 639.112 c 279.039 158 | 638.191 282.02 641.073 284.074 645.425 c 285.672 648.804 285.859 648.909 159 | 287.145 647.148 c 289.727 643.601 288.723 641.331 282.492 636.651 c 279.207 160 | 634.179 276.52 631.585 276.52 630.882 c 276.52 629.14 277.234 629.265 281.129 161 | 631.679 c 282.973 632.823 284.887 633.503 285.391 633.191 c 285.91 632.87 162 | 286.07 627.23 285.766 620.124 c 285.227 607.624 l 287.703 606.491 l 289.066 163 | 605.866 290.965 604.019 291.93 602.386 c 293.543 599.64 293.555 599.23 164 | 292.07 596.952 c 291.188 595.601 289.984 594.491 289.402 594.491 c 288.816 165 | 594.491 285.883 597.089 282.875 600.261 c h 166 | 273.02 608.37 m 273.02 610.183 271.062 609.855 270.676 607.972 c 270.461 167 | 606.929 270.836 606.468 271.676 606.749 c 272.414 606.999 273.02 607.726 168 | 273.02 608.37 c h 169 | 282.852 607.202 m 283.219 607.569 282.781 608.691 281.883 609.687 c 280.688 170 | 611.011 280.215 613.609 280.133 619.3 c 280.035 625.71 279.75 627.023 278.516 171 | 626.687 c 277.691 626.46 276.098 626.202 274.969 626.116 c 271.961 625.882 172 | 270.523 624.722 270.523 622.523 c 270.523 620.179 271.371 620.081 274.23 173 | 622.089 c 276.879 623.952 277.211 623.409 277.312 617.042 c 277.441 609.073 174 | 280.066 604.405 282.852 607.202 c h 175 | 273.762 615.073 m 273.055 618.792 271.52 619.167 271.52 615.62 c 271.52 176 | 613.698 272.031 612.55 272.883 612.55 c 273.797 612.55 274.086 613.378 177 | 273.762 615.073 c h 178 | 394.883 598.015 m 393.098 602.304 391.578 602.413 388.113 598.507 c 386.641 179 | 596.851 384.613 595.495 383.605 595.495 c 381.195 595.495 378.461 598.601 180 | 378.461 601.335 c 378.461 603.222 378.98 603.487 382.387 603.351 c 386.152 181 | 603.206 391.453 605.589 391.453 607.433 c 391.453 607.905 390.789 608.847 182 | 389.973 609.523 c 387.883 611.269 389.734 614.339 393.125 614.741 c 395.992 183 | 615.081 397.672 617.566 395.035 617.566 c 393.027 617.566 392.965 619.448 184 | 394.945 620.21 c 395.766 620.526 396.172 621.222 395.844 621.753 c 395.516 185 | 622.284 394.617 622.476 393.852 622.179 c 392.133 621.519 389.453 622.46 186 | 389.453 623.726 c 389.453 624.237 391.027 625.589 392.953 626.726 c 396.656 187 | 628.921 397.723 631.148 394.59 630.151 c 393.52 629.808 392.199 630.202 188 | 391.473 631.085 c 389.547 633.413 388.578 633.023 382.863 627.597 c 379.957 189 | 624.839 376.715 622.581 375.656 622.581 c 372.305 622.581 368.316 626.507 190 | 368.66 629.468 c 368.938 631.862 369.391 632.124 373.461 632.249 c 376.531 191 | 632.343 380.18 633.566 384.957 636.101 c 394.23 641.026 394.789 641.616 192 | 393.477 645.089 c 392.566 647.491 392.199 647.694 390.832 646.558 c 389.961 193 | 645.831 388.855 644.202 388.375 642.937 c 387.219 639.886 383.684 639.886 194 | 382.922 642.937 c 382.605 644.198 382.816 646.472 383.391 647.991 c 384.277 195 | 650.327 384.734 650.589 386.379 649.706 c 387.66 649.019 389.188 648.991 196 | 390.844 649.624 c 393.203 650.526 393.383 651.093 393.66 658.405 c 393.945 197 | 666.054 394.008 666.226 396.637 666.53 c 400.406 666.968 403.234 662.734 198 | 401.59 659.109 c 399.938 655.476 400.156 654.683 402.805 654.683 c 404.324 199 | 654.683 406.367 656.109 408.551 658.691 c 410.863 661.421 412.75 662.698 200 | 414.488 662.702 c 420.211 662.714 421.387 656.741 416.188 654.066 c 414.402 201 | 653.148 412.633 651.917 412.258 651.331 c 410.691 648.894 412.91 648.859 202 | 419.168 651.222 c 424.895 653.386 426.004 653.534 427.223 652.312 c 429.281 203 | 650.245 427.848 646.894 424.637 646.273 c 423.152 645.987 418.617 645.484 204 | 414.562 645.155 c 407.32 644.566 399.117 641.452 395.652 637.976 c 393.398 205 | 635.714 395.266 634.98 398.512 636.851 c 401.117 638.351 402.941 637.671 206 | 400.453 636.128 c 399.906 635.788 398.992 634.632 398.418 633.562 c 397.598 207 | 632.019 397.703 631.609 398.922 631.609 c 399.77 631.609 401.816 633.816 208 | 403.473 636.515 c 406.613 641.64 410.02 643.499 412.223 641.288 c 414.098 209 | 639.405 412.746 636.929 409.156 635.671 c 405.512 634.398 401.445 630.839 210 | 401.445 628.929 c 401.445 626.905 403.148 627.335 404.863 629.792 c 406.754 211 | 632.499 408.355 631.3 406.609 628.491 c 405.914 627.378 405.605 625.655 212 | 405.922 624.659 c 406.312 623.417 405.664 622.3 403.863 621.116 c 402.004 213 | 619.894 401.543 619.073 402.297 618.316 c 403.051 617.562 403.785 617.605 214 | 404.812 618.46 c 406.566 619.921 407.676 618.554 406.395 616.515 c 404.566 215 | 613.62 405.332 612.726 409.191 613.241 c 412.043 613.624 413.598 613.222 216 | 415.688 611.569 c 420.625 607.663 418.66 600.019 412.891 600.679 c 410.457 217 | 600.956 409.883 601.534 409.605 603.991 c 409.246 607.144 405.945 612.55 218 | 404.375 612.55 c 403.863 612.55 403.445 609.46 403.445 605.683 c 403.445 219 | 598.589 402.5 596.714 398.145 595.159 c 396.754 594.663 396.004 595.319 220 | 394.883 598.015 c h 221 | 396.797 603.276 m 397.668 604.691 396.223 609.542 394.93 609.542 c 393.551 222 | 609.542 391.23 604.077 392.199 603.105 c 393.039 602.261 396.246 602.382 223 | 396.797 603.276 c h 224 | 402.742 646.757 m 403.496 647.964 403.191 648.917 401.512 650.605 c 398.883 225 | 653.245 398.91 653.265 398.02 648.335 c 397.379 644.776 397.492 644.519 226 | 399.535 644.823 c 400.75 645.003 402.191 645.874 402.742 646.757 c h 227 | 409.371 653.312 m 410.508 654.769 411.441 656.347 411.441 656.823 c 411.441 228 | 658.632 408.605 657.593 407.059 655.218 c 403.922 650.417 405.852 648.823 229 | 409.371 653.312 c h 230 | 214.914 599.761 m 213.449 602.105 211.418 605.245 210.402 606.741 c 208.055 231 | 610.202 208.074 610.874 210.492 609.577 c 213.383 608.023 216.555 608.3 232 | 216.555 610.105 c 216.555 611.011 215.816 611.581 214.805 611.456 c 213.844 233 | 611.335 212.344 611.554 211.477 611.937 c 210.609 612.319 208.68 612.167 234 | 207.191 611.597 c 204.832 610.698 204.625 610.292 205.59 608.48 c 206.457 235 | 606.855 206.352 605.859 205.105 603.956 c 202.848 600.495 200.562 600.796 236 | 200.562 604.558 c 200.562 606.335 199.938 607.835 199.062 608.175 c 196.402 237 | 609.198 192.527 607.558 191.555 604.999 c 190.48 602.155 188.414 601.812 238 | 186.141 604.093 c 184.316 605.925 184.156 609.409 185.629 615.058 c 187.48 239 | 622.14 187.406 622.038 189.418 620.21 c 191.863 617.987 192.836 618.148 240 | 192.047 620.64 c 191.539 622.241 191.781 622.64 193.125 622.394 c 195.914 241 | 621.886 195.902 624.284 193.109 624.987 c 189.305 625.948 190.039 628.273 242 | 194.816 630.398 c 200.5 632.925 201.59 634.495 201.848 640.484 c 202.078 243 | 645.937 200.887 648.109 198.23 647.085 c 196.191 646.3 196.109 644.968 244 | 197.973 643.093 c 200.273 640.784 198.648 637.792 193.09 634.089 c 187.453 245 | 630.335 186.836 630.151 184.598 631.573 c 183.406 632.331 183.977 633.308 246 | 187.598 636.706 c 191.922 640.769 191.949 642.991 187.645 640.679 c 184.664 247 | 639.077 180.711 640.468 179.043 643.71 c 177.273 647.14 178.188 647.987 248 | 184.07 648.378 c 187.996 648.64 202.82 655.359 209.664 659.976 c 223.113 249 | 669.05 230.449 670.456 230.531 663.98 c 230.551 662.155 220.797 657.48 250 | 218.496 658.21 c 216.395 658.882 205.637 652.972 205.586 651.12 c 205.555 251 | 649.89 207.598 647.659 208.758 647.659 c 209.195 647.659 209.559 648.737 252 | 209.559 650.05 c 209.559 651.683 210.27 652.636 211.805 653.046 c 218.297 253 | 654.792 222.848 652.425 221.922 647.776 c 221.543 645.874 221.988 644.562 254 | 223.469 643.218 c 225.973 640.944 226.035 639.921 223.934 635.691 c 222.16 255 | 632.12 221.879 627.03 222.48 609.202 c 222.801 599.722 222.598 597.144 256 | 221.469 596.425 c 218.898 594.792 217.609 595.448 214.914 599.761 c h 257 | 193.641 610.819 m 193.516 612.019 192.148 611.788 191.719 610.495 c 191.496 258 | 609.831 191.855 609.472 192.516 609.691 c 193.176 609.913 193.684 610.421 259 | 193.641 610.819 c h 260 | 207.059 616.562 m 206.574 617.347 206 617.405 205.332 616.737 c 204.785 261 | 616.187 204.66 615.206 205.059 614.558 c 205.543 613.773 206.117 613.714 262 | 206.785 614.382 c 207.332 614.933 207.457 615.913 207.059 616.562 c h 263 | 197.02 615.491 m 198.043 617.148 195.918 617.546 193.965 616.062 c 192.129 264 | 614.667 192.141 614.62 194.258 614.589 c 195.461 614.569 196.707 614.976 265 | 197.02 615.491 c h 266 | 216.555 618.511 m 216.555 620.132 216.102 621.737 215.555 622.081 c 214.957 267 | 622.448 214.555 621.253 214.555 619.128 c 214.555 617.167 215.004 615.558 268 | 215.555 615.558 c 216.102 615.558 216.555 616.886 216.555 618.511 c h 269 | 200.637 620.851 m 200.512 622.05 199.141 621.819 198.715 620.526 c 198.492 270 | 619.862 198.852 619.503 199.512 619.722 c 200.172 619.944 200.68 620.452 271 | 200.637 620.851 c h 272 | 211.555 621.577 m 211.555 623.913 211.547 623.913 207.906 622.523 c 205.68 273 | 621.675 205.418 621.276 206.594 620.534 c 209.141 618.917 211.555 619.425 274 | 211.555 621.577 c h 275 | 201.562 625.53 m 201.562 626.05 201.113 626.753 200.562 627.097 c 200.012 276 | 627.437 199.562 627.011 199.562 626.151 c 199.562 625.292 200.012 624.589 277 | 200.562 624.589 c 201.113 624.589 201.562 625.011 201.562 625.53 c h 278 | 207.559 626.593 m 207.559 627.148 207.109 627.597 206.559 627.597 c 206.008 279 | 627.597 205.559 627.148 205.559 626.593 c 205.559 626.042 206.008 625.593 280 | 206.559 625.593 c 207.109 625.593 207.559 626.042 207.559 626.593 c h 281 | 216.555 628.683 m 216.555 631.128 214.219 630.784 213.73 628.265 c 213.539 282 | 627.276 214.051 626.593 214.98 626.593 c 215.906 626.593 216.555 627.452 283 | 216.555 628.683 c h 284 | 211.555 631.609 m 211.555 632.163 210.656 632.612 209.559 632.612 c 208.457 285 | 632.612 207.559 632.163 207.559 631.609 c 207.559 631.058 208.457 630.609 286 | 209.559 630.609 c 210.656 630.609 211.555 631.058 211.555 631.609 c h 287 | 217.051 635.12 m 217.051 637.28 215.621 637.956 213.668 636.714 c 212.484 288 | 635.964 212.484 635.605 213.668 634.265 c 215.406 632.296 217.051 632.71 289 | 217.051 635.12 c h 290 | 212.828 640.71 m 217.453 644.538 217.516 645.655 213.113 645.655 c 209.266 291 | 645.655 209.074 645.472 208.098 640.89 c 207.23 636.835 208.102 636.804 292 | 212.828 640.71 c h 293 | 128.227 600.8 m 127.195 601.558 126.262 603.929 125.957 606.566 c 125.109 294 | 613.921 125.109 613.921 118.793 609.253 c 109.316 602.253 98.121 600.542 295 | 98.121 606.093 c 98.121 607.441 99.188 608.167 102.031 608.761 c 112.367 296 | 610.917 125.305 623.241 132.859 638.132 c 138.129 648.515 140.203 653.585 297 | 141.551 659.37 c 142.934 665.308 144.477 666.409 147.484 663.597 c 148.641 298 | 662.515 149.59 661.53 149.59 661.409 c 149.59 661.288 150.004 659.753 150.504 299 | 657.991 c 151.281 655.28 151.051 654.37 148.98 651.98 c 144.109 646.359 300 | 144.684 643.757 152.543 635.788 c 155.344 632.948 157.535 631.605 159.375 301 | 631.593 c 165.98 631.558 166.078 627.913 159.559 624.573 c 152.633 621.026 302 | 150.691 621.933 147.234 630.316 c 145.594 634.292 143.684 637.765 142.988 303 | 638.034 c 141.922 638.444 136.598 631.062 136.598 629.175 c 136.598 628.136 304 | 140.172 628.577 141.355 629.761 c 142.23 630.64 142.883 630.612 144.051 305 | 629.64 c 146.699 627.433 145.762 625.593 140.93 623.511 c 137.234 621.925 306 | 136.094 621.773 135.461 622.796 c 134.402 624.495 132.02 623.007 129.785 307 | 619.257 c 128.18 616.558 128.195 616.362 130.098 614.952 c 131.898 613.616 308 | 132.176 613.671 132.996 615.523 c 133.5 616.655 134.855 617.566 136.039 309 | 617.566 c 137.215 617.566 139.926 618.464 142.07 619.558 c 145.691 621.413 310 | 146.094 621.437 147.777 619.905 c 150.16 617.741 150.082 614.421 147.594 311 | 612.28 c 145.211 610.234 145.055 608.96 147.094 608.175 c 148.988 607.444 312 | 149.023 604.816 147.164 602.948 c 145.359 601.136 135.992 600.995 135.223 313 | 602.769 c 134.848 603.628 134.156 603.316 133.016 601.765 c 131.094 599.151 314 | 130.609 599.05 128.227 600.8 c h 315 | 137.023 608.066 m 138.883 610.909 138.379 612.55 135.648 612.55 c 133.48 316 | 612.55 132.523 610.558 133.285 607.632 c 134.008 604.862 135.012 604.976 317 | 137.023 608.066 c h 318 | 439.98 602.456 m 437.832 604.839 438.777 606.734 441.746 605.984 c 444.188 319 | 605.37 450.902 607.831 453.773 610.394 c 455.973 612.359 459.414 618.847 320 | 459.414 621.038 c 459.414 621.886 458.898 622.581 458.266 622.581 c 456.938 321 | 622.581 446.797 615.98 445.906 614.53 c 444.969 613.007 440.812 613.382 322 | 439.375 615.116 c 438.465 616.218 438.355 617.452 439.004 619.276 c 440.008 323 | 622.105 440.91 622.71 446.922 624.589 c 452.84 626.441 458.934 629.319 324 | 460.223 630.878 c 461.512 632.437 463.242 651.933 462.715 658.964 c 462.426 325 | 662.823 462.715 663.804 464.395 664.706 c 466.066 665.605 466.859 665.355 326 | 468.914 663.296 c 471.898 660.3 472.152 655.714 469.926 645.151 c 467.488 327 | 633.605 467.926 632.933 475.637 636.347 c 478.484 637.609 479.691 638.831 328 | 480.098 640.862 c 480.762 644.21 480.73 644.206 484.438 641.452 c 489.152 329 | 637.956 488.227 633.753 482.398 632.187 c 474.547 630.077 466.41 626.163 330 | 466.41 624.495 c 466.41 623.519 467.297 622.433 468.379 622.089 c 469.465 331 | 621.745 471.961 619.573 473.934 617.261 c 478.641 611.741 480.852 610.62 332 | 487.148 610.581 c 490.035 610.558 492.395 610.148 492.395 609.663 c 492.395 333 | 609.183 490.648 606.925 488.512 604.648 c 481.785 597.48 478.121 599.12 334 | 471.395 612.335 c 469.086 616.866 466.902 620.573 466.539 620.573 c 466.176 335 | 620.573 465.102 618.378 464.152 615.691 c 462.457 610.905 455.445 602.851 336 | 451.664 601.347 c 447.969 599.878 441.773 600.464 439.98 602.456 c h 337 | 312.055 609.765 m 310.184 612.444 310.016 616.487 311.75 616.987 c 312.434 338 | 617.187 315.617 617.929 318.82 618.64 c 324.414 619.878 324.938 620.28 339 | 332.062 628.757 c 340.41 638.687 342.074 643.023 335.305 637.206 c 330.438 340 | 633.023 327.645 632.718 323.895 635.952 c 321.719 637.831 321.324 638.819 341 | 321.867 640.999 c 322.516 643.589 322.758 643.683 327.266 643.081 c 331.402 342 | 642.534 332.836 642.901 338.875 646.062 c 347.543 650.601 349.062 650.609 343 | 351.191 646.128 c 352.871 642.589 l 345.676 635.319 l 338.238 627.804 336.664 344 | 624.886 340.73 626.159 c 341.969 626.546 343.867 627.48 344.953 628.234 345 | c 347.512 630.015 348.977 629.964 350.902 628.03 c 353.52 625.401 351.297 346 | 622.948 345.621 622.194 c 342.91 621.831 340.176 620.913 339.547 620.151 347 | c 338.918 619.39 337.34 618.499 336.039 618.171 c 334.742 617.843 331.656 348 | 615.316 329.184 612.554 c 324.812 607.675 324.527 607.534 319.148 607.534 349 | c 314.559 607.534 313.344 607.917 312.055 609.765 c h 350 | 505.375 617.816 m 504.285 619.609 503.395 621.851 503.391 622.8 c 503.391 351 | 624.331 511.609 634.667 513.422 635.413 c 514.961 636.046 515.297 632.331 352 | 513.883 630.304 c 511.719 627.202 512.027 626.288 514.98 627.03 c 516.406 353 | 627.39 517.395 627.327 517.176 626.89 c 516.953 626.452 516.004 624.398 354 | 515.062 622.323 c 512.961 617.694 510.367 614.558 508.648 614.558 c 507.938 355 | 614.558 506.465 616.023 505.375 617.816 c h 356 | 103.352 622.866 m 102.25 624.558 101.918 627.546 102.094 634.269 c 102.43 357 | 647.069 103.199 647.917 109 641.921 c 111.391 639.452 112.613 637.245 112.613 358 | 635.401 c 112.613 631.862 113.738 631.855 115.438 635.378 c 117.777 640.23 359 | 117.848 640.636 116.371 640.636 c 114.98 640.636 110.859 644.405 111.703 360 | 644.905 c 115.488 647.163 122.918 650.667 123.918 650.667 c 125.789 650.667 361 | 130.602 645.37 130.602 643.312 c 130.602 642.359 129.012 640.179 127.07 362 | 638.468 c 123.73 635.523 123.629 635.253 125.211 633.499 c 126.543 632.019 363 | 126.637 631.351 125.664 630.175 c 123.93 628.077 117.938 626.292 115.059 364 | 627.019 c 113.609 627.382 112.613 627.198 112.613 626.566 c 112.613 624.995 365 | 107.938 620.573 106.277 620.573 c 105.492 620.573 104.176 621.605 103.352 366 | 622.866 c h 367 | 269.172 648.128 m 267.156 649.659 267.727 651.675 270.18 651.675 c 272.613 368 | 651.675 278.656 654.737 283.016 658.183 c 288.625 662.62 289.121 662.843 369 | 291.84 662.159 c 294.371 661.523 296.98 657.269 295.91 655.526 c 295.129 370 | 654.257 286.891 650.671 284.758 650.671 c 283.484 650.671 283.617 651.151 371 | 285.414 653.073 c 288.715 656.597 286.133 657.456 282.641 653.995 c 278.672 372 | 650.066 273.848 646.651 272.312 646.691 c 271.602 646.706 270.188 647.355 373 | 269.172 648.128 c h 374 | 276.227 660.691 m 276.555 661.956 276.156 662.909 275.133 663.304 c 272.043 375 | 664.495 273.32 667.347 277.512 668.609 c 285.633 671.05 288.781 665.093 376 | 281.559 660.952 c 276.715 658.175 275.555 658.116 276.227 660.691 c h 377 | 276.227 660.691 m f 378 | Q Q 379 | showpage 380 | %%Trailer 381 | end restore 382 | %%EOF 383 | -------------------------------------------------------------------------------- /thesis/latexmkrc: -------------------------------------------------------------------------------- 1 | # vim: set ft=perl: 2 | @default_files = ('thesis.tex'); 3 | 4 | $pdf_mode = 1; 5 | $bibtex_use = 2; 6 | $recorder = 1; 7 | $clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx"; 8 | $pdflatex = "xelatex -file-line-error --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S"; 9 | $pdf_update_method = 0; 10 | $makeindex = 'internal splitindex'; 11 | sub splitindex { 12 | # Use splitindex instead of makeindex. 13 | # The splitindex programe starts from an .idx file, makes a set of 14 | # other .idx files for separate indexes, and then runs makeindex to 15 | # make corresponding .ind files. 16 | # However, it is possible that the document uses the splitindex 17 | # package, but in a way compatible with the standard methods 18 | # compatible with makeindex, i.e., with a single index and with the 19 | # use of the \printindex command. 20 | # Then we need to invoke makeindex. 21 | # In addition, latexmk assumes that makeindex or its replacement makes 22 | # an .ind file from an .idx file, and latexmk gives an error if it 23 | # doesn't exist, we need to make an .ind file. 24 | # Both problems are solved by running makeindex and then splitindex. 25 | # Note: errors are returned by makeindex and splitindex for things 26 | # like a missing input file. No error is returned for lines in an 27 | # input file that are in an incorrect format; they are simply 28 | # ignored. So no problem is caused by lines in the .idx file 29 | # that are generated by splitindex in a format incompatible with 30 | # makeindex. 31 | my $ret1 = system( "makeindex", $$Psource ); 32 | my $ret2 = system( "splitindex", $$Psource ); 33 | return $ret1 || $ret2; 34 | } 35 | @cus_dep_list = (@cus_dep_list, "idx ind 0 makenomenclature"); 36 | sub makenomenclature { 37 | system("splitindex $_[0] -- -s $_[0].ist"); } 38 | @generated_exts = (@generated_exts, 'glo'); 39 | 40 | -------------------------------------------------------------------------------- /thesis/reference.bib: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | 3 | @INPROCEEDINGS{cnproceed, 4 | author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, 5 | title = {武林高手从入门到精通}, 6 | booktitle = {第~$N$~次华山论剑}, 7 | year = 2006, 8 | address = {西安, 中国}, 9 | month = sep, 10 | language ="zh", 11 | } 12 | 13 | @ARTICLE{cnarticle, 14 | AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", 15 | TITLE = "论刘姥姥食量大如牛之现实意义", 16 | JOURNAL = "红楼梦杂谈", 17 | PAGES = "260--266", 18 | VOLUME = "224", 19 | YEAR = "1800", 20 | language ="zh", 21 | } 22 | 23 | 24 | @inbook{Lin1992, 25 | language ="zh", 26 | AUTHOR = "林来兴", 27 | TITLE = "空间控制技术", 28 | PUBLISHER = "宇航出版社", 29 | YEAR = "1992", 30 | Pages = "25-42", 31 | ADDRESS = "北京", 32 | } 33 | 34 | @book{xin1994, 35 | language ="zh", 36 | title={信息技术与信息服务国际研讨会论文集}, 37 | author={辛希孟 and 中国科学院文献信息中心 and 孟广均 and 信息学}, 38 | year={1994}, 39 | publisher={中国社会科学出版社}, 40 | pages={45-49}, 41 | address={北京}, 42 | typeoflit={C}, 43 | } 44 | 45 | @book{zhao1998, 46 | language ="zh", 47 | title={新时代的工业工程师}, 48 | author={赵耀东}, 49 | year={1998}, 50 | citedate = {1998-09-26}, 51 | address={台北}, 52 | publisher={天下文化出版社}, 53 | url={http://www.ie.nthu.edu.tw/info/ie.newie.htm(Big5)}, 54 | typeoflit={M/OL}, 55 | } 56 | 57 | @phdthesis{Chen1992, 58 | language ="zh", 59 | Author = {谌颖}, 60 | Title = {空间最优交会控制理论与方法研究}, 61 | ADDRESS = "哈尔滨", 62 | School = {哈尔滨工业大学}, 63 | Year = {1992}, 64 | pages= {8-13}, 65 | } 66 | 67 | @article{hithesis2017, 68 | title={Hi!Thesis!,Harbin Institue of Technology}, 69 | author={Yanshuo Chu}, 70 | journal={Github}, 71 | volume={001}, 72 | number={0001}, 73 | pages={000-999}, 74 | year={2017}, 75 | } 76 | -------------------------------------------------------------------------------- /thesis/thesis.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | % , 4 | % /\^/`\ 5 | % | \/ | CONGRATULATIONS! 6 | % | | | SPRING IS IN THE AIR! 7 | % \ \ / _ _ 8 | % '\\//' _{ ' }_ 9 | % || hithesis v3 { `.!.` } 10 | % || ',_/Y\_,' 11 | % || , dustincys {_,_} 12 | % |\ || |\ Email: yanshuoc@gmail.com | 13 | % | | || | | https://yanshuo.name (\| /) 14 | % | | || / / \| // 15 | % \ \||/ / https://github.com/dustincys/hithesis |// 16 | % `\\//` \\ \./ \\ / // \\./ \\ // \\ |/ / 17 | % ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 18 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 19 | \documentclass[type=doctor]{hithesisbook} 20 | % 此处选项中不要有空格 21 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 22 | % 必填选项 23 | % type=doctor|master|bachelor|postdoc 24 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 25 | % 选填选项(选填选项的缺省值已经尽可能满足了大多数需求,除非明确知道自己有什么 26 | % 需求) 27 | % campus=shenzhen|weihai|harbin 28 | % 含义:校区选项,默认harbin 29 | % glue=true|false 30 | % 含义:由于我工规范中要求字体行距在一个闭区间内,这个选项为true表示tex自 31 | % 动选择,为false表示区间内一个最接近版心要求行数的要求的默认值,缺省值为 32 | % false。 33 | % tocfour=true|false 34 | % 含义:是否添加第四级目录,只对本科文科个别要求四级目录有效,缺省值为 35 | % false 36 | % fontset=windows|mac|ubuntu|fandol|adobe 37 | % 含义:设置字体,默认情况会自动识别系统,然后设置字体。后两个是开源字体,自行 38 | % 下载安装后设置使用。windows是中易字库,窝工默认常用字体,绝对没毛病。mac和 39 | % ubuntu 默认分别是华文和思源字库,理论上用什么字库都行。后两种开源字库的安装 40 | % 方法到谷歌上百度一下什么都有了。Linux非ubuntu发行版、非x86架构机器等如何运行 41 | % 可到github issue上讨论。 42 | % tocblank=true|false 43 | % 含义:目录中第一章之前,是否加一行空白。缺省值为true。 44 | % chapterhang=true|false 45 | % 含义:目录的章标题是否悬挂居中,规范中要求章标题少于15字,所以这个选项 46 | % 有无没什么用,除了特殊需求。缺省值为true。 47 | % fulltime=true|false 48 | % 含义:是否全日制,缺省值为true。非全日制如同等学力等,要在cover中设置类 49 | % 型,封面中不同格式 50 | % subtitle=true|false 51 | % 含义:论文题目是否含有副标题,缺省值为false,如果有要在cover中设置副标 52 | % 题内容,封面中显示。 53 | % newgeometry=one|two 54 | % 含义:规范中的自相矛盾之处,版芯是否包含页眉页脚,旧方法是按照包含页眉 55 | % 页脚来设置。该选项是多选选项,如果没有这个选项,缺省值是旧模板的版芯设 56 | % 置方法,如果设置该选项one或two,分别对应两种页眉页码对应版芯线的相对位 57 | % 置。第一种是严格按照规范要求,难看。第二种微调了页眉页码位置,好一点。 58 | % debug=true|false 59 | % 含义:是否显示版芯框和行号,用来调试。默认否。 60 | % openright=true|false 61 | % 含义:博士论文是否要求章节首页必须在奇数页,此选项不在规范要求中,按个 62 | % 人喜好自行决定。 默认否。注意,窝工的默认情况是打印版博士论文要求右翻页 63 | % ,电子版要求非右翻页且无空白页。如果想DIY(或身不由己DIY)在什么地方右 64 | % 翻页,将这个选项设置为false,然后在目标位置添加`\cleardoublepage`命令即 65 | % 可。 66 | % library=true|false 67 | % 含义:是否为提交到图书馆的电子版。默认否。注意:如果设置成true,那么 68 | % openright选项将被强制转换为false。 69 | % capcenterlast=true|false 70 | % 含义:图题、表题最后一行是否居中对齐(我工规范要求居中,但不要求居中对 71 | % 齐),此选项不在规范要求中,按个人喜好自行决定。默认否。 72 | % subcapcenterlast=true|false 73 | % 含义:子图图题最后一行是否居中对齐(我工规范要求居中,但不要求居中对齐 74 | % ),此选项不在规范要求中,按个人喜好自行决定。默认否。 75 | % absupper=true|false 76 | % 含义:中文目录中的英文摘要在中文目录中的大小写样式歧义,在规范中要求首 77 | % 字母大写,在work样例中是全大写。该选项控制是否全大写。默认否。 78 | % bsmainpagenumberline=true|false 79 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 80 | % 置是否在正文中显示页码横线,默认否。 81 | % bsfrontpagenumberline=true|false 82 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 83 | % 置是否在前文中显示页码横线,默认否。 84 | % bsheadrule=true|false 85 | % 含义:由于本科生论文官方模板的页码和页眉格式混乱,提供这个选项自定义设 86 | % 置是否显示页眉横线,默认显示。 87 | % splitbibitem=true|false 88 | % 含义:参考文献每一个条目内能不能断页,应广大刀客要求添加。默认否。 89 | % newtxmath=true|false 90 | % 含义:数学字体是否使用新罗马。默认是。 91 | % chapterbold=true|false 92 | % 含义:本科生章标题在目录和正文中是否加粗 93 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 94 | \usepackage{hithesis} 95 | \graphicspath{{figures/}} 96 | \begin{document} 97 | \frontmatter 98 | \input{front/cover} % 封面 99 | \makecover 100 | \input{front/denotation}%物理量名称表,符合规范为主,有要求添加 101 | \tableofcontents %目录 102 | \mainmatter 103 | \include{body/regu} 104 | \include{body/introduction} 105 | \backmatter 106 | \include{back/conclusion} % 结论 107 | \bibliographystyle{gbt7714-numerical} 108 | \bibliography{reference} 109 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 110 | %-- 注意:以下本硕博、博后书序不一致 --% 111 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 112 | % 硕博书序 113 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 114 | \begin{appendix}%附录 115 | \input{back/appA.tex} 116 | \end{appendix} 117 | \include{back/publications} % 所发文章 118 | \include{back/ceindex} % 索引, 根据自己的情况添加或者不添加,选择自动添加或者手工添加。 119 | \authorization %授权 120 | %\authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 121 | \include{back/acknowledgements} %致谢 122 | \include{back/resume} % 博士学位论文有个人简介 123 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 124 | % 本科书序为: 125 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 126 | % \authorization %授权 127 | % % \authorization[saomiao.pdf] %添加扫描页的命令,与上互斥 128 | % \include{back/acknowledgements} %致谢 129 | % \begin{appendix}%附录 130 | % \input{back/appendix01}%本科生翻译论文 131 | % \end{appendix} 132 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 133 | % 博后书序 134 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 135 | % \include{back/acknowledgements} %致谢 136 | % \include{back/doctorpublications} % 所发文章 137 | % \include{back/publications} % 所发文章 138 | % \include{back/resume} % 博士学位论文有个人简介 139 | % \include{back/correspondingaddr} %通信地址 140 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 141 | \end{document} 142 | % Local Variables: 143 | % TeX-engine: xetex 144 | % End: 145 | --------------------------------------------------------------------------------