├── .gitattributes ├── .gitignore ├── 上海交大博士毕业论文LaTex模板 ├── CASthesis.cfg ├── CASthesis.cls ├── body │ ├── abstract.aux │ ├── abstract.tex │ ├── abstract.tex.bak │ ├── app1.aux │ ├── app1.tex │ ├── app1.tex.bak │ ├── chap01.aux │ ├── chapter01.aux │ ├── chapter01.tex │ ├── chapter01.tex.bak │ ├── chapter02.aux │ ├── chapter02.tex │ ├── introduction.blg │ ├── pub.aux │ ├── pub.tex │ ├── pub.tex.bak │ ├── resume.aux │ ├── resume.tex │ ├── resume.tex.bak │ ├── symbol.aux │ ├── symbol.tex │ ├── symbol.tex.bak │ ├── thanks.aux │ ├── thanks.tex │ └── thanks.tex.bak ├── cctspace.cfg ├── diss.aux ├── diss.bbl ├── diss.dvi ├── diss.lof ├── diss.log ├── diss.lot ├── diss.out ├── diss.pdf ├── diss.tex ├── diss.tex.bak ├── diss.toc ├── figures │ └── chap1 │ │ ├── fig1.bb │ │ ├── fig1.jpg │ │ ├── fig2.bb │ │ └── fig2.jpg ├── model │ ├── CASthesis.cfg │ ├── CASthesis.cls │ ├── body │ │ ├── abstract.aux │ │ ├── abstract.tex │ │ ├── abstract.tex.bak │ │ ├── app1.aux │ │ ├── app1.tex │ │ ├── app1.tex.bak │ │ ├── chap01.aux │ │ ├── chapter01.aux │ │ ├── chapter01.tex │ │ ├── chapter01.tex.bak │ │ ├── chapter02.aux │ │ ├── chapter02.tex │ │ ├── introduction.blg │ │ ├── pub.aux │ │ ├── pub.tex │ │ ├── pub.tex.bak │ │ ├── resume.aux │ │ ├── resume.tex │ │ ├── resume.tex.bak │ │ ├── symbol.aux │ │ ├── symbol.tex │ │ ├── symbol.tex.bak │ │ ├── thanks.aux │ │ ├── thanks.tex │ │ └── thanks.tex.bak │ ├── cctspace.cfg │ ├── diss.aux │ ├── diss.bbl │ ├── diss.dvi │ ├── diss.lof │ ├── diss.log │ ├── diss.lot │ ├── diss.out │ ├── diss.pdf │ ├── diss.tex │ ├── diss.tex.bak │ ├── diss.toc │ ├── figures │ │ └── chap1 │ │ │ ├── fig1.bb │ │ │ ├── fig1.jpg │ │ │ ├── fig2.bb │ │ │ └── fig2.jpg │ ├── reference │ │ ├── chap1.bib │ │ └── chap2.bib │ └── sjtu2.bst ├── reference │ ├── chap1.bib │ └── chap2.bib └── sjtu2.bst ├── 北京大学论文LaTex模板 ├── appendix │ ├── acknowledgements.tex │ ├── chap01a.tex │ └── publications.tex ├── body │ ├── chap01.tex │ ├── chap02.tex │ ├── conclusion.tex │ └── reference.bib ├── clean.bat ├── figures │ ├── chap1_learn.eps │ └── logo.eps ├── gb_452.cap ├── gb_452.cpx ├── main.tex ├── preface │ ├── c_abstract.tex │ ├── cover.tex │ ├── covera.tex │ └── e_abstract.tex ├── readme.pdf └── setup │ ├── format.tex │ └── package.tex ├── 浙江大学学位论文模板 ├── STANDXB.EPS ├── ZJDX.EPS ├── ZJUthesis.cfg ├── ZJUthesis.cls ├── chapter │ ├── abstract.tex │ ├── bib.tex │ ├── chap-intro.tex │ ├── chap-math.tex │ ├── chap-req.tex │ ├── chap-tabfig.tex │ ├── pub.tex │ ├── resume.tex │ └── thanks.tex ├── readme.pdf └── sample.tex └── 清华大学LaTex模板 └── 清华大学模板 ├── thuthesis@GBK-4.5.1 ├── Makefile ├── Readme ├── data │ ├── ack.tex │ ├── appendix01.tex │ ├── chap01.tex │ ├── chap02.tex │ ├── cover.tex │ ├── denotation.tex │ └── resume.tex ├── figures │ ├── hello.eps │ ├── hello.fig │ ├── hello.pdf │ ├── thu-fig-logo.eps │ ├── thu-fig-logo.pdf │ ├── thu-lib-logo.eps │ ├── thu-lib-logo.pdf │ ├── thu-text-logo.eps │ ├── thu-text-logo.pdf │ ├── thu-whole-logo.eps │ └── thu-whole-logo.pdf ├── main.pdf ├── main.tex ├── msmake.cmd ├── ref │ └── refs.bib ├── shuji.pdf ├── shuji.tex ├── thubib.bst ├── thuthesis.cfg ├── thuthesis.cls ├── thuthesis.dtx ├── thuthesis.ins ├── thuthesis.pdf └── thutils.sty └── thuthesis@UTF8-4.5.1 ├── Makefile ├── Readme ├── data ├── ack.tex ├── appendix01.tex ├── chap01.tex ├── chap02.tex ├── cover.tex ├── denotation.tex └── resume.tex ├── figures ├── hello.eps ├── hello.fig ├── hello.pdf ├── thu-fig-logo.eps ├── thu-fig-logo.pdf ├── thu-lib-logo.eps ├── thu-lib-logo.pdf ├── thu-text-logo.eps ├── thu-text-logo.pdf ├── thu-whole-logo.eps └── thu-whole-logo.pdf ├── main.pdf ├── main.tex ├── msmake.cmd ├── ref └── refs.bib ├── shuji.pdf ├── shuji.tex ├── thubib.bst ├── thuthesis.cfg ├── thuthesis.cls ├── thuthesis.dtx ├── thuthesis.ins ├── thuthesis.pdf └── thutils.sty /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/CASthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/CASthesis.cfg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/CASthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/CASthesis.cls -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/abstract.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {chapter}{\CJKfamily {hei}ժҪ}{i}{chapter*.1}} 3 | \@writefile{lof}{\addvspace {10\p@ }} 4 | \@writefile{lot}{\addvspace {10\p@ }} 5 | \@writefile{toc}{\contentsline {chapter}{\CJKfamily {hei}ABSTRACT}{iii}{chapter*.2}} 6 | \@writefile{lof}{\addvspace {10\p@ }} 7 | \@writefile{lot}{\addvspace {10\p@ }} 8 | \@setckpt{body/abstract}{ 9 | \setcounter{page}{4} 10 | \setcounter{equation}{0} 11 | \setcounter{enumi}{0} 12 | \setcounter{enumii}{0} 13 | \setcounter{enumiii}{0} 14 | \setcounter{enumiv}{0} 15 | \setcounter{footnote}{0} 16 | \setcounter{mpfootnote}{0} 17 | \setcounter{CTEX@sectiondepth}{2} 18 | \setcounter{part}{0} 19 | \setcounter{chapter}{0} 20 | \setcounter{section}{0} 21 | \setcounter{subsection}{0} 22 | \setcounter{subsubsection}{0} 23 | \setcounter{paragraph}{0} 24 | \setcounter{subparagraph}{0} 25 | \setcounter{figure}{0} 26 | \setcounter{table}{0} 27 | \setcounter{parentequation}{0} 28 | \setcounter{newflo@tctr}{4} 29 | \setcounter{Item}{0} 30 | \setcounter{Hfootnote}{0} 31 | \setcounter{section@level}{0} 32 | \setcounter{algo}{0} 33 | \setcounter{thm}{0} 34 | \setcounter{defn}{0} 35 | \setcounter{conj}{0} 36 | \setcounter{exmp}{0} 37 | \setcounter{rem}{0} 38 | \setcounter{case}{0} 39 | } 40 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/abstract.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/abstract.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/abstract.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/app1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/app1.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/app1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/app1.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/app1.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/app1.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chap01.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{body/chap01}{ 3 | \setcounter{page}{1} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{0} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{CTEX@sectiondepth}{2} 12 | \setcounter{part}{0} 13 | \setcounter{chapter}{0} 14 | \setcounter{section}{0} 15 | \setcounter{subsection}{0} 16 | \setcounter{subsubsection}{0} 17 | \setcounter{paragraph}{0} 18 | \setcounter{subparagraph}{0} 19 | \setcounter{figure}{0} 20 | \setcounter{table}{0} 21 | \setcounter{parentequation}{0} 22 | \setcounter{newflo@tctr}{4} 23 | \setcounter{Item}{0} 24 | \setcounter{Hfootnote}{0} 25 | \setcounter{section@level}{0} 26 | \setcounter{algo}{0} 27 | \setcounter{thm}{0} 28 | \setcounter{defn}{0} 29 | \setcounter{conj}{0} 30 | \setcounter{exmp}{0} 31 | \setcounter{rem}{0} 32 | \setcounter{case}{0} 33 | } 34 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chapter01.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/chapter01.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chapter01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/chapter01.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chapter01.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/chapter01.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chapter02.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/chapter02.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/chapter02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/chapter02.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/introduction.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: introduction.aux 2 | The style file: E:/thesis_yangtao_new/sjtu2.bst 3 | Database file #1: E:/thesis_yangtao_new/reference/intro.bib 4 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/pub.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/pub.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/pub.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/pub.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/pub.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/pub.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/resume.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/resume.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/resume.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/resume.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/resume.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/symbol.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/symbol.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/symbol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/symbol.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/symbol.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/symbol.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/thanks.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/thanks.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/thanks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/thanks.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/body/thanks.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/body/thanks.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/cctspace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/cctspace.cfg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.bbl: -------------------------------------------------------------------------------- 1 | \begin{thebibliography}{1} 2 | \newcommand{\enquote}[1]{``#1''} 3 | \providecommand{\url}[1]{\texttt{#1}} 4 | \providecommand{\urlprefix}{URL } 5 | \providecommand{\eprint}[2][]{\url{#2}} 6 | 7 | \bibitem{greenleaf2003ncs} 8 | Greenleaf A., Lassas M., and Uhlmann G., \enquote{{On nonuniqueness for 9 | Calderon's inverse problem}}, Mathematical Research Letters, 2003, 10 | \textbf{10}(5), 685. 11 | 12 | \bibitem{greenleaf2003acc} 13 | Greenleaf A., Lassas M., and Uhlmann G., \enquote{{Anisotropic conductivities 14 | that cannot be detected by EIT}}, Physiological Measurement, 2003, 15 | \textbf{24}(2), 413--419. 16 | 17 | \bibitem{pendry2006cef} 18 | Pendry J.B., Schurig D., and Smith D.R., \enquote{{Controlling Electromagnetic 19 | Fields}}, Science, 2006, \textbf{312}(5781), 1780--1782. 20 | 21 | \bibitem{leonhardt2006ocm} 22 | Leonhardt U., \enquote{{Optical Conformal Mapping}}, Science, 2006, 23 | \textbf{312}(5781), 1777--1780. 24 | 25 | \bibitem{schurig2006cmp} 26 | Schurig D., Pendry J.B., and Smith D.R., \enquote{{Calculation of material 27 | properties and ray tracing in transformation media}}, Optics Express, 2006, 28 | \textbf{14}(21), 9794--9804. 29 | 30 | \bibitem{chen2007ewi} 31 | Chen H., Wu B.I., Zhang B., \emph{et~al.}, \enquote{{Electromagnetic Wave 32 | Interactions with a Metamaterial Cloak}}, Physical Review Letters, 2007, 33 | \textbf{99}(6), 63903. 34 | 35 | \bibitem{schurig2006mec} 36 | Schurig D., Mock J.J., Justice B.J., \emph{et~al.}, \enquote{{Metamaterial 37 | Electromagnetic Cloak at Microwave Frequencies}}, Science, 2006, 38 | \textbf{314}(5801), 977--980. 39 | 40 | \bibitem{li2008huc} 41 | Li J. and Pendry J.B., \enquote{{Hiding Under the Carpet: a New Strategy for 42 | Cloaking}}, Physical Review Letters, 2008, \textbf{101}(10), 203901--103904. 43 | 44 | \bibitem{Rliu2009bro} 45 | Liu R., C. L., Mock J.J., \emph{et~al.}, \enquote{{Broadband Ground Plane 46 | Cloak}}, Science, 2009, \textbf{323}(1126), 366--369. 47 | 48 | \end{thebibliography} 49 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.dvi -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.lof -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.log -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.lot: -------------------------------------------------------------------------------- 1 | \addvspace {10\p@ } 2 | \addvspace {10\p@ } 3 | \addvspace {10\p@ } 4 | \addvspace {10\p@ } 5 | \addvspace {10\p@ } 6 | \addvspace {10\p@ } 7 | \addvspace {10\p@ } 8 | \addvspace {10\p@ } 9 | \addvspace {10\p@ } 10 | \addvspace {10\p@ } 11 | \addvspace {10\p@ } 12 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.out -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.pdf -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/diss.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/diss.toc -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/figures/chap1/fig1.bb: -------------------------------------------------------------------------------- 1 | %%Title: fig1.jpg 2 | %%Creator: ebb Version 0.5.2 3 | %%BoundingBox: 0 0 306 222 4 | %%CreationDate: Wed Jan 28 00:28:26 2009 5 | 6 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/figures/chap1/fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/figures/chap1/fig1.jpg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/figures/chap1/fig2.bb: -------------------------------------------------------------------------------- 1 | %%Title: fig2.jpg 2 | %%Creator: ebb Version 0.5.2 3 | %%BoundingBox: 0 0 406 229 4 | %%CreationDate: Wed Jan 28 00:28:33 2009 5 | 6 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/figures/chap1/fig2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/figures/chap1/fig2.jpg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/CASthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/CASthesis.cfg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/CASthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/CASthesis.cls -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/abstract.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {chapter}{\CJKfamily {hei}ժҪ}{i}{chapter*.1}} 3 | \@writefile{lof}{\addvspace {10\p@ }} 4 | \@writefile{lot}{\addvspace {10\p@ }} 5 | \@writefile{toc}{\contentsline {chapter}{\CJKfamily {hei}ABSTRACT}{iii}{chapter*.2}} 6 | \@writefile{lof}{\addvspace {10\p@ }} 7 | \@writefile{lot}{\addvspace {10\p@ }} 8 | \@setckpt{body/abstract}{ 9 | \setcounter{page}{4} 10 | \setcounter{equation}{0} 11 | \setcounter{enumi}{0} 12 | \setcounter{enumii}{0} 13 | \setcounter{enumiii}{0} 14 | \setcounter{enumiv}{0} 15 | \setcounter{footnote}{0} 16 | \setcounter{mpfootnote}{0} 17 | \setcounter{CTEX@sectiondepth}{2} 18 | \setcounter{part}{0} 19 | \setcounter{chapter}{0} 20 | \setcounter{section}{0} 21 | \setcounter{subsection}{0} 22 | \setcounter{subsubsection}{0} 23 | \setcounter{paragraph}{0} 24 | \setcounter{subparagraph}{0} 25 | \setcounter{figure}{0} 26 | \setcounter{table}{0} 27 | \setcounter{parentequation}{0} 28 | \setcounter{newflo@tctr}{4} 29 | \setcounter{Item}{0} 30 | \setcounter{Hfootnote}{0} 31 | \setcounter{section@level}{0} 32 | \setcounter{algo}{0} 33 | \setcounter{thm}{0} 34 | \setcounter{defn}{0} 35 | \setcounter{conj}{0} 36 | \setcounter{exmp}{0} 37 | \setcounter{rem}{0} 38 | \setcounter{case}{0} 39 | } 40 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/abstract.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/abstract.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/abstract.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/app1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/app1.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/app1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/app1.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/app1.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/app1.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chap01.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{body/chap01}{ 3 | \setcounter{page}{1} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{0} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{CTEX@sectiondepth}{2} 12 | \setcounter{part}{0} 13 | \setcounter{chapter}{0} 14 | \setcounter{section}{0} 15 | \setcounter{subsection}{0} 16 | \setcounter{subsubsection}{0} 17 | \setcounter{paragraph}{0} 18 | \setcounter{subparagraph}{0} 19 | \setcounter{figure}{0} 20 | \setcounter{table}{0} 21 | \setcounter{parentequation}{0} 22 | \setcounter{newflo@tctr}{4} 23 | \setcounter{Item}{0} 24 | \setcounter{Hfootnote}{0} 25 | \setcounter{section@level}{0} 26 | \setcounter{algo}{0} 27 | \setcounter{thm}{0} 28 | \setcounter{defn}{0} 29 | \setcounter{conj}{0} 30 | \setcounter{exmp}{0} 31 | \setcounter{rem}{0} 32 | \setcounter{case}{0} 33 | } 34 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chapter01.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/chapter01.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chapter01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/chapter01.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chapter01.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/chapter01.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chapter02.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/chapter02.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/chapter02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/chapter02.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/introduction.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: introduction.aux 2 | The style file: E:/thesis_yangtao_new/sjtu2.bst 3 | Database file #1: E:/thesis_yangtao_new/reference/intro.bib 4 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/pub.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/pub.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/pub.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/pub.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/pub.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/pub.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/resume.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/resume.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/resume.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/resume.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/resume.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/symbol.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/symbol.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/symbol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/symbol.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/symbol.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/symbol.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/thanks.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/thanks.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/thanks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/thanks.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/body/thanks.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/body/thanks.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/cctspace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/cctspace.cfg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.aux -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.bbl: -------------------------------------------------------------------------------- 1 | \begin{thebibliography}{1} 2 | \newcommand{\enquote}[1]{``#1''} 3 | \providecommand{\url}[1]{\texttt{#1}} 4 | \providecommand{\urlprefix}{URL } 5 | \providecommand{\eprint}[2][]{\url{#2}} 6 | 7 | \bibitem{greenleaf2003ncs} 8 | Greenleaf A., Lassas M., and Uhlmann G., \enquote{{On nonuniqueness for 9 | Calderon's inverse problem}}, Mathematical Research Letters, 2003, 10 | \textbf{10}(5), 685. 11 | 12 | \bibitem{greenleaf2003acc} 13 | Greenleaf A., Lassas M., and Uhlmann G., \enquote{{Anisotropic conductivities 14 | that cannot be detected by EIT}}, Physiological Measurement, 2003, 15 | \textbf{24}(2), 413--419. 16 | 17 | \bibitem{pendry2006cef} 18 | Pendry J.B., Schurig D., and Smith D.R., \enquote{{Controlling Electromagnetic 19 | Fields}}, Science, 2006, \textbf{312}(5781), 1780--1782. 20 | 21 | \bibitem{leonhardt2006ocm} 22 | Leonhardt U., \enquote{{Optical Conformal Mapping}}, Science, 2006, 23 | \textbf{312}(5781), 1777--1780. 24 | 25 | \bibitem{schurig2006cmp} 26 | Schurig D., Pendry J.B., and Smith D.R., \enquote{{Calculation of material 27 | properties and ray tracing in transformation media}}, Optics Express, 2006, 28 | \textbf{14}(21), 9794--9804. 29 | 30 | \bibitem{chen2007ewi} 31 | Chen H., Wu B.I., Zhang B., \emph{et~al.}, \enquote{{Electromagnetic Wave 32 | Interactions with a Metamaterial Cloak}}, Physical Review Letters, 2007, 33 | \textbf{99}(6), 63903. 34 | 35 | \bibitem{schurig2006mec} 36 | Schurig D., Mock J.J., Justice B.J., \emph{et~al.}, \enquote{{Metamaterial 37 | Electromagnetic Cloak at Microwave Frequencies}}, Science, 2006, 38 | \textbf{314}(5801), 977--980. 39 | 40 | \bibitem{li2008huc} 41 | Li J. and Pendry J.B., \enquote{{Hiding Under the Carpet: a New Strategy for 42 | Cloaking}}, Physical Review Letters, 2008, \textbf{101}(10), 203901--103904. 43 | 44 | \bibitem{Rliu2009bro} 45 | Liu R., C. L., Mock J.J., \emph{et~al.}, \enquote{{Broadband Ground Plane 46 | Cloak}}, Science, 2009, \textbf{323}(1126), 366--369. 47 | 48 | \end{thebibliography} 49 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.dvi -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.lof -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.log -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.lot: -------------------------------------------------------------------------------- 1 | \addvspace {10\p@ } 2 | \addvspace {10\p@ } 3 | \addvspace {10\p@ } 4 | \addvspace {10\p@ } 5 | \addvspace {10\p@ } 6 | \addvspace {10\p@ } 7 | \addvspace {10\p@ } 8 | \addvspace {10\p@ } 9 | \addvspace {10\p@ } 10 | \addvspace {10\p@ } 11 | \addvspace {10\p@ } 12 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.out -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.pdf -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.tex -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.tex.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.tex.bak -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/diss.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/diss.toc -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/figures/chap1/fig1.bb: -------------------------------------------------------------------------------- 1 | %%Title: fig1.jpg 2 | %%Creator: ebb Version 0.5.2 3 | %%BoundingBox: 0 0 306 222 4 | %%CreationDate: Wed Jan 28 00:28:26 2009 5 | 6 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/figures/chap1/fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/figures/chap1/fig1.jpg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/figures/chap1/fig2.bb: -------------------------------------------------------------------------------- 1 | %%Title: fig2.jpg 2 | %%Creator: ebb Version 0.5.2 3 | %%BoundingBox: 0 0 406 229 4 | %%CreationDate: Wed Jan 28 00:28:33 2009 5 | 6 | -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/figures/chap1/fig2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/figures/chap1/fig2.jpg -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/reference/chap1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/reference/chap1.bib -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/model/reference/chap2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/model/reference/chap2.bib -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/reference/chap1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/reference/chap1.bib -------------------------------------------------------------------------------- /上海交大博士毕业论文LaTex模板/reference/chap2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/上海交大博士毕业论文LaTex模板/reference/chap2.bib -------------------------------------------------------------------------------- /北京大学论文LaTex模板/appendix/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/appendix/acknowledgements.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/appendix/chap01a.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/appendix/chap01a.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/appendix/publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/appendix/publications.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/body/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/body/chap01.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/body/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/body/chap02.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/body/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/body/conclusion.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/body/reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/body/reference.bib -------------------------------------------------------------------------------- /北京大学论文LaTex模板/clean.bat: -------------------------------------------------------------------------------- 1 | del *.aux /s 2 | del *.bak /s 3 | del *.log /s 4 | del *.bbl /s 5 | del *.dvi /s 6 | del *.blg /s 7 | del *.thm /s 8 | del *.toc /s 9 | -------------------------------------------------------------------------------- /北京大学论文LaTex模板/gb_452.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/gb_452.cap -------------------------------------------------------------------------------- /北京大学论文LaTex模板/gb_452.cpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/gb_452.cpx -------------------------------------------------------------------------------- /北京大学论文LaTex模板/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/main.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/preface/c_abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/preface/c_abstract.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/preface/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/preface/cover.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/preface/covera.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/preface/covera.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/preface/e_abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/preface/e_abstract.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/readme.pdf -------------------------------------------------------------------------------- /北京大学论文LaTex模板/setup/format.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/setup/format.tex -------------------------------------------------------------------------------- /北京大学论文LaTex模板/setup/package.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/北京大学论文LaTex模板/setup/package.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/STANDXB.EPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/STANDXB.EPS -------------------------------------------------------------------------------- /浙江大学学位论文模板/ZJUthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/ZJUthesis.cfg -------------------------------------------------------------------------------- /浙江大学学位论文模板/ZJUthesis.cls: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `ZJUthesis.cls', 3 | %% 4 | \NeedsTeXFormat{LaTeX2e}[1995/12/01] 5 | \ProvidesClass{ZJUthesis}[2006/04/15 v0.1c ZJUthesis document class] 6 | \newif\ifZJU@typeinfo \ZJU@typeinfotrue 7 | \DeclareOption{notypeinfo}{\ZJU@typeinfofalse} 8 | \newif\ifZJU@dvips \ZJU@dvipstrue 9 | \DeclareOption{dvips}{\ZJU@dvipstrue} 10 | \DeclareOption{dvipdfm}{\ZJU@dvipsfalse} 11 | \DeclareOption*{\PassOptionsToClass{\CurrentOption}{ctexbook}} 12 | \ProcessOptions 13 | \LoadClass[cs4size,a4paper,fancyhdr]{ctexbook}[2004/08/14] 14 | %% math packages 15 | \RequirePackage{amsmath,amsthm,amsfonts,amssymb,bm} 16 | %% graphics packages 17 | \RequirePackage{graphicx,psfrag} 18 | %% hyperref package 19 | \ifx\pdfoutput\undefined % We're not running pdftex 20 | \ifZJU@dvips 21 | \RequirePackage[dvips]{hyperref} 22 | \else 23 | \RequirePackage[dvipdfm]{hyperref} 24 | \fi 25 | \AtBeginDvi{\special{pdf:tounicode GBK-EUC-UCS2}} % GBK -> Unicode 26 | \else 27 | \RequirePackage[pdftex]{hyperref} 28 | \fi 29 | \hypersetup{CJKbookmarks,% 30 | bookmarksnumbered,% 31 | colorlinks,% 32 | linkcolor=blue,% 33 | plainpages=false,% 34 | pdfstartview=FitH} 35 | \AtBeginDocument{\makeatletter\input{ZJUthesis.cfg}\makeatother} 36 | \oddsidemargin 1.5 true cm 37 | \if@twoside 38 | \evensidemargin 0 true cm 39 | \else 40 | \evensidemargin 1.5 true cm 41 | \fi 42 | \textheight 21 true cm 43 | \textwidth 14.5 true cm 44 | \headheight 5pt 45 | \parskip 0.5ex plus 0.25ex minus 0.25ex 46 | \def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else 47 | \thispagestyle{empty}% 48 | \hbox{}\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi} 49 | \renewcommand{\floatpagefraction}{0.80} 50 | \bibliographystyle{plain} 51 | \newcommand\ZJUspace{\protect\CTEX@spaceChar\protect\CTEX@spaceChar} 52 | \def\reserved@a#1 #2 #3\@nil{% 53 | \def\ZJUfiledate{#1}% 54 | \def\ZJUfileversion{#2}% 55 | \def\ZJUfileinfo{#3}}% 56 | \edef\reserved@b{\csname ver@ZJUthesis.cls\endcsname} 57 | \expandafter\reserved@a\reserved@b\@nil\relax 58 | \def\ZJU@underline[#1]#2{% 59 | \underline{\hbox to #1{\hfill#2\hfill}}} 60 | \def\ZJUunderline{\@ifnextchar[\ZJU@underline\underline} 61 | \newcommand\classification[1]{\def\ZJU@value@classification{#1}} 62 | \newcommand\confidential[1]{\def\ZJU@value@confidential{#1}} 63 | \newcommand\UDC[1]{\def\ZJU@value@UDC{#1}} 64 | \newcommand\serialnumber[1]{\def\ZJU@value@serialnumber{#1}} 65 | \newcommand\school[1]{\def\ZJU@value@school{#1}} 66 | \newcommand\degree[1]{\def\ZJU@value@degree{#1}} 67 | \renewcommand\title[2][\ZJU@value@title]{% 68 | \def\ZJU@value@title{#2} 69 | \def\ZJU@value@titlemark{\MakeUppercase{#1}}} 70 | \renewcommand\author[1]{\def\ZJU@value@author{#1}} 71 | \newcommand\supervisor[1]{\def\ZJU@value@supervisor{#1}} 72 | \newcommand\supervisorinstitute[1]{\def\ZJU@value@supervisorinstitute{#1}} 73 | \newcommand\major[1]{\def\ZJU@value@major{#1}} 74 | \newcommand\submitdate[1]{\def\ZJU@value@submitdate{#1}} 75 | \newcommand\defenddate[1]{\def\ZJU@value@defenddate{#1}} 76 | \newcommand\institute[1]{\def\ZJU@value@institute{#1}} 77 | \newcommand\chairman[1]{\def\ZJU@value@chairman{#1}} 78 | \renewcommand\maketitle{% 79 | \cleardoublepage 80 | \thispagestyle{empty} 81 | \begin{center} 82 | \bf\heiti\zihao{-5} 83 | \ZJU@label@classification~ 84 | \ZJUunderline[100pt]{\ZJU@value@classification} 85 | \hfill 86 | % \ZJU@label@confidential~ 87 | % \ZJUunderline[100pt]{\ZJU@value@confidential} 88 | % \vskip 10pt 89 | % \ZJU@label@UDC~ 90 | % \ZJUunderline[108pt]{\ZJU@value@UDC} 91 | % \hfill 92 | \ZJU@label@serialnumber~ 93 | \ZJUunderline[100pt]{\ZJU@value@serialnumber} \\ 94 | \vspace{10mm} 95 | \includegraphics[width=80mm]{ZJDX.EPS} \\ 96 | \vspace{8mm} 97 | %% \ZJU@value@school \\ \zihao{-1} 98 | \centerline{\bf\fangsong \Huge{\ZJU@value@degree\ZJU@label@thesis} } 99 | \vspace{5mm} 100 | \includegraphics[width=45mm]{STANDXB.EPS} \\ 101 | \vspace{10mm} 102 | % \vskip \stretch{2} 103 | % \bf\fangsong\zihao{3} \ZJUunderline{~\ZJU@value@title~} 104 | % \vskip \stretch{1} 105 | % \bf\kaishu\zihao{4} \ZJUunderline{~\ZJU@value@author~} 106 | % \vskip \stretch{2} 107 | 108 | \begin{tabular}{ll} 109 | \bf\fangsong\zihao{3} \ZJU@label@title & \fangsong\zihao{4} \ZJUunderline[300pt]{\ZJU@value@title} 110 | \end{tabular} 111 | \vspace{30mm} % skip for 3cm 112 | 113 | \fangsong\zihao{4} 114 | % \def\tabcolsep{1pt} 115 | % \def\arraystretch{1.5} 116 | \begin{tabular}{llcrl} 117 | \bf \ZJU@label@author & 118 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@author}} 119 | % \\ 120 | \\[3mm] 121 | \bf \ZJU@label@supervisor & 122 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@supervisor}} 123 | % \\ 124 | \\[3mm] 125 | % & \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@advisorinstitute}} 126 | % \\ 127 | % \bf \ZJU@label@degree & 128 | % \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@degree}} 129 | % \\ 130 | \bf \ZJU@label@major & 131 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@major}} 132 | % \\ 133 | \\[3mm] 134 | \bf \ZJU@label@institute & 135 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@institute}} 136 | \\[3mm] 137 | \bf \ZJU@label@submitdate & 138 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@submitdate}} 139 | % \\ 140 | \\[3mm] 141 | \bf \ZJU@label@defenddate & 142 | \multicolumn{4}{l}{\ZJUunderline[250pt]{\ZJU@value@defenddate}} 143 | % \\ 144 | % \ZJU@label@school & 145 | % \multicolumn{4}{l}{\ZJUunderline[300pt]{\ZJU@value@school}} 146 | % \\[15pt] 147 | % \multicolumn{4}{r}{\ZJU@label@chairman} & 148 | % \ZJUunderline[100pt]{\ZJU@value@chairman} 149 | \end{tabular} 150 | \end{center} 151 | % \clearpage 152 | % \if@twoside 153 | % \thispagestyle{empty} 154 | % \ifZJU@typeinfo 155 | % \vspace*{\stretch{1}} 156 | % \begin{footnotesize} 157 | % \noindent 158 | % Typeset by \LaTeXe{} at \CTEX@todayold \\ 159 | % With package \texttt{ZJUthesis} \ZJUfileversion{} of C\TeX{}.ORG 160 | % \end{footnotesize} 161 | % \fi 162 | % \cleardoublepage 163 | % \fi 164 | } 165 | \newcommand\englishtitle[1]{\def\ZJU@value@englishtitle{#1}} 166 | \newcommand\englishauthor[1]{\def\ZJU@value@englishauthor{#1}} 167 | \newcommand\englishadvisor[1]{\def\ZJU@value@englishadvisor{#1}} 168 | \newcommand\englishinstitute[1]{\def\ZJU@value@englishinstitute{#1}} 169 | \newcommand\englishdate[1]{\def\ZJU@value@englishdate{#1}} 170 | \newcommand\englishdegree[1]{\def\ZJU@value@englishdegree{#1}} 171 | \newcommand\englishmajor[1]{\def\ZJU@value@englishmajor{#1}} 172 | \newcommand\makeenglishtitle{% 173 | \cleardoublepage 174 | \thispagestyle{empty} 175 | \begin{center} 176 | \vspace*{20pt} 177 | \sf\zihao{-1} \ZJU@value@englishtitle 178 | \vskip \stretch{1} 179 | \bf\zihao{4} \ZJU@value@englishauthor 180 | \vskip \stretch{1} 181 | \normalfont\zihao{4} \ZJU@label@englishsupervisor 182 | \vskip 3pt 183 | \normalfont\zihao{4} \ZJU@value@englishsupervisor 184 | \vskip \stretch{2} 185 | \normalfont\normalsize \ZJU@value@englishinstitute 186 | \vskip 30pt 187 | \normalfont\normalsize \ZJU@value@englishdate 188 | \vskip 20pt 189 | \it\normalsize \ZJU@label@englishstatement 190 | \end{center} 191 | \clearpage 192 | \if@twoside 193 | \thispagestyle{empty} 194 | \cleardoublepage 195 | \fi 196 | } 197 | \fancypagestyle{plain}{% 198 | \fancyhf{}% 199 | \renewcommand{\headrulewidth}{0pt}% 200 | \renewcommand{\footrulewidth}{0pt}% 201 | } 202 | \pagestyle{fancy} 203 | \fancyhf{} 204 | \fancyhead[RE]{\small \ZJU@value@titlemark} 205 | \fancyhead[LO]{\small \leftmark} 206 | \fancyhead[LE,RO]{\small ~\thepage~} 207 | \newenvironment{abstract} 208 | {\Nchapter{\ZJU@label@abstract}} 209 | {} 210 | \newcommand\keywords[1]{% 211 | \vspace{2ex}\noindent{\heiti \ZJU@label@keywords} #1} 212 | \newenvironment{englishabstract} 213 | {\Nchapter{\ZJU@label@englishabstract}} 214 | {} 215 | \newcommand\englishkeywords[1]{% 216 | \vspace{2ex}\noindent{\bf \ZJU@label@englishkeywords} #1} 217 | \renewcommand\tableofcontents{% 218 | \if@twocolumn 219 | \@restonecoltrue\onecolumn 220 | \else 221 | \@restonecolfalse 222 | \fi 223 | \Nchapter{\contentsname}% 224 | \@mkboth{\MakeUppercase\contentsname}{\MakeUppercase\contentsname}% 225 | \@starttoc{toc}% 226 | \if@restonecol\twocolumn\fi 227 | } 228 | \addtocontents{toc}{\let\string\CTEX@spaceChar\relax} 229 | \newcommand\Nchapter[1]{% 230 | \if@mainmatter% 231 | \@mainmatterfalse% 232 | \chapter{#1}% 233 | \@mainmattertrue% 234 | \else 235 | \chapter{#1}% 236 | \fi} 237 | \renewenvironment{thebibliography}[1] 238 | {\Nchapter{\bibname}% 239 | \@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname}% 240 | \list{\@biblabel{\@arabic\c@enumiv}}% 241 | {\settowidth\labelwidth{\@biblabel{#1}}% 242 | \leftmargin\labelwidth 243 | \advance\leftmargin\labelsep 244 | \@openbib@code 245 | \usecounter{enumiv}% 246 | \let\p@enumiv\@empty 247 | \renewcommand\theenumiv{\@arabic\c@enumiv}}% 248 | \sloppy 249 | \clubpenalty4000 250 | \@clubpenalty \clubpenalty 251 | \widowpenalty4000% 252 | \sfcode`\.\@m} 253 | {\def\@noitemerr 254 | {\@latex@warning{Empty `thebibliography' environment}}% 255 | \endlist} 256 | \newenvironment{publications}[1] 257 | {\Nchapter{\ZJU@label@publications}% 258 | \@mkboth{\MakeUppercase\ZJU@label@publications} 259 | {\MakeUppercase\ZJU@label@publications}% 260 | \list{\@biblabel{\@arabic\c@enumiv}}% 261 | {\settowidth\labelwidth{\@biblabel{#1}}% 262 | \leftmargin\labelwidth 263 | \advance\leftmargin\labelsep 264 | \@openbib@code 265 | \usecounter{enumiv}% 266 | \let\p@enumiv\@empty 267 | \renewcommand\theenumiv{\@arabic\c@enumiv}}% 268 | \sloppy 269 | \clubpenalty4000 270 | \@clubpenalty \clubpenalty 271 | \widowpenalty4000% 272 | \sfcode`\.\@m} 273 | {\def\@noitemerr 274 | {\@latex@warning{Empty `publications' environment}}% 275 | \endlist} 276 | \newenvironment{resume} 277 | {\Nchapter{\ZJU@label@resume}} 278 | {} 279 | \newenvironment{resumesection}[1] 280 | {{\noindent\normalfont\bfseries #1} 281 | \list{}{\labelwidth\z@ 282 | \leftmargin 2\ccwd} 283 | \item\relax} 284 | {\endlist} 285 | \newenvironment{resumelist}[1] 286 | {{\noindent\normalfont\bfseries #1} 287 | \list{}{\labelwidth\z@ 288 | \leftmargin 4\ccwd 289 | \itemindent -2\ccwd 290 | \listparindent\itemindent} 291 | \item\relax} 292 | {\endlist} 293 | \renewenvironment{thanks} 294 | {\Nchapter{\ZJU@label@thanks}} 295 | {} 296 | \setcounter{secnumdepth}{4} 297 | \newtheoremstyle{break}% name 298 | {}% Space above, empty = `usual value' 299 | {}% Space below 300 | {\itshape}% Body font 301 | {}% Indent amount (empty = no indent, \parindent = para indent) 302 | {\bfseries}% Thm head font 303 | {.}% Punctuation after thm head 304 | {\newline}% Space after thm head: \newline = linebreak 305 | {}% Thm head spec 306 | \endinput 307 | %% 308 | %% End of file `ZJUthesis.cls'. 309 | -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/abstract.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/bib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/bib.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/chap-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/chap-intro.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/chap-math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/chap-math.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/chap-req.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/chap-req.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/chap-tabfig.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/chap-tabfig.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/pub.tex: -------------------------------------------------------------------------------- 1 | 2 | \begin{publications}{99} 3 | 4 | \item F.Bassi and S.Rebay. 5 | High-Order Accurate Discontinuous Finite Element Solution of the 2D Euler Equation. 6 | Journal of Computational Physics 138,251-285(1997). 7 | 8 | 9 | \end{publications} 10 | -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/resume.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/chapter/thanks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/chapter/thanks.tex -------------------------------------------------------------------------------- /浙江大学学位论文模板/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/readme.pdf -------------------------------------------------------------------------------- /浙江大学学位论文模板/sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/浙江大学学位论文模板/sample.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for ThuThesis 2 | # $Id: Makefile 191 2009-01-05 16:38:56Z littleleo $ 3 | 4 | ifeq ($(MAKE),) 5 | override MAKE=make 6 | endif 7 | 8 | ifeq ($(TEXI2DVI),) 9 | override TEXI2DVI=texi2dvi 10 | endif 11 | 12 | ifneq ($(METHOD),ps2pdf) 13 | ifneq ($(METHOD),dvipdfm) 14 | override METHOD=ps2pdf 15 | endif 16 | endif 17 | 18 | PACKAGE=thuthesis 19 | SOURCES=$(PACKAGE).ins $(PACKAGE).dtx 20 | THESISMAIN=main 21 | THESISCONTENTS=$(THESISMAIN).tex data/*.tex 22 | BIBFILE=ref/refs.bib 23 | SHUJIMAIN=shuji 24 | SHUJICONTENTS=$(SHUJIMAIN).tex 25 | 26 | .PHONY: all clean distclean dist all thesis shuji doc cls cfg dvi ps pdf gbk 27 | 28 | all: cls doc thesis shuji 29 | 30 | 31 | ###### generate cls/cfg 32 | cls: $(SOURCES) 33 | latex $(PACKAGE).ins 34 | 35 | ###### for doc 36 | 37 | doc: doc-pdf 38 | 39 | doc-pdf: $(PACKAGE).pdf 40 | 41 | doc-ps: $(PACKAGE).ps 42 | 43 | doc-dvi: $(PACKAGE).dvi 44 | 45 | $(PACKAGE).dvi: cls 46 | latex $(PACKAGE).dtx 47 | makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx 48 | makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo 49 | latex $(PACKAGE).dtx 50 | latex $(PACKAGE).dtx 51 | 52 | $(PACKAGE).ps: $(PACKAGE).dvi 53 | gbk2uni $(PACKAGE) 54 | latex $(PACKAGE).dtx 55 | dvips -Ppdf -G0 -t letter $(PACKAGE).dvi 56 | 57 | $(PACKAGE).pdf: $(PACKAGE).ps 58 | ps2pdf $(PACKAGE).ps 59 | 60 | ###### for thesis 61 | 62 | thesis: thesis-pdf 63 | 64 | thesis-pdf: $(THESISMAIN).pdf 65 | 66 | thesis-dvi: $(THESISMAIN).dvi 67 | 68 | thesis-ps: $(THESISMAIN).ps 69 | 70 | $(THESISMAIN).dvi: cls $(THESISCONTENTS) $(THESISMAIN).bbl 71 | $(TEXI2DVI) $(THESISMAIN).tex 72 | 73 | ifeq ($(METHOD),dvipdfm) 74 | $(THESISMAIN).pdf: $(THESISMAIN).dvi 75 | gbk2uni $(THESISMAIN) 76 | latex $(THESISMAIN).tex 77 | dvipdfm $(THESISMAIN).dvi 78 | else 79 | $(THESISMAIN).pdf: $(THESISMAIN).ps 80 | ps2pdf $(THESISMAIN).ps 81 | endif 82 | 83 | $(THESISMAIN).ps: $(THESISMAIN).dvi 84 | gbk2uni $(THESISMAIN) 85 | latex $(THESISMAIN).tex 86 | dvips -Ppdf -G0 $(THESISMAIN).dvi 87 | 88 | $(THESISMAIN).bbl: $(BIBFILE) 89 | $(TEXI2DVI) $(THESISMAIN).tex 90 | -bibtex $(THESISMAIN) 91 | 92 | 93 | 94 | ###### for shuji 95 | shuji: shuji-pdf 96 | 97 | shuji-pdf: $(SHUJIMAIN).pdf 98 | 99 | shuji-dvi: $(SHUJIMAIN).dvi 100 | 101 | shuji-ps: $(SHUJIMAIN).ps 102 | 103 | $(SHUJIMAIN).dvi: cls $(SHUJICONTENTS) 104 | $(TEXI2DVI) $(SHUJIMAIN).tex 105 | 106 | ifeq ($(METHOD),dvipdfm) 107 | $(SHUJIMAIN).pdf: $(SHUJIMAIN).dvi 108 | gbk2uni $(SHUJIMAIN) 109 | latex $(SHUJIMAIN).tex 110 | dvipdfmx $(SHUJIMAIN).dvi 111 | elifeq ($(METHOD),ps2pdf) 112 | $(SHUJIMAIN).pdf: $(SHUJIMAIN).ps 113 | ps2pdf $(SHUJIMAIN).ps 114 | else 115 | $(SHUJIMAIN).pdf: cls $(SHUJICONTENTS) 116 | pdflatex $(SHUJIMAIN) 117 | endif 118 | 119 | $(SHUJIMAIN).ps: $(SHUJIMAIN).dvi 120 | gbk2uni $(SHUJIMAIN) 121 | latex $(SHUJIMAIN).tex 122 | dvips -Ppdf -G0 $(SHUJIMAIN).dvi 123 | 124 | clean: 125 | -@rm -f \ 126 | *.aux \ 127 | *.bak \ 128 | *.bbl \ 129 | *.blg \ 130 | *.cls \ 131 | *.cfg \ 132 | *.dvi \ 133 | *.glo \ 134 | *.gls \ 135 | *.idx \ 136 | *.ilg \ 137 | *.ind \ 138 | *.ist \ 139 | *.log \ 140 | *.out \ 141 | *.ps \ 142 | *.thm \ 143 | *.toc \ 144 | *.lof \ 145 | *.lot \ 146 | *.loe \ 147 | data/*.aux \ 148 | dtx-style.sty 149 | 150 | distclean: clean 151 | -@rm -f *.pdf *.tar.gz 152 | 153 | gbk: 154 | @./makegbk.sh 155 | 156 | dist: 157 | @if [ -z "$(VERSION)" ]; then \ 158 | echo "Usage: make dist VERSION="; \ 159 | else \ 160 | if [ ! -d "gbk" ]; then \ 161 | echo -e "\n run ./makegbk.sh first to prepare for GBK version.\n"; \ 162 | else \ 163 | ./makedist.sh $(VERSION) UTF8; \ 164 | (cd gbk ; ../makedist.sh $(VERSION) GBK); \ 165 | fi \ 166 | fi 167 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/Readme -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/ack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/ack.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/appendix01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/appendix01.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/chap01.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/chap02.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/cover.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/denotation.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/data/resume.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/hello.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-2.0 EPSF-2.0 2 | %%Title: hello.fig 3 | %%Creator: fig2dev Version 3.2 Patchlevel 4 4 | %%CreationDate: Mon Nov 14 12:04:18 2005 5 | %%For: xrn@gentoo () 6 | %%BoundingBox: 0 0 182 51 7 | %%Magnification: 1.0000 8 | %%EndComments 9 | /$F2psDict 200 dict def 10 | $F2psDict begin 11 | $F2psDict /mtrx matrix put 12 | /col-1 {0 setgray} bind def 13 | /col0 {0.000 0.000 0.000 srgb} bind def 14 | /col1 {0.000 0.000 1.000 srgb} bind def 15 | /col2 {0.000 1.000 0.000 srgb} bind def 16 | /col3 {0.000 1.000 1.000 srgb} bind def 17 | /col4 {1.000 0.000 0.000 srgb} bind def 18 | /col5 {1.000 0.000 1.000 srgb} bind def 19 | /col6 {1.000 1.000 0.000 srgb} bind def 20 | /col7 {1.000 1.000 1.000 srgb} bind def 21 | /col8 {0.000 0.000 0.560 srgb} bind def 22 | /col9 {0.000 0.000 0.690 srgb} bind def 23 | /col10 {0.000 0.000 0.820 srgb} bind def 24 | /col11 {0.530 0.810 1.000 srgb} bind def 25 | /col12 {0.000 0.560 0.000 srgb} bind def 26 | /col13 {0.000 0.690 0.000 srgb} bind def 27 | /col14 {0.000 0.820 0.000 srgb} bind def 28 | /col15 {0.000 0.560 0.560 srgb} bind def 29 | /col16 {0.000 0.690 0.690 srgb} bind def 30 | /col17 {0.000 0.820 0.820 srgb} bind def 31 | /col18 {0.560 0.000 0.000 srgb} bind def 32 | /col19 {0.690 0.000 0.000 srgb} bind def 33 | /col20 {0.820 0.000 0.000 srgb} bind def 34 | /col21 {0.560 0.000 0.560 srgb} bind def 35 | /col22 {0.690 0.000 0.690 srgb} bind def 36 | /col23 {0.820 0.000 0.820 srgb} bind def 37 | /col24 {0.500 0.190 0.000 srgb} bind def 38 | /col25 {0.630 0.250 0.000 srgb} bind def 39 | /col26 {0.750 0.380 0.000 srgb} bind def 40 | /col27 {1.000 0.500 0.500 srgb} bind def 41 | /col28 {1.000 0.630 0.630 srgb} bind def 42 | /col29 {1.000 0.750 0.750 srgb} bind def 43 | /col30 {1.000 0.880 0.880 srgb} bind def 44 | /col31 {1.000 0.840 0.000 srgb} bind def 45 | 46 | end 47 | save 48 | newpath 0 51 moveto 0 0 lineto 182 0 lineto 182 51 lineto closepath clip newpath 49 | -269.0 153.7 translate 50 | 1 -1 scale 51 | 52 | /cp {closepath} bind def 53 | /ef {eofill} bind def 54 | /gr {grestore} bind def 55 | /gs {gsave} bind def 56 | /sa {save} bind def 57 | /rs {restore} bind def 58 | /l {lineto} bind def 59 | /m {moveto} bind def 60 | /rm {rmoveto} bind def 61 | /n {newpath} bind def 62 | /s {stroke} bind def 63 | /sh {show} bind def 64 | /slc {setlinecap} bind def 65 | /slj {setlinejoin} bind def 66 | /slw {setlinewidth} bind def 67 | /srgb {setrgbcolor} bind def 68 | /rot {rotate} bind def 69 | /sc {scale} bind def 70 | /sd {setdash} bind def 71 | /ff {findfont} bind def 72 | /sf {setfont} bind def 73 | /scf {scalefont} bind def 74 | /sw {stringwidth} bind def 75 | /tr {translate} bind def 76 | /tnt {dup dup currentrgbcolor 77 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add 78 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add 79 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} 80 | bind def 81 | /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 82 | 4 -2 roll mul srgb} bind def 83 | /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def 84 | /$F2psEnd {$F2psEnteredState restore end} def 85 | 86 | $F2psBegin 87 | 10 setmiterlimit 88 | 0 slj 0 slc 89 | 0.06000 0.06000 sc 90 | % 91 | % Fig objects follow 92 | % 93 | % 94 | % here starts figure with depth 50 95 | % Polyline 96 | 7.500 slw 97 | n 4570 1725 m 4495 1725 4495 2475 75 arcto 4 {pop} repeat 98 | 4495 2550 7425 2550 75 arcto 4 {pop} repeat 99 | 7500 2550 7500 1800 75 arcto 4 {pop} repeat 100 | 7500 1725 4570 1725 75 arcto 4 {pop} repeat 101 | cp gs col0 s gr 102 | /NewCenturySchlbk-BoldItalic ff 300.00 scf sf 103 | 4650 2025 m 104 | gs 1 -1 sc (Hello, Xfig!) col9 sh gr 105 | /Times-Italic ff 150.00 scf sf 106 | 6825 2475 m 107 | gs 1 -1 sc (LittleLeo) col18 sh gr 108 | % here ends figure; 109 | $F2psEnd 110 | rs 111 | showpage 112 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/hello.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 4 0 1 0 7 50 -1 -1 0.000 0 0 5 0 0 5 11 | 7500 2550 7500 1725 4495 1725 4495 2550 7500 2550 12 | 4 0 9 50 -1 27 20 0.0000 4 270 1605 4650 2025 Hello, Xfig!\001 13 | 4 0 18 50 -1 1 10 0.0000 4 105 585 6825 2475 LittleLeo\001 14 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/hello.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-fig-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-fig-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-fig-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-fig-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-lib-logo.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%CreationDate: Fri Nov 30 06:00:38 2007 3 | %%LanguageLevel: 3 4 | %%BoundingBox: 98 3 317 59 5 | %%EndComments 6 | /mt { moveto } def 7 | /ct { curveto } def 8 | /lt { lineto } def 9 | /np { newpath } def 10 | /cp { closepath } def 11 | /sc { setrgbcolor } def 12 | /er { fill } def 13 | /lw { setlinewidth } def 14 | np 15 | 0.0 63.0 mt 16 | 340.0 63.0 lt 17 | 340.0 0.0 lt 18 | 0.0 0.0 lt 19 | 0.0 63.0 lt 20 | cp 21 | 0.996 0.996 0.996 sc 22 | er 23 | np 24 | 211.1 59.0 mt 25 | 211.9 58.4 212.7 57.9 213.4 57.1 ct 26 | 211.2 54.5 208.9 52.0 206.0 50.4 ct 27 | 206.8 50.3 208.3 50.2 209.1 50.1 ct 28 | 210.7 48.2 207.5 46.9 207.1 45.4 ct 29 | 209.5 46.0 214.0 48.3 215.5 45.2 ct 30 | 213.7 42.0 210.0 40.7 206.9 39.1 ct 31 | 205.5 38.3 204.2 37.6 202.9 36.8 ct 32 | 204.2 38.3 205.7 39.7 206.6 41.5 ct 33 | 202.8 40.5 198.5 39.1 197.1 35.0 ct 34 | 196.2 36.5 195.3 38.1 194.3 39.6 ct 35 | 196.3 37.8 198.5 38.7 200.6 39.9 ct 36 | 200.0 40.5 199.4 41.1 198.8 41.7 ct 37 | 198.7 42.3 198.5 43.6 198.4 44.2 ct 38 | 197.6 45.3 196.8 46.5 196.1 47.6 ct 39 | 197.5 46.5 198.6 45.1 199.7 43.7 ct 40 | 200.5 42.9 201.2 42.2 201.9 41.5 ct 41 | 202.6 41.8 203.9 42.4 204.5 42.7 ct 42 | 205.7 45.1 206.8 47.5 207.9 50.0 ct 43 | 206.3 49.6 204.8 49.0 203.2 48.6 ct 44 | 206.6 51.3 209.9 54.6 211.1 59.0 ct 45 | cp 46 | 0.082 0.090 0.094 sc 47 | er 48 | np 49 | 307.4 57.3 mt 50 | 308.2 57.3 309.6 57.3 310.3 57.3 ct 51 | 310.1 56.1 309.6 54.9 309.1 53.7 ct 52 | 308.5 54.9 308.0 56.1 307.4 57.3 ct 53 | cp 54 | 0.082 0.090 0.094 sc 55 | er 56 | np 57 | 273.2 57.0 mt 58 | 273.2 56.1 273.2 55.2 273.3 54.4 ct 59 | 274.8 54.6 276.3 54.7 277.8 54.8 ct 60 | 278.2 51.8 275.0 50.5 273.6 48.4 ct 61 | 273.1 46.7 272.6 45.0 272.2 43.3 ct 62 | 273.5 43.8 274.8 44.4 276.2 44.9 ct 63 | 275.3 42.7 273.4 41.3 271.9 39.5 ct 64 | 273.1 40.0 275.7 40.8 276.9 41.3 ct 65 | 275.3 39.2 272.0 38.2 272.2 35.0 ct 66 | 276.3 36.4 280.0 38.7 284.0 40.5 ct 67 | 282.7 36.6 278.0 35.2 275.2 32.6 ct 68 | 275.4 31.7 275.6 30.8 275.8 29.9 ct 69 | 274.9 29.7 273.3 29.3 272.5 29.1 ct 70 | 274.1 28.3 275.7 27.4 277.2 26.4 ct 71 | 277.9 27.7 278.6 28.9 279.2 30.2 ct 72 | 279.3 31.0 279.5 32.7 279.6 33.6 ct 73 | 282.0 31.0 279.9 27.9 278.3 25.5 ct 74 | 277.2 24.0 275.8 22.4 273.8 22.2 ct 75 | 272.2 22.1 271.9 23.9 271.0 24.8 ct 76 | 272.8 24.3 274.6 23.9 276.4 24.6 ct 77 | 275.7 25.1 274.4 26.0 273.7 26.5 ct 78 | 272.8 26.0 271.9 25.6 270.9 25.1 ct 79 | 270.0 25.0 268.2 24.7 267.3 24.5 ct 80 | 268.2 26.3 269.6 27.6 271.1 28.9 ct 81 | 272.2 30.3 273.3 31.7 274.4 33.0 ct 82 | 274.5 33.6 274.8 34.7 275.0 35.3 ct 83 | 273.4 34.1 271.9 32.9 270.4 31.6 ct 84 | 269.2 30.7 267.8 30.3 266.4 30.0 ct 85 | 266.4 30.4 266.3 31.0 266.2 31.3 ct 86 | 267.4 31.6 268.5 31.9 269.7 32.2 ct 87 | 270.2 32.6 271.3 33.5 271.8 33.9 ct 88 | 271.4 35.5 270.6 36.9 269.5 38.0 ct 89 | 269.8 38.3 270.3 38.9 270.6 39.2 ct 90 | 270.9 40.7 271.3 42.2 271.8 43.6 ct 91 | 269.7 43.9 lt 92 | 268.1 40.8 265.6 38.3 263.5 35.6 ct 93 | 262.4 35.6 259.8 34.7 260.3 36.6 ct 94 | 263.3 39.1 267.7 40.3 269.2 44.2 ct 95 | 269.8 44.2 270.9 44.3 271.4 44.4 ct 96 | 271.2 48.7 271.8 52.9 273.2 57.0 ct 97 | cp 98 | 0.082 0.090 0.094 sc 99 | er 100 | np 101 | 291.5 34.4 mt 102 | 294.4 42.0 298.5 49.0 301.1 56.7 ct 103 | 301.5 56.2 302.3 55.3 302.7 54.8 ct 104 | 302.4 54.6 301.8 54.4 301.5 54.2 ct 105 | 302.0 52.9 302.5 51.7 302.9 50.4 ct 106 | 302.5 50.7 301.5 51.3 301.0 51.6 ct 107 | 299.6 49.8 298.1 48.0 296.7 46.1 ct 108 | 298.2 46.4 299.6 46.8 301.1 47.2 ct 109 | 301.2 45.6 301.3 44.1 301.4 42.5 ct 110 | 302.9 43.5 305.1 43.8 305.9 45.6 ct 111 | 306.6 45.4 lt 112 | 306.5 46.6 lt 113 | 307.1 46.3 lt 114 | 308.4 48.7 310.4 50.5 312.3 52.3 ct 115 | 313.2 52.6 315.1 53.2 316.0 53.5 ct 116 | 315.3 51.4 314.4 49.4 313.4 47.5 ct 117 | 313.4 48.7 313.5 51.2 313.5 52.4 ct 118 | 311.8 50.6 310.1 48.8 308.2 47.1 ct 119 | 308.2 45.8 308.2 43.1 308.2 41.8 ct 120 | 309.8 42.8 311.0 44.1 311.9 45.8 ct 121 | 312.5 45.3 313.0 44.8 313.6 44.3 ct 122 | 312.0 42.1 311.4 39.4 311.2 36.7 ct 123 | 311.8 36.3 313.0 35.6 313.6 35.3 ct 124 | 313.4 34.3 313.2 33.3 313.1 32.4 ct 125 | 311.9 32.6 309.7 32.9 308.6 33.1 ct 126 | 309.6 32.8 311.6 32.3 312.6 32.0 ct 127 | 312.6 31.3 lt 128 | 312.1 31.1 311.1 30.8 310.7 30.7 ct 129 | 311.3 30.6 312.6 30.6 313.2 30.5 ct 130 | 314.6 29.2 lt 131 | 312.7 28.6 310.8 28.0 308.9 27.5 ct 132 | 309.2 28.8 309.5 30.2 309.8 31.6 ct 133 | 309.2 31.4 308.2 31.1 307.7 30.9 ct 134 | 307.2 28.0 308.1 25.2 308.4 22.3 ct 135 | 307.9 22.4 306.9 22.5 306.4 22.6 ct 136 | 306.5 29.6 305.9 36.7 306.8 43.7 ct 137 | 304.7 43.5 lt 138 | 304.6 40.5 304.8 37.6 304.6 34.7 ct 139 | 302.8 34.2 301.0 33.7 299.1 33.3 ct 140 | 300.0 34.8 301.2 36.1 302.6 37.2 ct 141 | 301.8 38.6 lt 142 | 299.5 37.0 297.6 34.8 297.8 31.8 ct 143 | 297.0 30.1 299.3 28.9 298.7 27.3 ct 144 | 298.1 27.0 296.9 26.4 296.3 26.2 ct 145 | 297.2 30.7 294.9 36.1 297.9 40.1 ct 146 | 298.2 39.6 298.7 38.5 299.0 38.0 ct 147 | 300.2 39.1 301.2 40.3 302.0 41.7 ct 148 | 301.2 41.6 299.6 41.3 298.7 41.1 ct 149 | 299.7 42.0 300.5 43.0 300.9 44.3 ct 150 | 299.9 44.2 297.8 44.2 296.8 44.2 ct 151 | 296.5 43.7 296.0 42.7 295.7 42.2 ct 152 | 294.4 39.5 293.7 36.5 291.5 34.4 ct 153 | cp 154 | 0.082 0.090 0.094 sc 155 | er 156 | np 157 | 149.0 51.0 mt 158 | 150.3 52.5 151.5 54.2 152.6 55.9 ct 159 | 152.6 55.3 152.6 53.9 152.6 53.3 ct 160 | 151.2 53.4 lt 161 | 151.8 51.2 lt 162 | 153.4 52.2 155.5 55.4 156.6 52.1 ct 163 | 151.5 50.2 146.3 47.9 143.3 43.0 ct 164 | 146.2 42.9 148.1 45.2 150.3 46.7 ct 165 | 151.1 45.6 151.9 44.5 152.7 43.3 ct 166 | 149.6 40.9 147.0 37.9 144.6 34.8 ct 167 | 147.0 35.9 149.1 37.3 151.4 38.6 ct 168 | 151.7 38.3 152.2 37.6 152.5 37.3 ct 169 | 150.7 36.0 148.9 34.6 147.4 33.0 ct 170 | 148.6 32.5 149.8 31.9 151.0 31.3 ct 171 | 150.8 31.0 150.4 30.3 150.2 30.0 ct 172 | 148.2 28.9 146.2 27.8 144.3 26.5 ct 173 | 144.1 23.9 144.3 21.3 144.1 18.7 ct 174 | 142.6 20.4 142.4 22.7 142.3 24.9 ct 175 | 141.4 25.3 140.5 25.6 139.6 26.0 ct 176 | 142.9 26.4 142.4 29.4 142.3 31.8 ct 177 | 141.7 31.4 140.5 30.6 139.9 30.1 ct 178 | 138.0 28.7 136.1 26.3 133.5 27.6 ct 179 | 136.3 29.7 140.7 30.6 141.9 34.2 ct 180 | 142.1 35.2 142.6 37.4 142.9 38.4 ct 181 | 139.6 36.4 136.6 33.5 132.6 33.2 ct 182 | 134.4 34.5 136.4 35.6 138.1 37.1 ct 183 | 139.5 37.6 141.0 38.2 142.5 38.7 ct 184 | 142.5 40.5 142.5 42.3 142.4 44.1 ct 185 | 143.9 45.3 145.3 46.5 146.3 48.1 ct 186 | 144.9 47.6 143.5 47.0 142.1 46.4 ct 187 | 140.7 43.7 137.2 43.9 134.7 42.6 ct 188 | 134.6 43.0 134.4 43.7 134.3 44.0 ct 189 | 136.3 44.7 138.4 45.5 140.4 46.2 ct 190 | 140.6 47.9 140.7 49.6 140.8 51.2 ct 191 | 141.1 49.8 141.4 48.4 141.7 47.0 ct 192 | 143.5 47.6 145.2 48.2 147.0 48.9 ct 193 | 147.7 49.6 148.3 50.3 149.0 51.0 ct 194 | cp 195 | 0.082 0.090 0.094 sc 196 | er 197 | np 198 | 118.4 51.1 mt 199 | 118.6 52.2 118.9 54.6 119.1 55.7 ct 200 | 119.4 53.5 119.3 51.3 119.3 49.1 ct 201 | 121.1 50.1 121.9 51.8 121.6 53.9 ct 202 | 122.4 52.8 123.8 51.9 123.8 50.4 ct 203 | 122.3 48.6 120.2 47.5 118.2 46.3 ct 204 | 118.3 45.1 118.4 44.0 118.5 42.8 ct 205 | 118.1 42.0 117.3 40.4 116.9 39.5 ct 206 | 116.4 40.1 115.9 40.6 115.4 41.1 ct 207 | 115.4 39.4 115.5 37.7 115.3 36.0 ct 208 | 116.8 38.2 118.7 40.2 121.2 41.1 ct 209 | 120.4 39.1 118.9 37.6 117.5 36.0 ct 210 | 118.1 35.9 119.3 35.8 119.9 35.7 ct 211 | 118.5 30.6 119.5 25.3 119.7 20.0 ct 212 | 117.4 19.9 116.2 21.7 114.9 23.3 ct 213 | 115.7 23.3 117.1 23.3 117.9 23.2 ct 214 | 117.4 24.6 116.8 26.0 116.3 27.4 ct 215 | 115.9 27.5 115.1 27.7 114.7 27.9 ct 216 | 114.3 25.0 113.8 22.2 113.3 19.4 ct 217 | 112.8 19.5 111.9 19.6 111.4 19.6 ct 218 | 112.0 23.1 112.9 26.6 113.9 30.0 ct 219 | 114.3 31.0 115.1 32.9 115.5 33.9 ct 220 | 114.6 33.9 112.8 33.8 111.8 33.7 ct 221 | 112.5 35.0 113.2 36.5 114.7 37.0 ct 222 | 114.5 38.3 114.2 39.6 114.0 40.9 ct 223 | 114.3 41.5 114.9 42.5 115.2 43.0 ct 224 | 115.3 45.5 116.6 47.5 117.6 49.6 ct 225 | 117.6 50.3 117.6 51.7 117.5 52.4 ct 226 | 118.4 51.1 lt 227 | cp 228 | 0.082 0.090 0.094 sc 229 | er 230 | np 231 | 48.0 51.0 mt 232 | 53.5 53.8 59.9 54.5 65.9 53.0 ct 233 | 66.9 52.7 67.9 52.3 68.9 51.9 ct 234 | 70.3 51.3 71.6 50.6 72.9 49.9 ct 235 | 76.7 47.0 79.9 43.3 82.0 39.0 ct 236 | 82.3 37.9 82.7 36.9 83.1 35.9 ct 237 | 84.0 31.7 83.9 27.3 83.1 23.1 ct 238 | 80.6 15.0 74.0 8.4 65.9 5.9 ct 239 | 61.7 5.1 57.3 5.1 53.1 5.9 ct 240 | 51.4 6.6 49.7 7.3 48.1 8.0 ct 241 | 44.5 10.0 41.6 13.0 39.1 16.1 ct 242 | 35.3 22.3 33.9 30.1 36.4 37.1 ct 243 | 38.3 43.0 42.8 47.8 48.0 51.0 ct 244 | cp 245 | 0.082 0.090 0.094 sc 246 | er 247 | np 248 | 51.1 51.1 mt 249 | 52.1 51.5 53.1 51.8 54.1 52.2 ct 250 | 60.2 53.1 66.7 52.5 72.0 48.9 ct 251 | 80.4 43.7 84.6 32.8 81.8 23.2 ct 252 | 81.3 21.8 80.7 20.3 80.2 18.8 ct 253 | 78.6 16.5 76.8 14.3 75.1 12.2 ct 254 | 73.8 13.5 72.4 14.7 72.0 16.5 ct 255 | 71.5 16.1 71.0 15.7 70.5 15.3 ct 256 | 70.5 15.0 70.5 14.4 70.5 14.1 ct 257 | 71.7 13.1 72.7 12.0 73.8 10.9 ct 258 | 67.8 7.2 60.5 5.1 53.5 7.1 ct 259 | 50.6 8.0 48.0 9.6 45.2 10.9 ct 260 | 46.3 12.0 47.3 13.0 48.3 14.1 ct 261 | 48.2 14.5 lt 262 | 48.6 14.6 49.3 14.8 49.6 14.9 ct 263 | 48.6 15.6 47.6 16.3 46.6 16.9 ct 264 | 46.6 16.3 46.6 15.1 46.6 14.5 ct 265 | 45.7 13.8 44.7 13.0 43.8 12.3 ct 266 | 43.4 12.8 42.6 14.0 42.3 14.5 ct 267 | 41.7 14.5 lt 268 | 40.8 16.0 39.8 17.5 38.8 19.0 ct 269 | 34.7 27.1 35.9 37.2 41.6 44.3 ct 270 | 43.0 45.6 44.4 46.9 45.8 48.2 ct 271 | 47.6 49.2 49.3 50.1 51.1 51.1 ct 272 | cp 273 | 0.996 0.996 0.996 sc 274 | er 275 | np 276 | 236.1 45.3 mt 277 | 241.3 48.2 246.6 52.6 252.9 51.5 ct 278 | 251.9 47.1 250.8 42.6 251.4 38.0 ct 279 | 251.4 33.7 252.9 28.6 250.2 24.8 ct 280 | 248.5 22.4 245.9 24.2 244.1 25.4 ct 281 | 245.8 25.3 247.5 25.3 249.2 25.3 ct 282 | 250.0 32.3 248.8 39.4 250.0 46.4 ct 283 | 250.1 47.9 251.2 49.7 249.8 50.9 ct 284 | 244.7 50.9 241.0 46.4 236.1 45.3 ct 285 | cp 286 | 0.082 0.090 0.094 sc 287 | er 288 | np 289 | 54.3 49.9 mt 290 | 57.4 50.6 60.6 50.3 63.8 50.5 ct 291 | 63.1 49.5 lt 292 | 65.6 49.6 67.9 48.7 70.2 48.1 ct 293 | 69.6 47.5 69.0 46.9 68.3 46.3 ct 294 | 68.1 46.9 67.6 48.0 67.3 48.6 ct 295 | 64.5 48.7 61.6 48.8 58.7 48.6 ct 296 | 60.6 47.6 62.6 46.7 64.0 45.0 ct 297 | 65.1 44.3 66.1 43.7 67.1 43.1 ct 298 | 68.8 35.3 68.5 27.3 70.6 19.6 ct 299 | 70.9 19.3 71.4 18.6 71.7 18.2 ct 300 | 68.2 19.2 64.9 17.9 62.0 16.0 ct 301 | 61.0 15.1 60.1 14.3 59.1 13.4 ct 302 | 58.5 14.3 57.9 15.2 57.3 16.0 ct 303 | 54.4 17.8 51.1 19.3 47.6 18.2 ct 304 | 48.2 19.8 48.7 21.4 49.2 23.1 ct 305 | 49.5 24.7 49.8 26.2 50.3 27.8 ct 306 | 50.5 33.3 50.5 39.0 52.8 44.2 ct 307 | 53.3 44.3 54.4 44.6 55.0 44.7 ct 308 | 56.0 46.4 58.8 47.5 57.6 49.9 ct 309 | 54.3 50.0 52.1 46.4 48.7 47.5 ct 310 | 50.5 48.5 52.3 49.2 54.3 49.9 ct 311 | cp 312 | 0.082 0.090 0.094 sc 313 | er 314 | np 315 | 100.6 50.7 mt 316 | 101.6 49.9 104.2 49.7 103.8 48.1 ct 317 | 103.8 46.2 101.6 47.4 100.6 47.4 ct 318 | 100.6 48.5 100.6 49.6 100.6 50.7 ct 319 | cp 320 | 0.082 0.090 0.094 sc 321 | er 322 | np 323 | 274.7 46.2 mt 324 | 276.0 48.7 278.3 51.0 281.4 50.8 ct 325 | 279.5 48.7 277.0 47.6 274.7 46.2 ct 326 | cp 327 | 0.082 0.090 0.094 sc 328 | er 329 | np 330 | 175.4 42.3 mt 331 | 175.5 44.7 176.1 47.1 177.0 49.4 ct 332 | 178.4 46.8 177.1 43.8 175.6 41.5 ct 333 | 175.6 40.8 175.6 39.2 175.7 38.5 ct 334 | 177.1 39.6 178.2 41.0 179.1 42.6 ct 335 | 179.7 42.1 180.2 41.5 180.8 41.0 ct 336 | 178.9 38.9 176.9 36.8 174.5 35.2 ct 337 | 173.2 29.5 168.9 24.0 163.1 22.4 ct 338 | 167.5 25.0 170.3 29.3 172.4 33.9 ct 339 | 170.4 33.7 168.4 33.3 166.4 33.5 ct 340 | 166.6 35.4 169.7 35.0 171.0 35.9 ct 341 | 171.7 36.0 173.0 36.4 173.6 36.6 ct 342 | 174.3 38.5 174.6 40.4 174.8 42.3 ct 343 | 175.4 42.3 lt 344 | cp 345 | 0.082 0.090 0.094 sc 346 | er 347 | np 348 | 46.3 45.7 mt 349 | 47.0 48.4 47.2 45.5 47.6 44.9 ct 350 | 47.3 44.6 46.6 44.1 46.2 43.8 ct 351 | 46.0 43.5 45.5 42.9 45.3 42.6 ct 352 | 44.9 42.6 44.1 42.8 43.8 42.9 ct 353 | 42.2 39.2 39.7 35.7 40.1 31.4 ct 354 | 39.5 31.5 38.4 31.6 37.8 31.6 ct 355 | 38.4 32.2 39.0 32.8 39.6 33.4 ct 356 | 39.4 35.1 39.6 36.7 40.8 38.0 ct 357 | 40.6 38.2 40.4 38.8 40.3 39.1 ct 358 | 42.7 39.6 42.7 42.5 43.8 44.3 ct 359 | 44.6 44.8 45.4 45.2 46.3 45.7 ct 360 | cp 361 | 0.082 0.090 0.094 sc 362 | er 363 | np 364 | 70.7 45.4 mt 365 | 70.3 46.8 70.7 47.3 72.2 47.0 ct 366 | 72.7 45.7 72.2 45.1 70.7 45.4 ct 367 | cp 368 | 0.373 0.376 0.380 sc 369 | er 370 | np 371 | 240.3 41.3 mt 372 | 239.8 44.5 242.3 46.2 245.0 47.1 ct 373 | 243.9 46.0 242.8 44.9 241.6 43.9 ct 374 | 241.6 41.6 241.5 39.3 241.0 37.1 ct 375 | 243.2 37.8 245.4 38.6 247.7 39.0 ct 376 | 246.0 35.8 244.7 32.4 243.4 28.9 ct 377 | 241.8 29.8 239.5 28.9 238.4 30.6 ct 378 | 237.5 30.8 236.5 31.0 235.6 31.3 ct 379 | 236.4 31.3 238.0 31.4 238.7 31.4 ct 380 | 238.7 32.6 238.6 34.9 238.6 36.1 ct 381 | 236.9 35.5 235.3 34.9 233.6 34.3 ct 382 | 233.6 33.2 lt 383 | 233.1 33.4 232.2 33.7 231.8 33.9 ct 384 | 234.9 35.3 238.5 36.1 240.2 39.4 ct 385 | 239.5 39.4 238.0 39.4 237.2 39.3 ct 386 | 237.2 40.5 237.3 41.6 237.3 42.7 ct 387 | 238.3 42.2 239.3 41.7 240.3 41.3 ct 388 | cp 389 | 0.082 0.090 0.094 sc 390 | er 391 | np 392 | 57.5 46.4 mt 393 | 58.9 45.1 60.5 45.5 62.0 46.4 ct 394 | 62.4 45.4 63.1 43.4 63.4 42.4 ct 395 | 60.3 42.4 57.3 42.4 54.2 42.3 ct 396 | 55.3 43.7 56.4 45.0 57.5 46.4 ct 397 | cp 398 | 0.996 0.996 0.996 sc 399 | er 400 | np 401 | 207.9 45.2 mt 402 | 209.7 45.5 211.4 45.9 213.2 46.2 ct 403 | 212.7 44.5 211.4 43.3 210.1 42.3 ct 404 | 208.4 42.6 206.6 42.4 205.0 41.9 ct 405 | 205.5 43.3 206.7 44.3 207.9 45.2 ct 406 | cp 407 | 0.996 0.996 0.996 sc 408 | er 409 | np 410 | 73.6 43.1 mt 411 | 73.7 43.8 73.8 44.4 73.9 45.0 ct 412 | 74.3 43.6 75.1 42.6 76.4 41.9 ct 413 | 76.1 41.9 lt 414 | 78.8 39.8 79.4 36.4 79.5 33.2 ct 415 | 79.7 33.2 80.3 33.1 80.5 33.1 ct 416 | 80.5 31.7 80.4 30.3 80.4 29.0 ct 417 | 80.2 29.0 79.8 29.2 79.5 29.2 ct 418 | 79.6 29.7 79.7 30.6 79.7 31.1 ct 419 | 79.0 32.8 78.5 34.6 78.5 36.4 ct 420 | 76.6 38.4 76.0 41.5 73.6 43.1 ct 421 | cp 422 | 0.082 0.090 0.094 sc 423 | er 424 | np 425 | 107.7 41.4 mt 426 | 109.8 42.4 111.7 43.5 113.8 44.6 ct 427 | 112.2 41.3 108.9 39.7 105.8 38.0 ct 428 | 105.9 31.2 103.2 24.9 102.7 18.1 ct 429 | 101.3 18.2 100.2 19.0 99.0 19.7 ct 430 | 99.5 25.7 99.4 31.7 99.6 37.7 ct 431 | 100.5 37.3 lt 432 | 100.6 38.6 100.8 39.9 101.0 41.1 ct 433 | 101.1 40.1 101.3 38.0 101.4 37.0 ct 434 | 104.2 37.3 105.5 40.0 107.7 41.4 ct 435 | cp 436 | 0.082 0.090 0.094 sc 437 | er 438 | np 439 | 227.8 41.1 mt 440 | 229.2 34.8 229.9 28.3 230.4 21.9 ct 441 | 229.4 23.4 228.3 25.0 228.4 26.9 ct 442 | 228.4 31.7 228.5 36.4 227.8 41.1 ct 443 | cp 444 | 0.082 0.090 0.094 sc 445 | er 446 | np 447 | 307.6 40.6 mt 448 | 310.4 43.4 310.3 36.2 307.4 38.2 ct 449 | 307.4 38.8 307.5 40.0 307.6 40.6 ct 450 | cp 451 | 0.996 0.996 0.996 sc 452 | er 453 | np 454 | 51.3 31.1 mt 455 | 51.5 34.3 51.6 37.5 52.4 40.7 ct 456 | 57.2 40.6 61.9 40.7 66.6 40.7 ct 457 | 67.4 37.7 67.6 34.6 67.8 31.5 ct 458 | 66.9 31.2 65.1 30.6 64.2 30.3 ct 459 | 64.3 31.0 64.3 32.6 64.4 33.4 ct 460 | 62.4 36.3 58.3 36.0 55.5 34.3 ct 461 | 55.5 33.7 55.4 32.3 55.4 31.6 ct 462 | 54.3 31.5 52.3 31.2 51.3 31.1 ct 463 | cp 464 | 0.996 0.996 0.996 sc 465 | er 466 | np 467 | 143.8 37.5 mt 468 | 143.0 38.9 145.4 40.2 146.6 39.8 ct 469 | 146.9 38.6 145.0 36.9 143.8 37.5 ct 470 | cp 471 | 0.996 0.996 0.996 sc 472 | er 473 | np 474 | 206.4 33.1 mt 475 | 208.7 34.9 209.3 39.4 213.1 37.6 ct 476 | 210.7 34.2 207.3 31.9 203.6 30.2 ct 477 | 203.4 29.9 202.8 29.1 202.6 28.8 ct 478 | 202.7 29.4 202.8 30.7 202.9 31.4 ct 479 | 201.1 31.3 199.4 31.3 197.6 31.4 ct 480 | 200.0 32.7 202.7 33.6 205.4 34.7 ct 481 | 205.7 35.2 206.2 36.2 206.5 36.6 ct 482 | 206.5 35.8 206.4 34.0 206.4 33.1 ct 483 | cp 484 | 0.082 0.090 0.094 sc 485 | er 486 | np 487 | 240.1 30.4 mt 488 | 239.5 33.1 240.5 36.5 243.8 36.0 ct 489 | 244.3 34.3 243.0 32.7 242.7 31.1 ct 490 | 242.0 30.9 240.7 30.5 240.1 30.4 ct 491 | cp 492 | 0.996 0.996 0.996 sc 493 | er 494 | np 495 | 307.9 35.8 mt 496 | 309.5 36.5 310.0 36.0 309.4 34.3 ct 497 | 307.8 33.6 307.3 34.1 307.9 35.8 ct 498 | cp 499 | 0.996 0.996 0.996 sc 500 | er 501 | np 502 | 55.7 32.6 mt 503 | 57.0 35.8 62.6 36.6 63.1 32.4 ct 504 | 60.7 32.5 58.2 32.7 55.7 32.6 ct 505 | cp 506 | 0.996 0.996 0.996 sc 507 | er 508 | np 509 | 103.4 32.1 mt 510 | 102.6 33.5 102.8 34.3 104.1 34.6 ct 511 | 104.1 34.0 104.0 32.7 104.0 32.1 ct 512 | 103.4 32.1 lt 513 | cp 514 | 0.996 0.996 0.996 sc 515 | er 516 | np 517 | 311.4 34.8 mt 518 | 312.0 34.2 312.0 34.2 311.4 34.8 ct 519 | cp 520 | 0.667 0.671 0.671 sc 521 | er 522 | np 523 | 56.1 32.3 mt 524 | 58.5 31.7 60.9 31.1 63.3 30.5 ct 525 | 61.9 29.6 60.4 28.9 58.8 28.3 ct 526 | 57.6 29.4 56.5 30.7 56.1 32.3 ct 527 | cp 528 | 0.996 0.996 0.996 sc 529 | er 530 | np 531 | 103.4 32.1 mt 532 | 104.0 32.1 lt 533 | 103.9 32.1 103.6 32.1 103.4 32.1 ct 534 | cp 535 | 0.667 0.671 0.671 sc 536 | er 537 | np 538 | 144.2 28.2 mt 539 | 144.2 29.9 145.0 31.4 146.0 32.8 ct 540 | 146.7 32.0 147.3 31.3 148.0 30.6 ct 541 | 146.8 29.8 145.5 29.0 144.2 28.2 ct 542 | cp 543 | 0.996 0.996 0.996 sc 544 | er 545 | np 546 | 175.0 31.3 mt 547 | 177.1 28.4 180.0 26.1 183.8 26.1 ct 548 | 182.3 25.3 180.9 23.9 179.0 24.0 ct 549 | 177.6 25.1 176.8 26.6 175.9 28.1 ct 550 | 175.6 29.1 175.2 30.2 175.0 31.3 ct 551 | cp 552 | 0.082 0.090 0.094 sc 553 | er 554 | np 555 | 235.1 26.6 mt 556 | 233.2 25.9 232.5 30.2 234.0 30.8 ct 557 | 235.2 30.0 236.0 28.0 235.1 26.6 ct 558 | cp 559 | 0.082 0.090 0.094 sc 560 | er 561 | np 562 | 299.8 30.4 mt 563 | 300.4 30.4 301.5 30.4 302.1 30.5 ct 564 | 303.3 29.7 302.5 27.6 301.1 28.1 ct 565 | 300.1 28.6 299.7 29.4 299.8 30.4 ct 566 | cp 567 | 0.082 0.090 0.094 sc 568 | er 569 | np 570 | 37.5 29.2 mt 571 | 38.4 30.3 39.2 30.3 39.7 29.0 ct 572 | 38.9 27.9 38.1 28.0 37.5 29.2 ct 573 | cp 574 | 0.082 0.090 0.094 sc 575 | er 576 | np 577 | 51.3 31.1 mt 578 | 53.9 30.9 56.1 29.8 58.2 28.4 ct 579 | 61.6 27.9 64.8 29.4 67.6 31.1 ct 580 | 68.0 29.6 68.3 28.2 68.6 26.7 ct 581 | 62.8 26.2 56.9 26.4 51.1 26.8 ct 582 | 51.2 28.3 51.2 29.7 51.3 31.1 ct 583 | cp 584 | 0.996 0.996 0.996 sc 585 | er 586 | np 587 | 205.7 28.0 mt 588 | 206.9 28.1 208.2 28.3 209.5 28.4 ct 589 | 209.6 27.9 209.9 27.0 210.1 26.5 ct 590 | 208.8 25.9 207.5 25.3 206.2 24.7 ct 591 | 206.6 22.4 206.5 20.1 205.4 18.0 ct 592 | 203.5 18.6 201.7 19.3 200.0 20.3 ct 593 | 199.5 20.6 198.4 21.1 197.9 21.3 ct 594 | 200.0 21.0 202.2 20.7 204.4 20.5 ct 595 | 204.4 22.2 204.4 23.8 204.4 25.4 ct 596 | 202.8 24.7 201.3 23.7 199.7 23.2 ct 597 | 198.3 23.2 197.3 24.3 196.2 24.9 ct 598 | 197.8 25.4 199.4 25.8 201.0 26.4 ct 599 | 203.0 26.6 204.9 26.6 206.9 26.5 ct 600 | 206.6 26.8 206.0 27.6 205.7 28.0 ct 601 | cp 602 | 0.082 0.090 0.094 sc 603 | er 604 | np 605 | 237.0 24.4 mt 606 | 239.5 25.7 241.8 27.2 244.5 28.1 ct 607 | 242.6 25.9 239.6 25.5 237.0 24.4 ct 608 | cp 609 | 0.082 0.090 0.094 sc 610 | er 611 | np 612 | 50.6 26.6 mt 613 | 51.6 26.5 53.5 26.3 54.5 26.2 ct 614 | 54.7 25.5 54.9 24.8 55.1 24.1 ct 615 | 55.3 24.5 55.9 25.3 56.2 25.7 ct 616 | 56.5 25.8 57.1 25.9 57.4 26.0 ct 617 | 57.5 25.2 57.7 23.7 57.8 22.9 ct 618 | 55.3 22.8 52.8 22.8 50.2 22.7 ct 619 | 50.3 23.7 50.5 25.6 50.6 26.6 ct 620 | cp 621 | 0.996 0.996 0.996 sc 622 | er 623 | np 624 | 58.8 23.2 mt 625 | 57.5 24.0 59.2 27.0 60.3 25.2 ct 626 | 60.6 23.8 60.1 23.2 58.8 23.2 ct 627 | cp 628 | 0.996 0.996 0.996 sc 629 | er 630 | np 631 | 61.0 23.5 mt 632 | 60.2 24.4 61.5 26.7 62.5 25.4 ct 633 | 63.3 24.4 62.1 22.2 61.0 23.5 ct 634 | cp 635 | 0.996 0.996 0.996 sc 636 | er 637 | np 638 | 63.4 26.1 mt 639 | 65.0 26.1 66.7 26.2 68.4 26.3 ct 640 | 68.5 25.4 68.7 23.7 68.8 22.8 ct 641 | 67.1 22.8 65.3 22.9 63.5 22.9 ct 642 | 63.5 23.7 63.4 25.3 63.4 26.1 ct 643 | cp 644 | 0.996 0.996 0.996 sc 645 | er 646 | np 647 | 296.2 25.2 mt 648 | 296.5 26.7 298.4 26.4 299.6 26.2 ct 649 | 300.3 24.4 296.5 23.1 296.2 25.2 ct 650 | cp 651 | 0.082 0.090 0.094 sc 652 | er 653 | np 654 | 100.3 22.9 mt 655 | 103.1 24.6 100.6 19.5 100.3 22.9 ct 656 | cp 657 | 0.996 0.996 0.996 sc 658 | er 659 | np 660 | 42.7 20.1 mt 661 | 42.8 20.6 43.1 21.7 43.2 22.2 ct 662 | 43.2 21.7 43.2 20.6 43.2 20.1 ct 663 | 44.2 20.6 lt 664 | 44.6 20.1 45.4 19.2 45.8 18.7 ct 665 | 45.2 18.6 44.1 18.6 43.5 18.5 ct 666 | 43.4 18.1 43.1 17.1 43.0 16.6 ct 667 | 42.4 17.9 41.7 19.1 41.0 20.4 ct 668 | 42.7 20.1 lt 669 | cp 670 | 0.082 0.090 0.094 sc 671 | er 672 | np 673 | 49.6 22.4 mt 674 | 56.2 22.5 62.8 22.8 69.4 22.4 ct 675 | 69.5 21.7 69.7 20.3 69.8 19.6 ct 676 | 67.4 19.7 65.2 18.8 63.0 17.8 ct 677 | 62.0 17.0 61.0 16.2 60.0 15.4 ct 678 | 59.1 15.4 lt 679 | 57.5 16.8 55.7 17.9 54.0 19.1 ct 680 | 52.4 19.3 50.8 19.5 49.1 19.6 ct 681 | 49.3 20.3 49.5 21.7 49.6 22.4 ct 682 | cp 683 | 0.996 0.996 0.996 sc 684 | er 685 | np 686 | 75.4 20.5 mt 687 | 75.6 21.0 75.8 21.8 76.0 22.3 ct 688 | 76.1 21.8 76.3 20.7 76.4 20.2 ct 689 | 77.8 20.5 lt 690 | 77.6 19.5 77.4 18.6 77.2 17.6 ct 691 | 76.5 17.6 75.7 17.7 74.9 17.7 ct 692 | 74.5 18.1 73.6 18.8 73.2 19.2 ct 693 | 73.6 19.2 74.3 19.3 74.7 19.3 ct 694 | 74.5 20.5 lt 695 | 75.4 20.5 lt 696 | cp 697 | 0.082 0.090 0.094 sc 698 | er 699 | np 700 | 66.6 12.6 mt 701 | 66.7 12.9 66.9 13.7 67.1 14.1 ct 702 | 67.2 12.7 67.4 11.2 67.6 9.8 ct 703 | 66.5 9.7 65.3 9.5 64.2 9.4 ct 704 | 64.4 9.8 64.7 10.8 64.8 11.3 ct 705 | 64.4 11.5 63.4 12.0 62.9 12.2 ct 706 | 63.8 12.3 65.7 12.5 66.6 12.6 ct 707 | cp 708 | 0.082 0.090 0.094 sc 709 | er 710 | np 711 | 51.9 12.2 mt 712 | 52.3 12.4 53.2 12.7 53.6 12.9 ct 713 | 53.6 11.6 53.6 10.4 53.6 9.1 ct 714 | 52.9 9.7 52.2 10.3 51.5 10.8 ct 715 | 51.6 11.2 51.8 11.9 51.9 12.2 ct 716 | cp 717 | 0.082 0.090 0.094 sc 718 | er 719 | np 720 | 100.6 11.7 mt 721 | 102.6 13.6 105.6 12.6 108.1 12.8 ct 722 | 108.2 12.5 108.4 11.9 108.5 11.6 ct 723 | 107.8 11.5 106.3 11.5 105.5 11.5 ct 724 | 105.5 8.5 105.7 5.6 105.0 2.7 ct 725 | 103.3 5.3 104.2 8.5 104.0 11.5 ct 726 | 103.1 11.5 101.4 11.6 100.6 11.7 ct 727 | cp 728 | 0.082 0.090 0.094 sc 729 | er 730 | np 731 | 109.9 9.8 mt 732 | 109.5 14.2 116.7 14.1 117.2 10.0 ct 733 | 115.1 10.7 112.8 12.8 110.9 10.4 ct 734 | 112.8 9.5 114.9 9.0 116.7 7.9 ct 735 | 118.1 5.3 115.7 3.0 113.1 3.4 ct 736 | 110.8 3.2 109.8 5.5 109.5 7.4 ct 737 | 111.4 6.1 113.9 3.3 115.9 6.2 ct 738 | 114.2 7.7 110.9 7.6 109.9 9.8 ct 739 | cp 740 | 0.082 0.090 0.094 sc 741 | er 742 | np 743 | 119.2 12.8 mt 744 | 119.6 12.8 120.4 12.8 120.8 12.8 ct 745 | 120.8 9.9 121.0 7.0 120.7 4.1 ct 746 | 120.3 3.9 119.6 3.6 119.2 3.4 ct 747 | 119.1 6.5 119.2 9.7 119.2 12.8 ct 748 | cp 749 | 0.082 0.090 0.094 sc 750 | er 751 | np 752 | 123.4 13.0 mt 753 | 123.9 12.9 124.9 12.7 125.4 12.6 ct 754 | 126.6 10.6 127.8 8.6 129.1 6.7 ct 755 | 129.2 9.0 129.2 11.2 129.5 13.5 ct 756 | 132.0 10.6 130.6 6.2 130.2 2.8 ct 757 | 128.2 5.0 126.6 7.6 125.0 10.1 ct 758 | 125.0 8.0 125.0 5.9 125.0 3.8 ct 759 | 124.7 3.7 123.9 3.6 123.5 3.5 ct 760 | 123.5 6.6 123.5 9.8 123.4 13.0 ct 761 | cp 762 | 0.082 0.090 0.094 sc 763 | er 764 | np 765 | 134.2 4.1 mt 766 | 131.0 6.6 132.3 13.5 136.9 13.1 ct 767 | 139.3 13.7 140.7 11.4 141.5 9.6 ct 768 | 139.3 10.2 136.4 13.3 134.7 10.4 ct 769 | 132.4 7.6 135.6 3.7 138.9 4.9 ct 770 | 139.1 5.4 139.5 6.4 139.7 6.9 ct 771 | 138.8 7.1 137.1 7.5 136.3 7.8 ct 772 | 137.7 8.5 139.4 8.6 141.0 8.6 ct 773 | 141.0 7.6 141.1 5.6 141.1 4.5 ct 774 | 138.9 3.7 136.4 2.8 134.2 4.1 ct 775 | cp 776 | 0.082 0.090 0.094 sc 777 | er 778 | np 779 | 143.3 12.8 mt 780 | 143.6 12.8 144.3 12.8 144.7 12.8 ct 781 | 144.7 11.9 144.8 10.2 144.9 9.3 ct 782 | 146.2 9.3 147.5 9.2 148.8 9.2 ct 783 | 149.0 10.3 149.3 12.6 149.4 13.7 ct 784 | 151.5 10.7 150.1 6.8 150.5 3.5 ct 785 | 150.1 3.6 149.4 3.8 149.0 3.9 ct 786 | 149.0 5.2 149.0 6.6 149.0 8.0 ct 787 | 147.6 8.0 146.3 8.0 145.0 8.0 ct 788 | 144.8 6.2 144.7 4.4 144.0 2.6 ct 789 | 142.6 5.8 143.3 9.4 143.3 12.8 ct 790 | cp 791 | 0.082 0.090 0.094 sc 792 | er 793 | np 794 | 153.0 6.9 mt 795 | 153.2 9.1 152.0 12.1 154.4 13.4 ct 796 | 154.6 10.7 154.2 7.9 155.0 5.3 ct 797 | 155.8 5.1 157.5 4.9 158.3 4.8 ct 798 | 158.7 7.4 158.7 10.1 158.8 12.8 ct 799 | 159.1 12.8 159.9 12.7 160.3 12.7 ct 800 | 160.2 10.1 160.5 7.5 159.9 5.0 ct 801 | 158.2 2.2 152.5 3.1 153.0 6.9 ct 802 | cp 803 | 0.082 0.090 0.094 sc 804 | er 805 | np 806 | 165.5 13.5 mt 807 | 167.7 10.5 168.7 6.8 170.0 3.4 ct 808 | 168.3 3.7 167.5 5.3 166.7 6.7 ct 809 | 164.6 6.8 163.4 5.7 162.9 3.8 ct 810 | 162.3 3.8 161.8 3.8 161.3 3.8 ct 811 | 162.6 7.1 163.8 10.4 165.5 13.5 ct 812 | cp 813 | 0.082 0.090 0.094 sc 814 | er 815 | np 816 | 175.1 5.9 mt 817 | 175.2 8.4 174.1 11.6 176.3 13.5 ct 818 | 176.6 10.7 176.3 7.9 177.0 5.1 ct 819 | 177.8 5.1 179.6 4.9 180.4 4.8 ct 820 | 180.7 7.5 180.7 10.2 180.7 12.8 ct 821 | 181.1 12.8 181.9 12.7 182.4 12.7 ct 822 | 182.2 9.6 182.9 6.1 180.9 3.5 ct 823 | 178.8 3.5 175.5 3.0 175.1 5.9 ct 824 | cp 825 | 0.082 0.090 0.094 sc 826 | er 827 | np 828 | 184.6 13.4 mt 829 | 187.2 12.0 188.4 9.0 190.1 6.7 ct 830 | 190.6 8.9 189.2 12.0 191.6 13.4 ct 831 | 191.9 10.3 191.8 7.1 191.8 3.9 ct 832 | 191.5 3.8 190.7 3.6 190.4 3.4 ct 833 | 188.9 5.6 187.5 7.8 186.0 10.0 ct 834 | 186.0 7.8 186.0 5.6 185.9 3.3 ct 835 | 185.6 3.5 184.8 3.8 184.4 4.0 ct 836 | 184.5 7.1 184.5 10.3 184.6 13.4 ct 837 | cp 838 | 0.082 0.090 0.094 sc 839 | er 840 | np 841 | 194.3 3.4 mt 842 | 194.7 6.7 192.8 11.0 195.5 13.4 ct 843 | 195.9 10.3 195.8 7.1 195.8 3.9 ct 844 | 195.4 3.8 194.6 3.6 194.3 3.4 ct 845 | cp 846 | 0.082 0.090 0.094 sc 847 | er 848 | np 849 | 197.7 12.4 mt 850 | 198.1 12.6 198.7 12.9 199.0 13.1 ct 851 | 200.2 10.8 201.0 8.4 201.8 6.0 ct 852 | 203.1 8.6 203.2 12.2 206.1 13.5 ct 853 | 205.2 9.9 204.2 6.1 202.0 3.1 ct 854 | 199.7 5.7 198.9 9.2 197.7 12.4 ct 855 | cp 856 | 0.082 0.090 0.094 sc 857 | er 858 | np 859 | 207.2 12.8 mt 860 | 209.4 12.8 211.6 12.8 213.8 12.8 ct 861 | 213.8 12.4 213.7 11.8 213.7 11.5 ct 862 | 212.1 11.5 210.5 11.5 208.9 11.5 ct 863 | 208.8 10.9 208.8 9.7 208.7 9.2 ct 864 | 210.6 9.1 212.5 9.0 214.4 8.7 ct 865 | 212.7 7.6 210.6 7.7 208.7 7.5 ct 866 | 208.7 6.9 208.8 5.7 208.8 5.0 ct 867 | 210.8 5.0 212.7 5.0 214.7 4.9 ct 868 | 212.8 2.8 209.7 4.0 207.3 3.7 ct 869 | 207.2 6.7 207.2 9.8 207.2 12.8 ct 870 | cp 871 | 0.082 0.090 0.094 sc 872 | er 873 | np 874 | 216.2 12.8 mt 875 | 218.8 12.9 221.3 12.9 223.7 12.0 ct 876 | 223.6 10.3 223.1 8.7 222.0 7.3 ct 877 | 222.7 6.1 223.3 4.9 224.0 3.6 ct 878 | 223.6 3.7 222.7 3.8 222.3 3.8 ct 879 | 221.1 5.6 220.0 7.5 217.9 8.2 ct 880 | 217.9 7.1 217.8 4.9 217.8 3.8 ct 881 | 217.3 3.8 216.7 3.8 216.2 3.8 ct 882 | 216.2 6.8 216.2 9.8 216.2 12.8 ct 883 | cp 884 | 0.082 0.090 0.094 sc 885 | er 886 | np 887 | 225.4 10.8 mt 888 | 226.4 14.4 232.6 13.6 232.6 9.7 ct 889 | 230.6 10.9 228.3 12.8 226.5 10.3 ct 890 | 229.0 9.3 233.9 8.6 232.3 4.7 ct 891 | 229.9 2.3 225.1 3.5 224.9 7.2 ct 892 | 226.8 6.3 228.5 4.2 230.8 5.2 ct 893 | 231.7 8.7 224.6 6.9 225.4 10.8 ct 894 | cp 895 | 0.082 0.090 0.094 sc 896 | er 897 | np 898 | 234.7 12.9 mt 899 | 235.1 12.8 235.9 12.7 236.3 12.7 ct 900 | 236.3 9.4 236.5 6.0 235.7 2.8 ct 901 | 233.9 5.9 235.0 9.6 234.7 12.9 ct 902 | cp 903 | 0.082 0.090 0.094 sc 904 | er 905 | np 906 | 237.4 12.5 mt 907 | 240.8 13.0 244.4 12.6 247.8 12.8 ct 908 | 248.7 11.6 249.5 10.3 250.4 9.1 ct 909 | 251.0 10.3 251.7 11.5 252.3 12.6 ct 910 | 252.9 12.7 254.0 12.8 254.5 12.9 ct 911 | 252.7 10.1 250.4 7.4 250.9 3.8 ct 912 | 250.6 3.7 250.0 3.5 249.7 3.4 ct 913 | 250.2 7.4 247.4 13.5 242.6 11.4 ct 914 | 242.5 8.6 242.6 5.7 242.2 2.9 ct 915 | 240.0 5.0 241.3 8.4 241.0 11.1 ct 916 | 239.8 11.5 238.6 11.9 237.4 12.5 ct 917 | cp 918 | 0.082 0.090 0.094 sc 919 | er 920 | np 921 | 260.2 12.8 mt 922 | 260.6 12.8 261.4 12.7 261.8 12.7 ct 923 | 261.8 10.2 261.8 7.7 261.8 5.1 ct 924 | 263.5 5.1 265.1 5.0 266.8 4.8 ct 925 | 265.0 3.1 262.4 3.9 260.2 3.7 ct 926 | 260.2 6.7 260.2 9.7 260.2 12.8 ct 927 | cp 928 | 0.082 0.090 0.094 sc 929 | er 930 | np 931 | 268.3 13.7 mt 932 | 270.8 10.9 269.1 6.8 269.4 3.5 ct 933 | 269.1 3.6 268.3 3.8 268.0 3.9 ct 934 | 268.0 7.2 267.8 10.4 268.3 13.7 ct 935 | cp 936 | 0.082 0.090 0.094 sc 937 | er 938 | np 939 | 272.2 12.8 mt 940 | 274.3 12.5 277.1 13.6 278.7 11.8 ct 941 | 278.9 9.4 279.8 6.6 278.6 4.4 ct 942 | 276.7 3.4 274.4 3.8 272.3 3.6 ct 943 | 272.2 6.7 272.2 9.7 272.2 12.8 ct 944 | cp 945 | 0.082 0.090 0.094 sc 946 | er 947 | np 948 | 281.0 12.9 mt 949 | 283.3 12.6 286.0 13.4 288.0 11.9 ct 950 | 288.9 10.2 287.8 8.6 286.6 7.4 ct 951 | 286.9 6.8 287.6 5.5 287.9 4.9 ct 952 | 288.6 4.8 289.4 4.8 290.2 4.7 ct 953 | 290.8 6.8 291.5 8.8 292.1 10.9 ct 954 | 292.8 9.6 293.5 8.2 294.2 6.9 ct 955 | 294.3 8.1 294.4 9.3 294.6 10.4 ct 956 | 293.9 10.6 292.6 10.8 292.0 10.9 ct 957 | 292.7 11.7 293.3 12.7 294.4 12.9 ct 958 | 296.0 9.8 297.2 6.5 298.2 3.1 ct 959 | 296.7 3.8 295.9 5.1 295.1 6.5 ct 960 | 294.4 6.5 293.2 6.4 292.5 6.4 ct 961 | 292.3 3.2 289.3 3.9 287.1 3.8 ct 962 | 285.9 5.6 284.7 7.4 282.7 8.3 ct 963 | 282.6 6.8 282.5 5.2 282.5 3.7 ct 964 | 281.0 3.7 lt 965 | 281.0 6.8 281.0 9.8 281.0 12.9 ct 966 | cp 967 | 0.082 0.090 0.094 sc 968 | er 969 | np 970 | 299.4 12.9 mt 971 | 302.0 12.5 305.6 13.8 306.9 11.0 ct 972 | 307.0 9.5 305.9 8.4 305.1 7.4 ct 973 | 305.9 6.1 306.7 4.7 307.4 3.4 ct 974 | 304.6 3.9 303.7 7.0 301.5 8.5 ct 975 | 301.2 6.7 300.9 4.9 300.6 3.0 ct 976 | 298.4 5.8 299.9 9.7 299.4 12.9 ct 977 | cp 978 | 0.082 0.090 0.094 sc 979 | er 980 | np 981 | 307.8 13.3 mt 982 | 309.9 12.9 310.8 10.9 312.0 9.4 ct 983 | 313.1 10.9 314.1 12.8 316.2 13.4 ct 984 | 314.6 10.1 312.4 7.1 312.5 3.3 ct 985 | 312.2 3.5 311.6 3.7 311.3 3.9 ct 986 | 311.8 7.5 309.2 10.2 307.8 13.3 ct 987 | cp 988 | 0.082 0.090 0.094 sc 989 | er 990 | np 991 | 57.5 11.5 mt 992 | 58.8 11.5 60.0 11.5 61.3 11.5 ct 993 | 61.2 11.0 61.2 10.0 61.2 9.5 ct 994 | 60.8 9.5 60.0 9.6 59.5 9.6 ct 995 | 59.4 7.7 lt 996 | 58.9 8.9 58.4 10.1 58.0 11.3 ct 997 | 57.5 11.5 lt 998 | cp 999 | 0.082 0.090 0.094 sc 1000 | er 1001 | np 1002 | 218.3 11.8 mt 1003 | 219.6 11.2 223.1 11.7 221.6 9.4 ct 1004 | 220.3 9.1 219.0 9.0 217.6 8.9 ct 1005 | 217.8 9.6 218.1 11.1 218.3 11.8 ct 1006 | cp 1007 | 0.996 0.996 0.996 sc 1008 | er 1009 | np 1010 | 274.3 11.2 mt 1011 | 275.2 12.0 277.5 11.6 277.3 10.0 ct 1012 | 276.5 7.9 272.3 9.2 274.3 11.2 ct 1013 | cp 1014 | 0.996 0.996 0.996 sc 1015 | er 1016 | np 1017 | 165.3 10.2 mt 1018 | 166.6 9.9 166.8 9.2 166.0 8.0 ct 1019 | 164.7 8.2 164.4 8.9 165.3 10.2 ct 1020 | cp 1021 | 0.996 0.996 0.996 sc 1022 | er 1023 | np 1024 | 283.1 10.8 mt 1025 | 283.9 12.0 287.2 11.2 285.9 9.6 ct 1026 | 285.0 8.5 281.8 9.1 283.1 10.8 ct 1027 | cp 1028 | 0.996 0.996 0.996 sc 1029 | er 1030 | np 1031 | 301.3 10.8 mt 1032 | 302.2 11.8 304.5 11.7 304.9 10.2 ct 1033 | 304.5 8.4 300.0 8.6 301.3 10.8 ct 1034 | cp 1035 | 0.996 0.996 0.996 sc 1036 | er 1037 | np 1038 | 274.3 5.5 mt 1039 | 273.3 7.1 276.0 8.3 277.0 7.1 ct 1040 | 278.2 5.6 275.3 4.4 274.3 5.5 ct 1041 | cp 1042 | 0.996 0.996 0.996 sc 1043 | er 1044 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-lib-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-lib-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-text-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-text-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-text-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-whole-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-whole-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-whole-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/figures/thu-whole-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/main.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/main.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/msmake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/msmake.cmd -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/ref/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/ref/refs.bib -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/shuji.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/shuji.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/shuji.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/shuji.tex -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thubib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thubib.bst -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.cfg -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.cls -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.dtx -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.ins: -------------------------------------------------------------------------------- 1 | %% 2 | %% Copyright (C) 2005-2008 by Ruini Xue 3 | %% 4 | %% This file is part of the ThuThesis package project. 5 | %% --------------------------------------------------- 6 | %% 7 | %% This file may be distributed and/or modified under the 8 | %% conditions of the LaTeX Project Public License, either version 1.3a 9 | %% of this license or (at your option) any later version. 10 | %% The latest version of this license is in: 11 | %% 12 | %% http://www.latex-project.org/lppl.txt 13 | %% 14 | %% and version 1.3a or later is part of all distributions of LaTeX 15 | %% version 2004/10/01 or later. 16 | %% 17 | %% $Id: thuthesis.ins 191 2009-01-05 16:38:56Z littleleo $ 18 | 19 | \input docstrip 20 | 21 | \askforoverwritefalse 22 | %\askonceonly 23 | \showprogress 24 | \keepsilent 25 | 26 | \usedir{tex/latex/thuthesis} 27 | 28 | \preamble 29 | 30 | This is a generated file. 31 | 32 | Copyright (C) 2005-\the\year by Ruini Xue 33 | 34 | This file may be distributed and/or modified under the 35 | conditions of the LaTeX Project Public License, either version 1.3a 36 | of this license or (at your option) any later version. 37 | The latest version of this license is in: 38 | 39 | http://www.latex-project.org/lppl.txt 40 | 41 | and version 1.3a or later is part of all distributions of LaTeX 42 | version 2004/10/01 or later. 43 | 44 | To produce the documentation run the original source files ending with `.dtx' 45 | through LaTeX. 46 | 47 | \endpreamble 48 | 49 | \declarepreamble\cfgpreamble 50 | 51 | This is a generated file. 52 | 53 | Copyright (C) 2005-\the\year by Xue Ruini 54 | 55 | This file may be distributed and/or modified under the 56 | conditions of the LaTeX Project Public License, either version 1.3a 57 | of this license or (at your option) any later version. 58 | The latest version of this license is in: 59 | 60 | http://www.latex-project.org/lppl.txt 61 | 62 | and version 1.3a or later is part of all distributions of LaTeX 63 | version 2004/10/01 or later. 64 | 65 | 66 | This is the configuration file of the thuthesis package with LaTeX2e. 67 | 68 | \endpreamble 69 | 70 | \generate{\file{\jobname.cls}{\from{\jobname.dtx}{cls}} 71 | \usepreamble\cfgpreamble 72 | \file{\jobname.cfg}{\from{\jobname.dtx}{cfg}} 73 | \nopreamble\nopostamble 74 | \file{dtx-style.sty}{\from{\jobname.dtx}{dtx-style}}} 75 | 76 | \ifToplevel{ 77 | \Msg{***********************************************************} 78 | \Msg{*} 79 | \Msg{* To finish the installation you have to move the following} 80 | \Msg{* files into a directory searched by TeX:} 81 | \Msg{*} 82 | \Msg{* The recommended directory is TEXMF/tex/latex/thuthesis} 83 | \Msg{*} 84 | \Msg{* \space\space thuthesis.cls} 85 | \Msg{* \space\space thuthesis.cfg} 86 | \Msg{*} 87 | \Msg{* To produce the documentation run the files ending with} 88 | \Msg{* `.dtx' through LaTeX.} 89 | \Msg{*} 90 | \Msg{* Happy TeXing!} 91 | \Msg{***********************************************************} 92 | } 93 | 94 | \endbatchfile 95 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thuthesis.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thutils.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@GBK-4.5.1/thutils.sty -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for ThuThesis 2 | # $Id: Makefile 199 2009-02-28 15:20:35Z littleleo $ 3 | 4 | ifeq ($(MAKE),) 5 | override MAKE=make 6 | endif 7 | 8 | ifeq ($(TEXI2DVI),) 9 | override TEXI2DVI=texi2dvi 10 | endif 11 | 12 | ifneq ($(METHOD),ps2pdf) 13 | ifneq ($(METHOD),dvipdfm) 14 | override METHOD=ps2pdf 15 | endif 16 | endif 17 | 18 | PACKAGE=thuthesis 19 | SOURCES=$(PACKAGE).ins $(PACKAGE).dtx 20 | THESISMAIN=main 21 | THESISCONTENTS=$(THESISMAIN).tex data/*.tex 22 | BIBFILE=ref/refs.bib 23 | SHUJIMAIN=shuji 24 | SHUJICONTENTS=$(SHUJIMAIN).tex 25 | 26 | .PHONY: all clean distclean dist all thesis shuji doc cls cfg dvi ps pdf gbk 27 | 28 | all: cls doc thesis shuji 29 | 30 | 31 | ###### generate cls/cfg 32 | cls: $(SOURCES) 33 | latex $(PACKAGE).ins 34 | 35 | ###### for doc 36 | 37 | doc: doc-pdf 38 | 39 | doc-pdf: $(PACKAGE).pdf 40 | 41 | doc-ps: $(PACKAGE).ps 42 | 43 | doc-dvi: $(PACKAGE).dvi 44 | 45 | $(PACKAGE).dvi: cls 46 | latex $(PACKAGE).dtx 47 | makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx 48 | makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo 49 | latex $(PACKAGE).dtx 50 | latex $(PACKAGE).dtx 51 | 52 | $(PACKAGE).ps: $(PACKAGE).dvi 53 | # gbk2uni $(PACKAGE) 54 | latex $(PACKAGE).dtx 55 | dvips -Ppdf -G0 -t letter $(PACKAGE).dvi 56 | 57 | $(PACKAGE).pdf: $(PACKAGE).ps 58 | ps2pdf $(PACKAGE).ps 59 | 60 | ###### for thesis 61 | 62 | thesis: thesis-pdf 63 | 64 | thesis-pdf: $(THESISMAIN).pdf 65 | 66 | thesis-dvi: $(THESISMAIN).dvi 67 | 68 | thesis-ps: $(THESISMAIN).ps 69 | 70 | $(THESISMAIN).dvi: cls $(THESISCONTENTS) $(THESISMAIN).bbl 71 | $(TEXI2DVI) $(THESISMAIN).tex 72 | 73 | ifeq ($(METHOD),dvipdfm) 74 | $(THESISMAIN).pdf: $(THESISMAIN).dvi 75 | # gbk2uni $(THESISMAIN) 76 | latex $(THESISMAIN).tex 77 | dvipdfm $(THESISMAIN).dvi 78 | else 79 | $(THESISMAIN).pdf: $(THESISMAIN).ps 80 | ps2pdf $(THESISMAIN).ps 81 | endif 82 | 83 | $(THESISMAIN).ps: $(THESISMAIN).dvi 84 | # gbk2uni $(THESISMAIN) 85 | latex $(THESISMAIN).tex 86 | dvips -Ppdf -G0 $(THESISMAIN).dvi 87 | 88 | $(THESISMAIN).bbl: $(BIBFILE) 89 | $(TEXI2DVI) $(THESISMAIN).tex 90 | -bibtex $(THESISMAIN) 91 | 92 | 93 | 94 | ###### for shuji 95 | shuji: shuji-pdf 96 | 97 | shuji-pdf: $(SHUJIMAIN).pdf 98 | 99 | shuji-dvi: $(SHUJIMAIN).dvi 100 | 101 | shuji-ps: $(SHUJIMAIN).ps 102 | 103 | $(SHUJIMAIN).dvi: cls $(SHUJICONTENTS) 104 | $(TEXI2DVI) $(SHUJIMAIN).tex 105 | 106 | ifeq ($(METHOD),dvipdfm) 107 | $(SHUJIMAIN).pdf: $(SHUJIMAIN).dvi 108 | # gbk2uni $(SHUJIMAIN) 109 | latex $(SHUJIMAIN).tex 110 | dvipdfmx $(SHUJIMAIN).dvi 111 | elifeq ($(METHOD),ps2pdf) 112 | $(SHUJIMAIN).pdf: $(SHUJIMAIN).ps 113 | ps2pdf $(SHUJIMAIN).ps 114 | else 115 | $(SHUJIMAIN).pdf: cls $(SHUJICONTENTS) 116 | pdflatex $(SHUJIMAIN) 117 | endif 118 | 119 | $(SHUJIMAIN).ps: $(SHUJIMAIN).dvi 120 | # gbk2uni $(SHUJIMAIN) 121 | latex $(SHUJIMAIN).tex 122 | dvips -Ppdf -G0 $(SHUJIMAIN).dvi 123 | 124 | clean: 125 | -@rm -f \ 126 | *.aux \ 127 | *.bak \ 128 | *.bbl \ 129 | *.blg \ 130 | *.dvi \ 131 | *.glo \ 132 | *.gls \ 133 | *.idx \ 134 | *.ilg \ 135 | *.ind \ 136 | *.ist \ 137 | *.log \ 138 | *.out \ 139 | *.ps \ 140 | *.thm \ 141 | *.toc \ 142 | *.lof \ 143 | *.lot \ 144 | *.loe \ 145 | data/*.aux \ 146 | dtx-style.sty 147 | 148 | distclean: clean 149 | -@rm -f *.cls *.cfg 150 | -@rm -f *.pdf *.tar.gz 151 | 152 | gbk: 153 | @./makegbk.sh 154 | 155 | dist: 156 | @if [ -z "$(VERSION)" ]; then \ 157 | echo "Usage: make dist VERSION="; \ 158 | else \ 159 | if [ ! -d "gbk" ]; then \ 160 | echo -e "\n run ./makegbk.sh first to prepare for GBK version.\n"; \ 161 | else \ 162 | ./makedist.sh $(VERSION) UTF8; \ 163 | (cd gbk ; ../makedist.sh $(VERSION) GBK); \ 164 | fi; \ 165 | fi 166 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/Readme: -------------------------------------------------------------------------------- 1 | ========== 2 | What's it? 3 | ========== 4 | ThuThesis is a LaTeX thesis template package for Tsinghua University in order to 5 | make it easy to write thesises for either bachelor, master or doctor. 6 | 7 | ThuThesis 是清华大学学位论文 LaTeX 模板,支持本科、硕士、博士论文格式。 8 | 9 | 10 | ======== 11 | 使用方法 12 | ======== 13 | 1. 编译示例文档 14 | latex main 15 | bibtex main 16 | latex main 17 | latex main 18 | dvips main.dvi 19 | ps2pdf main.ps 20 | 21 | 说明:也可以使用 pdflatex/dvipdfm(x)/xelatex 生成文档。 22 | 23 | 2. 编写自己的论文 24 | 参考示例文档: 25 | main.tex 主控文档 26 | data/ 论文具体内容 27 | ref/ 参考文献目录 28 | figures/ 图片目录 29 | 30 | 31 | ======== 32 | 如何升级 33 | ======== 34 | 1. 下载新模板并解压缩 35 | 2. 将thuthesis.cls, thuthesis.cfg, thubib.bst作相应替换即可。 36 | 37 | 38 | ====================================== 39 | Makefile Howto (by edyfox & littleleo) 40 | ====================================== 41 | 1. 获取帮助文档 42 | 43 | make doc 得到 thuthesis.pdf,帮助文档,里面有详细的说明。 44 | 45 | 2. 生成示例文档 46 | 47 | make thesis 48 | 49 | 3. 生成书脊示例 50 | 51 | make shuji 52 | 53 | 附录: Makefile 命令详解: 54 | 55 | Makefile: 56 | 57 | 使用方法: 58 | 59 | make [{all|thesis|shuji|doc|clean|distclean}] \ 60 | [METHOD={ps2pdf|dvipdfm}] \ 61 | [TEXI2DVI=] 62 | 63 | 参数说明: 64 | 65 | make all 等于 make thesis && make shuji && make doc; 66 | make cls 生成模板文件,相当于 make -f thesis.mak cls; 67 | make thesis 生成论文,相当于 make -f thesis.mak; 68 | make shuji 生成书脊,相当于 make -f shuji.mak; 69 | make doc 生成使用说明书,相当于 make -f doc.mak; 70 | make clean 表示清除除了 pdf 外的所有中间文件和目标文件; 71 | make distclean 表示清除包括 pdf 在内的所有中间文件和目标文件。 72 | 73 | METHOD 参数用来指定生成 pdf 的方式, 74 | 75 | METHOD=ps2pdf 表示使用 texi2dvi -> dvips ->ps2pdf 的方式生成 pdf; 76 | METHOD=dvipdfm 表示使用 texi2dvi -> dvipdfm 的方式生成 pdf; 77 | 78 | 如果缺省,则采用 ps2pdf 方式。 79 | 80 | TEXI2DVI 表示 texi2dvi 实用工具的文件名,该工具的作用是自动重复运行 81 | latex 若干遍,直至所有交叉引用都正确为止。在有的发行版中该工具的文件名 82 | 不叫 texi2dvi,譬如 CTeX 下的这个工具就叫 texify。遇到这种情况你可以在 83 | 命令行通过 TEXI2DVI=texify 命令指定使用其它的 texi2dvi 工具。 84 | 85 | 86 | 87 | =========================== 88 | msmake.cmd Howto (by Truel) 89 | =========================== 90 | 1.配置thuthesis宏包 91 | 92 | msmake setup 93 |   在当前目录下生成thuthesis宏包及说明文档thuthesis.pdf 94 | 95 | 2.生成示例文档 96 | 97 | msmake [shuji|main|all|other] 98 |    99 | 在当前目录下生成示例文档,或其中的一部分,或其他用户指定文档 100 | 如果当前目录下无thuthesis.cls,将自动根据thuthesis.ins生成。 101 |   - shuji 仅生成书脊 102 |   - main 仅生成main.pdf 103 |   - all 生成书脊和main.pdf,默认选项 104 |   - other 用户指定的tex文件名,由该tex文件产生pdf文档 105 | 106 | 3.清理目录 107 | 108 | msmake clean [other] 109 | 110 |   清理当前目录下由thuthesis宏包生成的文件,具体包括 111 | - 宏包及其说明文档thuthesis.{cls,cfg,dvi,ps,pdf} 112 | - 示例文档shuji.pdf, main.{dvi,ps,pdf,aux,etc.} 113 | - 其它临时文件 *.log *.aux *.glo *.idx *.ilg *.ind *.out *.thm *.toc *.lot *.loe *.out.bak 114 | - 如果用户指定其他文件名,不删除main.*,而删除 other.{dvi,ps,pdf,lo?,aux,bbl,blg,out* toc thm} 115 | 116 | 4.辅助图形图像文件格式转换命令: 117 | 118 | msmake epspdf [param] 119 | 120 | 将当前目录下所有eps文件用epstopdf转为pdf格式 121 | 122 | msmake bmpeps [param] 123 | 124 | 将当前目录下所有bmp,jpg,png文件用bmeps转为eps格式 125 | 126 | 以上两个命令中,param可以由用户指定转换程序所用的参数。 127 | 128 | # $Id: Readme 179 2009-01-04 13:44:21Z littleleo $ 129 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/ack.tex: -------------------------------------------------------------------------------- 1 | 2 | %%% Local Variables: 3 | %%% mode: latex 4 | %%% TeX-master: "../main" 5 | %%% End: 6 | 7 | \begin{ack} 8 | 衷心感谢导师 xxx 教授和物理系 xxx 副教授对本人的精心指导。他们的言传身教将使 9 | 我终生受益。 10 | 11 | 在美国麻省理工学院化学系进行九个月的合作研究期间,承蒙 xxx 教授热心指导与帮助,不 12 | 胜感激。感谢 xx 实验室主任 xx 教授,以及实验室全体老师和同学们的热情帮助和支 13 | 持!本课题承蒙国家自然科学基金资助,特此致谢。 14 | 15 | 感谢 \thuthesis,它的存在让我的论文写作轻松自在了许多,让我的论文格式规整漂亮了 16 | 许多。 17 | 18 | 本科学位论文的致谢和声明分页,硕士、博士学位论文不分页。所以本科可以多写一些, 19 | 研究生少写一些。 20 | \end{ack} 21 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/appendix01.tex: -------------------------------------------------------------------------------- 1 | %%% Local Variables: 2 | %%% mode: latex 3 | %%% TeX-master: "../main" 4 | %%% End: 5 | 6 | \chapter{外文资料原文} 7 | \label{cha:engorg} 8 | As one of the most widely used techniques in operations research, {\em 9 | mathematical programming} is defined as a means of maximizing a quantity known 10 | as {\em objective function}, subject to a set of constraints represented by 11 | equations and inequalities. Some known subtopics of mathematical programming are 12 | linear programming, nonlinear programming, multiobjective programming, goal 13 | programming, dynamic programming, and multilevel programming$^{[1]}$. 14 | 15 | It is impossible to cover in a single chapter every concept of mathematical 16 | programming. This chapter introduces only the basic concepts and techniques of 17 | mathematical programming such that readers gain an understanding of them 18 | throughout the book$^{[2,3]}$. 19 | 20 | 21 | \section{Single-Objective Programming} 22 | The general form of single-objective programming (SOP) is written 23 | as follows, 24 | \begin{equation}\tag*{(123)} % 如果附录中的公式不想让它出现在公式索引中,那就请 25 | % 用 \tag*{xxxx} 26 | \left\{\begin{array}{l} 27 | \max \,\,f(x)\\[0.1 cm] 28 | \mbox{subject to:} \\ [0.1 cm] 29 | \qquad g_j(x)\le 0,\quad j=1,2,\cdots,p 30 | \end{array}\right. 31 | \end{equation} 32 | which maximizes a real-valued function $f$ of 33 | $x=(x_1,x_2,\cdots,x_n)$ subject to a set of constraints. 34 | 35 | \newtheorem{mpdef}{Definition}[chapter] 36 | \begin{mpdef} 37 | In SOP, we call $x$ a decision vector, and 38 | $x_1,x_2,\cdots,x_n$ decision variables. The function 39 | $f$ is called the objective function. The set 40 | \begin{equation}\tag*{(456)} % 这里同理,其它不再一一指定。 41 | S=\left\{x\in\Re^n\bigm|g_j(x)\le 0,\,j=1,2,\cdots,p\right\} 42 | \end{equation} 43 | is called the feasible set. An element $x$ in $S$ is called a 44 | feasible solution. 45 | \end{mpdef} 46 | 47 | \newtheorem{mpdefop}[mpdef]{Definition} 48 | \begin{mpdefop} 49 | A feasible solution $x^*$ is called the optimal 50 | solution of SOP if and only if 51 | \begin{equation} 52 | f(x^*)\ge f(x) 53 | \end{equation} 54 | for any feasible solution $x$. 55 | \end{mpdefop} 56 | 57 | One of the outstanding contributions to mathematical programming was known as 58 | the Kuhn-Tucker conditions\ref{eq:ktc}. In order to introduce them, let us give 59 | some definitions. An inequality constraint $g_j(x)\le 0$ is said to be active at 60 | a point $x^*$ if $g_j(x^*)=0$. A point $x^*$ satisfying $g_j(x^*)\le 0$ is said 61 | to be regular if the gradient vectors $\nabla g_j(x)$ of all active constraints 62 | are linearly independent. 63 | 64 | Let $x^*$ be a regular point of the constraints of SOP and assume that all the 65 | functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are differentiable. If $x^*$ is a 66 | local optimal solution, then there exist Lagrange multipliers 67 | $\lambda_j,j=1,2,\cdots,p$ such that the following Kuhn-Tucker conditions hold, 68 | \begin{equation} 69 | \label{eq:ktc} 70 | \left\{\begin{array}{l} 71 | \nabla f(x^*)-\sum\limits_{j=1}^p\lambda_j\nabla g_j(x^*)=0\\[0.3cm] 72 | \lambda_jg_j(x^*)=0,\quad j=1,2,\cdots,p\\[0.2cm] 73 | \lambda_j\ge 0,\quad j=1,2,\cdots,p. 74 | \end{array}\right. 75 | \end{equation} 76 | If all the functions $f(x)$ and $g_j(x),j=1,2,\cdots,p$ are convex and 77 | differentiable, and the point $x^*$ satisfies the Kuhn-Tucker conditions 78 | (\ref{eq:ktc}), then it has been proved that the point $x^*$ is a global optimal 79 | solution of SOP. 80 | 81 | \subsection{Linear Programming} 82 | \label{sec:lp} 83 | 84 | If the functions $f(x),g_j(x),j=1,2,\cdots,p$ are all linear, then SOP is called 85 | a {\em linear programming}. 86 | 87 | The feasible set of linear is always convex. A point $x$ is called an extreme 88 | point of convex set $S$ if $x\in S$ and $x$ cannot be expressed as a convex 89 | combination of two points in $S$. It has been shown that the optimal solution to 90 | linear programming corresponds to an extreme point of its feasible set provided 91 | that the feasible set $S$ is bounded. This fact is the basis of the {\em simplex 92 | algorithm} which was developed by Dantzig as a very efficient method for 93 | solving linear programming. 94 | \begin{table}[ht] 95 | \centering 96 | \centering 97 | \caption*{Table~1\hskip1em This is an example for manually numbered table, which 98 | would not appear in the list of tables} 99 | \label{tab:badtabular2} 100 | \begin{tabular}[c]{|c|m{0.8in}|c|c|c|c|c|}\hline 101 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 102 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 103 | GT-ITM & Waxman Transit-Stub & 600 & 104 | \multirow{2}{2em}{2\%}& 105 | \multirow{2}{2em}{10\%}& 106 | \multirow{2}{2em}{50\%}& 107 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 108 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 109 | \multirow{2}{1in}{Xue} & Rui & Ni &\multicolumn{4}{c|}{\multirow{2}*{\thuthesis}}\\\cline{2-3} 110 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 111 | \end{tabular} 112 | \end{table} 113 | 114 | Roughly speaking, the simplex algorithm examines only the extreme points of the 115 | feasible set, rather than all feasible points. At first, the simplex algorithm 116 | selects an extreme point as the initial point. The successive extreme point is 117 | selected so as to improve the objective function value. The procedure is 118 | repeated until no improvement in objective function value can be made. The last 119 | extreme point is the optimal solution. 120 | 121 | \subsection{Nonlinear Programming} 122 | 123 | If at least one of the functions $f(x),g_j(x),j=1,2,\cdots,p$ is nonlinear, then 124 | SOP is called a {\em nonlinear programming}. 125 | 126 | A large number of classical optimization methods have been developed to treat 127 | special-structural nonlinear programming based on the mathematical theory 128 | concerned with analyzing the structure of problems. 129 | \begin{figure}[h] 130 | \centering 131 | \includegraphics[clip]{thu-lib-logo} 132 | \caption*{Figure~1\hskip1em This is an example for manually numbered figure, 133 | which would not appear in the list of figures} 134 | \label{tab:badfigure2} 135 | \end{figure} 136 | 137 | Now we consider a nonlinear programming which is confronted solely with 138 | maximizing a real-valued function with domain $\Re^n$. Whether derivatives are 139 | available or not, the usual strategy is first to select a point in $\Re^n$ which 140 | is thought to be the most likely place where the maximum exists. If there is no 141 | information available on which to base such a selection, a point is chosen at 142 | random. From this first point an attempt is made to construct a sequence of 143 | points, each of which yields an improved objective function value over its 144 | predecessor. The next point to be added to the sequence is chosen by analyzing 145 | the behavior of the function at the previous points. This construction continues 146 | until some termination criterion is met. Methods based upon this strategy are 147 | called {\em ascent methods}, which can be classified as {\em direct methods}, 148 | {\em gradient methods}, and {\em Hessian methods} according to the information 149 | about the behavior of objective function $f$. Direct methods require only that 150 | the function can be evaluated at each point. Gradient methods require the 151 | evaluation of first derivatives of $f$. Hessian methods require the evaluation 152 | of second derivatives. In fact, there is no superior method for all 153 | problems. The efficiency of a method is very much dependent upon the objective 154 | function. 155 | 156 | \subsection{Integer Programming} 157 | 158 | {\em Integer programming} is a special mathematical programming in which all of 159 | the variables are assumed to be only integer values. When there are not only 160 | integer variables but also conventional continuous variables, we call it {\em 161 | mixed integer programming}. If all the variables are assumed either 0 or 1, 162 | then the problem is termed a {\em zero-one programming}. Although integer 163 | programming can be solved by an {\em exhaustive enumeration} theoretically, it 164 | is impractical to solve realistically sized integer programming problems. The 165 | most successful algorithm so far found to solve integer programming is called 166 | the {\em branch-and-bound enumeration} developed by Balas (1965) and Dakin 167 | (1965). The other technique to integer programming is the {\em cutting plane 168 | method} developed by Gomory (1959). 169 | 170 | \hfill\textit{Uncertain Programming\/}\quad(\textsl{BaoDing Liu, 2006.2}) 171 | 172 | \section*{References} 173 | \noindent{\itshape NOTE: these references are only for demonstration, they are 174 | not real citations in the original text.} 175 | 176 | \begin{enumerate}[{$[$}1{$]$}] 177 | \item Donald E. Knuth. The \TeX book. Addison-Wesley, 1984. ISBN: 0-201-13448-9 178 | \item Paul W. Abrahams, Karl Berry and Kathryn A. Hargreaves. \TeX\ for the 179 | Impatient. Addison-Wesley, 1990. ISBN: 0-201-51375-7 180 | \item David Salomon. The advanced \TeX book. New York : Springer, 1995. ISBN:0-387-94556-3 181 | \end{enumerate} 182 | 183 | \chapter{外文资料的调研阅读报告或书面翻译} 184 | \section{单目标规划} 185 | 北冥有鱼,其名为鲲。鲲之大,不知其几千里也。化而为鸟,其名为鹏。鹏之背,不知其几 186 | 千里也。怒而飞,其翼若垂天之云。是鸟也,海运则将徙于南冥。南冥者,天池也。 187 | \begin{equation}\tag*{(123)} 188 | p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= 189 | \frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} 190 | \end{equation} 191 | 192 | 吾生也有涯,而知也无涯。以有涯随无涯,殆已!已而为知者,殆而已矣!为善无近名,为 193 | 恶无近刑,缘督以为经,可以保身,可以全生,可以养亲,可以尽年。 194 | 195 | \subsection{线性规划} 196 | 庖丁为文惠君解牛,手之所触,肩之所倚,足之所履,膝之所倚,砉然响然,奏刀騞然,莫 197 | 不中音,合于桑林之舞,乃中经首之会。 198 | \begin{table}[ht] 199 | \centering 200 | \centering 201 | \caption*{表~1\hskip1em 这是手动编号但不出现在索引中的一个表格例子} 202 | \label{tab:badtabular3} 203 | \begin{tabular}[c]{|c|m{0.8in}|c|c|c|c|c|}\hline 204 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 205 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 206 | GT-ITM & Waxman Transit-Stub & 600 & 207 | \multirow{2}{2em}{2\%}& 208 | \multirow{2}{2em}{10\%}& 209 | \multirow{2}{2em}{50\%}& 210 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 211 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 212 | \multirow{2}{1in}{Xue} & Rui & Ni &\multicolumn{4}{c|}{\multirow{2}*{\thuthesis}}\\\cline{2-3} 213 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 214 | \end{tabular} 215 | \end{table} 216 | 217 | 文惠君曰:“嘻,善哉!技盖至此乎?”庖丁释刀对曰:“臣之所好者道也,进乎技矣。始臣之 218 | 解牛之时,所见无非全牛者;三年之后,未尝见全牛也;方今之时,臣以神遇而不以目视, 219 | 官知止而神欲行。依乎天理,批大郤,导大窾,因其固然。技经肯綮之未尝,而况大坬乎! 220 | 良庖岁更刀,割也;族庖月更刀,折也;今臣之刀十九年矣,所解数千牛矣,而刀刃若新发 221 | 于硎。彼节者有间而刀刃者无厚,以无厚入有间,恢恢乎其于游刃必有余地矣。是以十九年 222 | 而刀刃若新发于硎。虽然,每至于族,吾见其难为,怵然为戒,视为止,行为迟,动刀甚微, 223 | 謋然已解,如土委地。提刀而立,为之而四顾,为之踌躇满志,善刀而藏之。” 224 | 225 | 文惠君曰:“善哉!吾闻庖丁之言,得养生焉。” 226 | 227 | 228 | \subsection{非线性规划} 229 | 孔子与柳下季为友,柳下季之弟名曰盗跖。盗跖从卒九千人,横行天下,侵暴诸侯。穴室枢 230 | 户,驱人牛马,取人妇女。贪得忘亲,不顾父母兄弟,不祭先祖。所过之邑,大国守城,小 231 | 国入保,万民苦之。孔子谓柳下季曰:“夫为人父者,必能诏其子;为人兄者,必能教其弟。 232 | 若父不能诏其子,兄不能教其弟,则无贵父子兄弟之亲矣。今先生,世之才士也,弟为盗 233 | 跖,为天下害,而弗能教也,丘窃为先生羞之。丘请为先生往说之。” 234 | \begin{figure}[h] 235 | \centering 236 | \includegraphics{hello} 237 | \caption*{图~1\hskip1em 这是手动编号但不出现索引中的图片的例子} 238 | \label{tab:badfigure3} 239 | \end{figure} 240 | 241 | 柳下季曰:“先生言为人父者必能诏其子,为人兄者必能教其弟,若子不听父之诏,弟不受 242 | 兄之教,虽今先生之辩,将奈之何哉?且跖之为人也,心如涌泉,意如飘风,强足以距敌, 243 | 辩足以饰非。顺其心则喜,逆其心则怒,易辱人以言。先生必无往。” 244 | 245 | 孔子不听,颜回为驭,子贡为右,往见盗跖。 246 | 247 | \subsection{整数规划} 248 | 盗跖乃方休卒徒大山之阳,脍人肝而餔之。孔子下车而前,见谒者曰:“鲁人孔丘,闻将军 249 | 高义,敬再拜谒者。”谒者入通。盗跖闻之大怒,目如明星,发上指冠,曰:“此夫鲁国之 250 | 巧伪人孔丘非邪?为我告之:尔作言造语,妄称文、武,冠枝木之冠,带死牛之胁,多辞缪 251 | 说,不耕而食,不织而衣,摇唇鼓舌,擅生是非,以迷天下之主,使天下学士不反其本,妄 252 | 作孝弟,而侥幸于封侯富贵者也。子之罪大极重,疾走归!不然,我将以子肝益昼餔之膳。” 253 | 254 | 255 | \chapter{其它附录} 256 | 前面两个附录主要是给本科生做例子。其它附录的内容可以放到这里,当然如果你愿意,可 257 | 以把这部分也放到独立的文件中,然后将其 \verb|\input| 到主文件中。 -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/chap01.tex: -------------------------------------------------------------------------------- 1 | 2 | %%% Local Variables: 3 | %%% mode: latex 4 | %%% TeX-master: t 5 | %%% End: 6 | 7 | \chapter{带 English 的标题} 8 | \label{cha:intro} 9 | 10 | 这是 \thuthesis{} 的示例文档,基本上覆盖了模板中所有格式的设置。建议大家在使用模 11 | 板之前,除了阅读《\thuthesis{}用户手册》,这个示例文档也最好能看一看。 12 | 13 | 小老鼠偷吃热凉粉;短长虫环绕矮高粱。\footnote{韩愈(768-824),字退之,河南河阳( 14 | 今河南孟县)人,自称郡望昌黎,世称韩昌黎。幼孤贫刻苦好学,德宗贞元八年进士。曾 15 | 任监察御史,因上疏请免关中赋役,贬为阳山县令。后随宰相裴度平定淮西迁刑部侍郎, 16 | 又因上表谏迎佛骨,贬潮州刺史。做过吏部侍郎,死谥文公,故世称韩吏部、韩文公。是 17 | 唐代古文运动领袖,与柳宗元合称韩柳。诗力求险怪新奇,雄浑重气势。} 18 | 19 | 20 | \section{封面相关} 21 | 封面的例子请参看 cover.tex。主要符号表参看 denation.tex,附录和个人简历分别参看 appendix01.tex 22 | 和 resume.tex。里面的命令都非常简单,一看即会。\footnote{你说还是看不懂?怎么会呢?} 23 | 24 | \section{字体命令} 25 | \label{sec:first} 26 | 27 | 苏轼(1037-1101),北宋文学家、书画家。字子瞻,号东坡居士,眉州眉山(今属四川)人 28 | 。苏洵子。嘉佑进士。神宗时曾任祠部员外郎,因反对王安石新法而求外职,任杭州通判, 29 | 知密州、徐州、湖州。后以作诗“谤讪朝廷”罪贬黄州。哲宗时任翰林学士,曾出知杭州、 30 | 颖州等,官至礼部尚书。后又贬谪惠州、儋州。北还后第二年病死常州。南宋时追谥文忠。 31 | 与父洵弟辙,合称“三苏”。在政治上属于旧党,但也有改革弊政的要求。其文汪洋恣肆, 32 | 明白畅达,为“唐宋八大家”之一。 其诗清新豪健,善用夸张比喻,在艺术表现方面独具 33 | 风格。少数诗篇也能反映民间疾苦,指责统治者的奢侈骄纵。词开豪放一派,对后代很有影 34 | 响。《念奴娇·赤壁怀古》、《水调歌头·丙辰中秋》传诵甚广。 35 | 36 | {\kai 坡仙擅长行书、楷书,取法李邕、徐浩、颜真卿、杨凝式,而能自创新意。用笔丰腴 37 | 跌宕,有天真烂漫之趣。与蔡襄、黄庭坚、米芾并称“宋四家”。能画竹,学文同,也喜 38 | 作枯木怪石。论画主张“神似”,认为“论画以形似,见与儿童邻”;高度评价“诗中有 39 | 画,画中有诗”的艺术造诣。诗文有《东坡七集》等。存世书迹有《答谢民师论文帖》、 40 | 《祭黄几道文》、《前赤壁赋》、《黄州寒食诗帖》等。 画迹有《枯木怪石图》、《 41 | 竹石图》等。} 42 | 43 | {\fs 易与天地准,故能弥纶天地之道。仰以观於天文,俯以察於地理,是故知幽明之故。原 44 | 始反终,故知死生之说。精气为物,游魂为变,是故知鬼神之情状。与天地相似,故不违。 45 | 知周乎万物,而道济天下,故不过。旁行而不流,乐天知命,故不忧。安土敦乎仁,故 46 | 能爱。范围天地之化而不过,曲成万物而不遗,通乎昼夜之道而知,故神无方而易无体。} 47 | 48 | {\you 有天地,然后万物生焉。盈天地之间者,唯万物,故受之以屯;屯者盈也,屯者物之 49 | 始生也。物生必蒙,故受之以蒙;蒙者蒙也,物之穉也。物穉不可不养也,故受之以需; 50 | 需者饮食之道也。饮食必有讼,故受之以讼。讼必有众起,故受之以师;师者众也。众必 51 | 有所比,故受之以比;比者比也。比必有所畜也,故受之以小畜。物畜然后有礼,故受之 52 | 以履。} 53 | 54 | {\hei 履而泰,然后安,故受之以泰;泰者通也。物不可以终通,故受之以否。物不可以终 55 | 否,故受之以同人。与人同者,物必归焉,故受之以大有。有大者不可以盈,故受之以谦。 56 | 有大而能谦,必豫,故受之以豫。豫必有随,故受之以随。以喜随人者,必有事,故受 57 | 之以蛊;蛊者事也。} 58 | 59 | {\li 有事而后可大,故受之以临;临者大也。物大然后可观,故受之以观。可观而后有所合 60 | ,故受之以噬嗑;嗑者合也。物不可以苟合而已,故受之以贲;贲者饰也。致饰然后亨 61 | ,则尽矣,故受之以剥;剥者剥也。物不可以终尽,剥穷上反下,故受之以复。复则不 62 | 妄矣,故受之以无妄。} 63 | 64 | {\song 有无妄然后可畜,故受之以大畜。物畜然后可养,故受之以颐;颐者养也。不养则不 65 | 可动,故受之以大过。物不可以终过,故受之以坎;坎者陷也。陷必有所丽,故受之以 66 | 离;离者丽也。} 67 | 68 | \section{表格样本} 69 | \label{chap1:sample:table} 70 | 71 | \subsection{基本表格} 72 | \label{sec:basictable} 73 | 74 | 模板中关于表格的宏包有三个: \textsf{booktabs}、\textsf{array} 和 75 | \textsf{longtabular},命令有一个 \verb|\hlinewd|。三线表可以用 \textsf{booktabs} 76 | 提供的 \verb|\toprule|、\verb|\midrule| 和 \verb|\bottomrule|。它们与 77 | \textsf{longtable} 能很好的配合使用。如果表格比较简单的话可以直接用命令 78 | \verb|hlinewd{xpt}| 控制。 79 | \begin{table}[htb] 80 | \centering 81 | \begin{minipage}[t]{0.8\linewidth} % 如果想在表格中使用脚注,minipage是个不错的办法 82 | \caption[模板文件]{模板文件。如果表格的标题很长,那么在表格索引中就会很不美 83 | 观,所以要像 chapter 那样在前面用中括号写一个简短的标题。这个标题会出现在索 84 | 引中。} 85 | \label{tab:template-files} 86 | \begin{tabular*}{\linewidth}{lp{10cm}} 87 | \toprule[1.5pt] 88 | {\hei 文件名} & {\hei 描述} \\\midrule[1pt] 89 | thuthesis.ins & \LaTeX{} 安装文件,docstrip\footnote{表格中的脚注} \\ 90 | thuthesis.dtx & 所有的一切都在这里面\footnote{再来一个}。\\ 91 | thuthesis.cls & 模板类文件。\\ 92 | thuthesis.cfg & 模板配置文。cls 和 cfg 由前两个文件生成。\\ 93 | thubib.bst & 参考文献 Bibtex 样式文件。\\ 94 | thutils.sty & 常用的包和命令写在这里,减轻主文件的负担。\\ 95 | \bottomrule[1.5pt] 96 | \end{tabular*} 97 | \end{minipage} 98 | \end{table} 99 | 100 | 首先来看一个最简单的表格。表 \ref{tab:template-files} 列举了本模板主要文件及其功 101 | 能。请大家注意三线表中各条线对应的命令。这个例子还展示了如何在表格中正确使用脚注。 102 | 由于 \LaTeX{} 本身不支持在表格中使用 \verb|\footnote|,所以我们不得不将表格放在 103 | 小页中,而且最好将表格的宽度设置为小页的宽度,这样脚注看起来才更美观。 104 | 105 | \subsection{复杂表格} 106 | \label{sec:complicatedtable} 107 | 108 | 我们经常会在表格下方标注数据来源,或者对表格里面的条目进行解释。前面的脚注是一种 109 | 不错的方法,如果你不喜欢脚注。那么完全可以在表格后面自己写注释,比如表~\ref{tab:tabexamp1}。 110 | \begin{table}[h] 111 | \centering 112 | \caption{复杂表格示例 1} 113 | \label{tab:tabexamp1} 114 | \begin{minipage}[t]{0.8\textwidth} 115 | \begin{tabularx}{\linewidth}{|l|X|X|X|X|} 116 | \hline 117 | \multirow{2}*{\backslashbox{x}{y}} & \multicolumn{2}{c|}{First Half} & \multicolumn{2}{c|}{Second Half}\\\cline{2-5} 118 | & 1st Qtr &2nd Qtr&3rd Qtr&4th Qtr \\ \hline 119 | East$^{*}$ & 20.4& 27.4& 90& 20.4 \\ 120 | West$^{**}$ & 30.6 & 38.6 & 34.6 & 31.6 \\ \hline 121 | \end{tabularx}\\[2pt] 122 | \footnotesize 注:数据来源《\thuthesis{} 使用手册》。\\ 123 | *:东部\\ 124 | **:西部 125 | \end{minipage} 126 | \end{table} 127 | 128 | 此外,表~\ref{tab:tabexamp1} 同时还演示了另外两个功能:1)通过 \textsf{tabularx} 的 129 | \texttt{|X|} 扩展实现表格自动放大;2)通过命令 \verb|\backslashbox| 在表头部分 130 | 插入反斜线。 131 | 132 | 为了使我们的例子更接近实际情况,我会在必要的时候插入一些“无关”文字,以免太多图 133 | 表同时出现,导致排版效果不太理想。第一个出场的当然是我的最爱:风流潇洒、骏马绝尘、 134 | 健笔凌云的{\hei 李太白}了。 135 | 136 | 李白,字太白,陇西成纪人。凉武昭王暠九世孙。或曰山东人,或曰蜀人。白少有逸才,志 137 | 气宏放,飘然有超世之心。初隐岷山,益州长史苏颋见而异之,曰:“是子天才英特,可比 138 | 相如。”天宝初,至长安,往见贺知章。知章见其文,叹曰:“子谪仙人也。”言于明皇, 139 | 召见金銮殿,奏颂一篇。帝赐食,亲为调羹,有诏供奉翰林。白犹与酒徒饮于市,帝坐沉香 140 | 亭子,意有所感,欲得白为乐章,召入,而白已醉。左右以水颒面,稍解,援笔成文,婉丽 141 | 精切。帝爱其才,数宴见。白常侍帝,醉,使高力士脱靴。力士素贵,耻之,摘其诗以激杨 142 | 贵妃。帝欲官白,妃辄沮止。白自知不为亲近所容,恳求还山。帝赐金放还。乃浪迹江湖, 143 | 终日沉饮。永王璘都督江陵,辟为僚佐。璘谋乱,兵败,白坐长流夜郎,会赦得还。族人阳 144 | 冰为当涂令,白往依之。代宗立,以左拾遗召,而白已卒。文宗时,诏以白歌诗、裴旻剑舞、 145 | 张旭草书为三绝云。集三十卷。今编诗二十五卷。\hfill\pozhehao《全唐诗》诗人小传 146 | 147 | 浮动体的并排放置一般有两种情况:1)二者没有关系,为两个独立的浮动体;2)二者隶属 148 | 于同一个浮动体。对表格来说并排表格既可以像图~\ref{tab:parallel1}、图~\ref{tab:parallel2} 149 | 使用小页环境,也可以如图~\ref{tab:subtable} 使用子表格来做。图的例子参见第~\ref{sec:multifig} 节。 150 | \begin{table}[h] 151 | \noindent\begin{minipage}{0.5\textwidth} 152 | \centering 153 | \caption{第一个并排子表格} 154 | \label{tab:parallel1} 155 | \begin{tabular}{p{2cm}p{2cm}} 156 | \toprule[1.5pt] 157 | 111 & 222 \\\midrule[1pt] 158 | 222 & 333 \\\bottomrule[1.5pt] 159 | \end{tabular} 160 | \end{minipage} 161 | \begin{minipage}{0.5\textwidth} 162 | \centering 163 | \caption{第二个并排子表格} 164 | \label{tab:parallel2} 165 | \begin{tabular}{p{2cm}p{2cm}} 166 | \toprule[1.5pt] 167 | 111 & 222 \\\midrule[1pt] 168 | 222 & 333 \\\bottomrule[1.5pt] 169 | \end{tabular} 170 | \end{minipage} 171 | \end{table} 172 | 173 | 然后就是忧国忧民,诗家楷模杜工部了。杜甫,字子美,其先襄阳人,曾祖依艺为巩令,因 174 | 居巩。甫天宝初应进士,不第。后献《三大礼赋》,明皇奇之,召试文章,授京兆府兵曹参 175 | 军。安禄山陷京师,肃宗即位灵武,甫自贼中遁赴行在,拜左拾遗。以论救房琯,出为华州 176 | 司功参军。关辅饥乱,寓居同州同谷县,身自负薪采梠,餔糒不给。久之,召补京兆府功曹, 177 | 道阻不赴。严武镇成都,奏为参谋、检校工部员外郎,赐绯。武与甫世旧,待遇甚厚。乃于 178 | 成都浣花里种竹植树,枕江结庐,纵酒啸歌其中。武卒,甫无所依,乃之东蜀就高適。既至 179 | 而適卒。是岁,蜀帅相攻杀,蜀大扰。甫携家避乱荆楚,扁舟下峡,未维舟而江陵亦乱。乃 180 | 溯沿湘流,游衡山,寓居耒阳。卒年五十九。元和中,归葬偃师首阳山,元稹志其墓。天宝 181 | 间,甫与李白齐名,时称李杜。然元稹之言曰:“李白壮浪纵恣,摆去拘束,诚亦差肩子美 182 | 矣。至若铺陈终始,排比声韵,大或千言,次犹数百,词气豪迈,而风调清深,属对律切, 183 | 而脱弃凡近,则李尚不能历其藩翰,况堂奥乎。”白居易亦云:“杜诗贯穿古今, 尽工尽 184 | 善,殆过于李。”元、白之论如此。盖其出处劳佚,喜乐悲愤,好贤恶恶,一见之于诗。而 185 | 又以忠君忧国、伤时念乱为本旨。读其诗可以知其世,故当时谓之“诗史”。旧集诗文共六 186 | 十卷,今编诗十九卷。 187 | 188 | \begin{table} 189 | \centering 190 | \caption{并排子表格} 191 | \label{tab:subtable} 192 | \subfloat[第一个子表格]{ 193 | \begin{tabular}{p{2cm}p{2cm}} 194 | \toprule[1.5pt] 195 | 111 & 222 \\\midrule[1pt] 196 | 222 & 333 \\\bottomrule[1.5pt] 197 | \end{tabular}}\hskip2cm 198 | \subfloat[第二个子表格]{ 199 | \begin{tabular}{p{2cm}p{2cm}} 200 | \toprule[1.5pt] 201 | 111 & 222 \\\midrule[1pt] 202 | 222 & 333 \\\bottomrule[1.5pt] 203 | \end{tabular}} 204 | \end{table} 205 | 206 | 不可否认 \LaTeX{} 的表格功能没有想象中的那么强大,不过只要你足够认真,足够细致,那么 207 | 同样可以排出来非常复杂非常漂亮的表格。请参看表~\ref{tab:tabexamp2}。 208 | \begin{table}[hb] 209 | \centering\dawu[1.3] 210 | \caption{复杂表格示例 2} 211 | \label{tab:tabexamp2} 212 | \begin{tabular}[c]{|c|m{0.8in}|c|c|c|c|c|}\hline 213 | \multicolumn{2}{|c|}{Network Topology} & \# of nodes & 214 | \multicolumn{3}{c|}{\# of clients} & Server \\\hline 215 | GT-ITM & Waxman Transit-Stub & 600 & 216 | \multirow{2}{2em}{2\%}& 217 | \multirow{2}{2em}{10\%}& 218 | \multirow{2}{2em}{50\%}& 219 | \multirow{2}{1.2in}{Max. Connectivity}\\\cline{1-3} 220 | \multicolumn{2}{|c|}{Inet-2.1} & 6000 & & & &\\\hline 221 | \multirow{2}{1in}{Xue} & Rui & Ni &\multicolumn{4}{c|}{\multirow{2}*{\thuthesis}}\\\cline{2-3} 222 | & \multicolumn{2}{c|}{ABCDEF} &\multicolumn{4}{c|}{} \\\hline 223 | \end{tabular} 224 | \end{table} 225 | 226 | 最后就是清新飘逸、文约意赅、空谷绝响的王大侠了。王维,字摩诘,河东人。工书画,与 227 | 弟缙俱有俊才。开元九年,进士擢第,调太乐丞。坐累为济州司仓参军,历右拾遗、监察御 228 | 史、左补阙、库部郎中,拜吏部郎中。天宝末,为给事中。安禄山陷两都,维为贼所得,服 229 | 药阳喑,拘于菩提寺。禄山宴凝碧池,维潜赋诗悲悼,闻于行在。贼平,陷贼官三等定罪, 230 | 特原之,责授太子中允,迁中庶子、中书舍人。复拜给事中,转尚书右丞。维以诗名盛于开 231 | 元、天宝间,宁薛诸王驸马豪贵之门,无不拂席迎之。得宋之问辋川别墅,山水绝胜,与道 232 | 友裴迪,浮舟往来,弹琴赋诗,啸咏终日。笃于奉佛,晚年长斋禅诵。一日,忽索笔作书 233 | 数纸,别弟缙及平生亲故,舍笔而卒。赠秘书监。宝应中,代宗问缙:“朕常于诸王坐闻维 234 | 乐章,今存几何?”缙集诗六卷,文四卷,表上之。敕答云,卿伯氏位列先朝,名高希代。 235 | 抗行周雅,长揖楚辞。诗家者流,时论归美。克成编录,叹息良深。殷璠谓维诗词秀调雅, 236 | 意新理惬。在泉成珠,著壁成绘。苏轼亦云:“维诗中有画,画中有诗也。”今编诗四卷。 237 | 238 | 要想用好论文模板还是得提前学习一些 \TeX/\LaTeX{}的相关知识,具备一些基本能力,掌 239 | 握一些常见技巧,否则一旦遇到问题还真是比较麻烦。我们见过很多这样的同学,一直以来 240 | 都是使用 Word 等字处理工具,以为 \LaTeX{}模板的用法也应该类似,所以就沿袭同样的思 241 | 路来对待这种所见非所得的排版工具,结果被折腾的焦头烂额,疲惫不堪。 242 | 243 | 如果您要排版的表格长度超过一页,那么推荐使用 \textsf{longtable} 或者 \textsf{supertabular} 244 | 宏包,模板对 \textsf{longtable} 进行了相应的设置,所以用起来可能简单一些。 245 | 表~\ref{tab:performance} 就是 \textsf{longtable} 的简单示例。 246 | \begin{longtable}[c]{c*{6}{r}} 247 | \caption{实验数据}\label{tab:performance}\\ 248 | \toprule[1.5pt] 249 | 测试程序 & \multicolumn{1}{c}{正常运行} & \multicolumn{1}{c}{同步} & \multicolumn{1}{c}{检查点} & \multicolumn{1}{c}{卷回恢复} 250 | & \multicolumn{1}{c}{进程迁移} & \multicolumn{1}{c}{检查点} \\ 251 | & \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{时间 (s)}& 252 | \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{ 253 | 时间 (s)}& 文件(KB)\\\midrule[1pt] 254 | \endfirsthead 255 | \multicolumn{7}{c}{续表~\thetable\hskip1em 实验数据}\\ 256 | \toprule[1.5pt] 257 | 测试程序 & \multicolumn{1}{c}{正常运行} & \multicolumn{1}{c}{同步} & \multicolumn{1}{c}{检查点} & \multicolumn{1}{c}{卷回恢复} 258 | & \multicolumn{1}{c}{进程迁移} & \multicolumn{1}{c}{检查点} \\ 259 | & \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{时间 (s)}& 260 | \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{时间 (s)}& \multicolumn{1}{c}{ 261 | 时间 (s)}& 文件(KB)\\\midrule[1pt] 262 | \endhead 263 | \hline 264 | \multicolumn{7}{r}{续下页} 265 | \endfoot 266 | \endlastfoot 267 | CG.A.2 & 23.05 & 0.002 & 0.116 & 0.035 & 0.589 & 32491 \\ 268 | CG.A.4 & 15.06 & 0.003 & 0.067 & 0.021 & 0.351 & 18211 \\ 269 | CG.A.8 & 13.38 & 0.004 & 0.072 & 0.023 & 0.210 & 9890 \\ 270 | CG.B.2 & 867.45 & 0.002 & 0.864 & 0.232 & 3.256 & 228562 \\ 271 | CG.B.4 & 501.61 & 0.003 & 0.438 & 0.136 & 2.075 & 123862 \\ 272 | CG.B.8 & 384.65 & 0.004 & 0.457 & 0.108 & 1.235 & 63777 \\ 273 | MG.A.2 & 112.27 & 0.002 & 0.846 & 0.237 & 3.930 & 236473 \\ 274 | MG.A.4 & 59.84 & 0.003 & 0.442 & 0.128 & 2.070 & 123875 \\ 275 | MG.A.8 & 31.38 & 0.003 & 0.476 & 0.114 & 1.041 & 60627 \\ 276 | MG.B.2 & 526.28 & 0.002 & 0.821 & 0.238 & 4.176 & 236635 \\ 277 | MG.B.4 & 280.11 & 0.003 & 0.432 & 0.130 & 1.706 & 123793 \\ 278 | MG.B.8 & 148.29 & 0.003 & 0.442 & 0.116 & 0.893 & 60600 \\ 279 | LU.A.2 & 2116.54 & 0.002 & 0.110 & 0.030 & 0.532 & 28754 \\ 280 | LU.A.4 & 1102.50 & 0.002 & 0.069 & 0.017 & 0.255 & 14915 \\ 281 | LU.A.8 & 574.47 & 0.003 & 0.067 & 0.016 & 0.192 & 8655 \\ 282 | LU.B.2 & 9712.87 & 0.002 & 0.357 & 0.104 & 1.734 & 101975 \\ 283 | LU.B.4 & 4757.80 & 0.003 & 0.190 & 0.056 & 0.808 & 53522 \\ 284 | LU.B.8 & 2444.05 & 0.004 & 0.222 & 0.057 & 0.548 & 30134 \\ 285 | EP.A.2 & 123.81 & 0.002 & 0.010 & 0.003 & 0.074 & 1834 \\ 286 | EP.A.4 & 61.92 & 0.003 & 0.011 & 0.004 & 0.073 & 1743 \\ 287 | EP.A.8 & 31.06 & 0.004 & 0.017 & 0.005 & 0.073 & 1661 \\ 288 | EP.B.2 & 495.49 & 0.001 & 0.009 & 0.003 & 0.196 & 2011 \\ 289 | EP.B.4 & 247.69 & 0.002 & 0.012 & 0.004 & 0.122 & 1663 \\ 290 | EP.B.8 & 126.74 & 0.003 & 0.017 & 0.005 & 0.083 & 1656 \\ 291 | \bottomrule[1.5pt] 292 | \end{longtable} 293 | 294 | \subsection{其它} 295 | \label{sec:tableother} 296 | 有的同学不想让某个表格或者图片出现在索引里面,那么请使用命令 \verb|\caption*{}|, 297 | 这个命令不会给表格编号,也就是出来的只有标题文字而没有“表~XX”,“图~XX”,否则 298 | 索引里面序号不连续就显得不伦不类,这也是 \LaTeX{} 里星号命令默认的规则。 299 | 300 | 有这种需求的多是本科同学的英文资料翻译部分,如果你觉得附录中英文原文中的表格和图 301 | 片显示成“ 表”和“图”很不协调的话,一个很好的办法就是用 \verb|\caption*|,参数 302 | 随便自己写,比如不守规矩的表~1.111 和图~1.111 能满足这种特殊需要(可以参看附录部 303 | 分)。 304 | \begin{table}[ht] 305 | \centering 306 | \begin{minipage}{0.45\linewidth} 307 | \centering 308 | \caption*{表~1.111\hskip1em 这是一个手动编号,不出现在索引中的表格。} 309 | \label{tab:badtabular} 310 | \begin{picture}(150,50) 311 | \framebox(150,50)[c]{\thuthesis} 312 | \end{picture} 313 | \end{minipage}\hfill 314 | \begin{minipage}{0.45\linewidth} 315 | \centering 316 | \begin{picture}(150,50) 317 | \framebox(150,50)[c]{薛瑞尼} 318 | \end{picture} 319 | \caption*{Figure~1.111\hskip1em 这是一个手动编号,不出现在索引中的图。} 320 | \label{tab:badfigure} 321 | \end{minipage} 322 | \end{table} 323 | 324 | 如果你的确想让它编号,但又不想让它出现在索引中的话,那就自己看看代码改一改吧,我 325 | 目前不打算给模板增加这种另类命令。 326 | 327 | 最后,虽然大家不一定会独立使用小页,但是关于小页中的脚注还是有必要提一下。请看下 328 | 面的例子。 329 | 330 | \begin{minipage}[t]{\linewidth-2\parindent} 331 | 柳宗元,字子厚(773-819),河东(今永济县)人\footnote{山西永济水饺。},是唐代 332 | 杰出的文学家,哲学家,同时也是一位政治改革家。与韩愈共同倡导唐代古文运动,并称 333 | 韩柳\footnote{唐宋八大家之首二位。}。 334 | \end{minipage}\\[-5pt] 335 | 336 | 唐朝安史之乱后,宦官专权,藩镇割据,土地兼并日渐严重,社会生产破坏严重,民不聊生。柳宗 337 | 元对这种社会现实极为不满,他积极参加了王叔文领导的“永济革新”,并成为这一 338 | 运动的中坚人物。他们革除弊政,打击权奸,触犯了宦官和官僚贵族利益,在他们的联合反 339 | 扑下,改革失败了,柳宗元被贬为永州司马。 340 | 341 | \section{定理环境} 342 | \label{sec:theorem} 343 | 344 | 给大家演示一下各种和证明有关的环境: 345 | 346 | \begin{assumption} 347 | 待月西厢下,迎风户半开;隔墙花影动,疑是玉人来。 348 | \begin{eqnarray} 349 | \label{eq:eqnxmp} 350 | c & = & a^2 - b^2\\ 351 | & = & (a+b)(a-b) 352 | \end{eqnarray} 353 | \end{assumption} 354 | 355 | 千辛万苦,历尽艰难,得有今日。然相从数千里,未曾哀戚。今将渡江,方图百年欢笑,如 356 | 何反起悲伤?(引自《杜十娘怒沉百宝箱》) 357 | 358 | \begin{definition} 359 | 子曰:「道千乘之国,敬事而信,节用而爱人,使民以时。」 360 | \end{definition} 361 | 362 | 千古第一定义!问世间、情为何物,只教生死相许?天南地北双飞客,老翅几回寒暑。欢乐趣,离别苦,就中更有痴儿女。 363 | 君应有语,渺万里层云,千山暮雪,只影向谁去? 364 | 365 | 横汾路,寂寞当年箫鼓,荒烟依旧平楚。招魂楚些何嗟及,山鬼暗谛风雨。天也妒,未信与,莺儿燕子俱黄土。 366 | 千秋万古,为留待骚人,狂歌痛饮,来访雁丘处。 367 | 368 | \begin{proposition} 369 | 曾子曰:「吾日三省吾身 \pozhehao 为人谋而不忠乎?与朋友交而不信乎?传不习乎?」 370 | \end{proposition} 371 | 372 | 多么凄美的命题啊!其日牛马嘶,新妇入青庐,奄奄黄昏后,寂寂人定初,我命绝今日, 373 | 魂去尸长留,揽裙脱丝履,举身赴清池,府吏闻此事,心知长别离,徘徊庭树下,自挂东南 374 | 枝。 375 | 376 | \begin{remark} 377 | 天不言自高,水不言自流。 378 | \begin{gather*} 379 | \begin{split} 380 | \varphi(x,z) 381 | &=z-\gamma_{10}x-\gamma_{mn}x^mz^n\\ 382 | &=z-Mr^{-1}x-Mr^{-(m+n)}x^mz^n 383 | \end{split}\\[6pt] 384 | \begin{align} \zeta^0&=(\xi^0)^2,\\ 385 | \zeta^1 &=\xi^0\xi^1,\\ 386 | \zeta^2 &=(\xi^1)^2, 387 | \end{align} 388 | \end{gather*} 389 | \end{remark} 390 | 391 | 天尊地卑,乾坤定矣。卑高以陈,贵贱位矣。 动静有常,刚柔断矣。方以类聚,物以群分, 392 | 吉凶生矣。在天成象,在地成形,变化见矣。鼓之以雷霆,润之以风雨,日月运行,一寒一 393 | 暑,乾道成男,坤道成女。乾知大始,坤作成物。乾以易知,坤以简能。易则易知,简则易 394 | 从。易知则有亲,易从则有功。有亲则可久,有功则可大。可久则贤人之德,可大则贤人之 395 | 业。易简,而天下矣之理矣;天下之理得,而成位乎其中矣。 396 | 397 | \begin{axiom} 398 | 两点间直线段距离最短。 399 | \begin{align} 400 | x&\equiv y+1\pmod{m^2}\\ 401 | x&\equiv y+1\mod{m^2}\\ 402 | x&\equiv y+1\pod{m^2} 403 | \end{align} 404 | \end{axiom} 405 | 406 | 《彖曰》:大哉乾元,万物资始,乃统天。云行雨施,品物流形。大明始终,六位时成,时 407 | 乘六龙以御天。乾道变化,各正性命,保合大和,乃利贞。首出庶物,万国咸宁。 408 | 409 | 《象曰》:天行健,君子以自强不息。潜龙勿用,阳在下也。见龙再田,德施普也。终日乾 410 | 乾,反复道也。或跃在渊,进无咎也。飞龙在天,大人造也。亢龙有悔,盈不可久也。用九, 411 | 天德不可为首也。    412 | 413 | \begin{lemma} 414 | 《猫和老鼠》是我最爱看的动画片。 415 | \begin{multline*}%\tag*{[a]} % 这个不出现在索引中 416 | \int_a^b\biggl\{\int_a^b[f(x)^2g(y)^2+f(y)^2g(x)^2] 417 | -2f(x)g(x)f(y)g(y)\,dx\biggr\}\,dy \\ 418 | =\int_a^b\biggl\{g(y)^2\int_a^bf^2+f(y)^2 419 | \int_a^b g^2-2f(y)g(y)\int_a^b fg\biggr\}\,dy 420 | \end{multline*} 421 | \end{lemma} 422 | 423 | 行行重行行,与君生别离。相去万余里,各在天一涯。道路阻且长,会面安可知。胡马依北 424 | 风,越鸟巢南枝。相去日已远,衣带日已缓。浮云蔽白日,游子不顾返。思君令人老,岁月 425 | 忽已晚。 弃捐勿复道,努力加餐饭。 426 | 427 | \begin{theorem}\label{the:theorem1} 428 | 犯我强汉者,虽远必诛\hfill \pozhehao 陈汤(汉) 429 | \end{theorem} 430 | \begin{subequations} 431 | \begin{align} 432 | y & = 1 \\ 433 | y & = 0 434 | \end{align} 435 | \end{subequations} 436 | 道可道,非常道。名可名,非常名。无名天地之始;有名万物之母。故常无,欲以观其妙; 437 | 常有,欲以观其徼。此两者,同出而异名,同谓之玄。玄之又玄,众妙之门。上善若水。水 438 | 善利万物而不争,处众人之所恶,故几于道。曲则全,枉则直,洼则盈,敝则新,少则多, 439 | 多则惑。人法地,地法天,天法道,道法自然。知人者智,自知者明。胜人者有力,自胜 440 | 者强。知足者富。强行者有志。不失其所者久。死而不亡者寿。 441 | 442 | \begin{proof} 443 | 燕赵古称多感慨悲歌之士。董生举进士,连不得志于有司,怀抱利器,郁郁适兹土,吾 444 | 知其必有合也。董生勉乎哉? 445 | 446 | 夫以子之不遇时,苟慕义强仁者,皆爱惜焉,矧燕、赵之士出乎其性者哉!然吾尝闻 447 | 风俗与化移易,吾恶知其今不异于古所云邪?聊以吾子之行卜之也。董生勉乎哉? 448 | 449 | 吾因子有所感矣。为我吊望诸君之墓,而观于其市,复有昔时屠狗者乎?为我谢 450 | 曰:“明天子在上,可以出而仕矣!” \hfill\pozhehao 韩愈《送董邵南序》 451 | \end{proof} 452 | 453 | \begin{corollary} 454 | 四川话配音的《猫和老鼠》是世界上最好看最好听最有趣的动画片。 455 | \begin{alignat}{3} 456 | V_i & =v_i - q_i v_j, & \qquad X_i & = x_i - q_i x_j, 457 | & \qquad U_i & = u_i, 458 | \qquad \text{for $i\ne j$;}\label{eq:B}\\ 459 | V_j & = v_j, & \qquad X_j & = x_j, 460 | & \qquad U_j & u_j + \sum_{i\ne j} q_i u_i. 461 | \end{alignat} 462 | \end{corollary} 463 | 464 | 迢迢牵牛星,皎皎河汉女。 465 | 纤纤擢素手,札札弄机杼。 466 | 终日不成章,泣涕零如雨。 467 | 河汉清且浅,相去复几许。 468 | 盈盈一水间,脉脉不得语。 469 | 470 | \begin{example} 471 | 大家来看这个例子。 472 | \begin{equation} 473 | \label{ktc} 474 | \left\{\begin{array}{l} 475 | \nabla f({\mbox{\boldmath $x$}}^*)-\sum\limits_{j=1}^p\lambda_j\nabla g_j({\mbox{\boldmath $x$}}^*)=0\\[0.3cm] 476 | \lambda_jg_j({\mbox{\boldmath $x$}}^*)=0,\quad j=1,2,\cdots,p\\[0.2cm] 477 | \lambda_j\ge 0,\quad j=1,2,\cdots,p. 478 | \end{array}\right. 479 | \end{equation} 480 | \end{example} 481 | 482 | \begin{exercise} 483 | 清列出 Andrew S. Tanenbaum 和 W. Richard Stevens 的所有著作。 484 | \end{exercise} 485 | 486 | \begin{conjecture} \textit{Poincare Conjecture} If in a closed three-dimensional 487 | space, any closed curves can shrink to a point continuously, this space can be 488 | deformed to a sphere. 489 | \end{conjecture} 490 | 491 | \begin{problem} 492 | 回答还是不回答,是个问题。 493 | \end{problem} 494 | 495 | 如何引用定理~\ref{the:theorem1} 呢?加上 \verb|label| 使用 \verb|ref| 即可。妾发 496 | 初覆额,折花门前剧。郎骑竹马来,绕床弄青梅。同居长干里,两小无嫌猜。 十四为君妇, 497 | 羞颜未尝开。低头向暗壁,千唤不一回。十五始展眉,愿同尘与灰。常存抱柱信,岂上望夫 498 | 台。 十六君远行,瞿塘滟滪堆。五月不可触,猿声天上哀。门前迟行迹,一一生绿苔。苔深 499 | 不能扫,落叶秋风早。八月蝴蝶来,双飞西园草。感此伤妾心,坐愁红颜老。 500 | 501 | \section{参考文献} 502 | \label{sec:bib} 503 | 当然参考文献可以直接写 bibitem,虽然费点功夫,但是好控制,各种格式可以自己随意改 504 | 写。 505 | 506 | 本模板推荐使用 BIB\TeX,样式文件为 thubib.bst,基本符合学校的参考文献格式(如专利 507 | 等引用未加详细测试)。看看这个例子,关于书的\cite{tex, companion, ColdSources}, 508 | 还有这些\cite{Krasnogor2004e, clzs, zjsw},关于杂志的\cite{ELIDRISSI94, 509 | MELLINGER96, SHELL02},硕士论文\cite{zhubajie, metamori2004},博士论文 510 | \cite{shaheshang, FistSystem01},标准文件\cite{IEEE-1363},会议论文\cite{DPMG,kocher99},技术报告\cite{NPB2}。中文参 511 | 考文献\cite{cnarticle}应增加 \texttt{lang=``zh''} 字段,以便进行相应处理。另 512 | 外,这个 bst 对中文文献\cite{cnproceed}的支持并不是十全十美,如果有不如意的地方, 513 | 请手动修改 bbl 文件。 514 | 515 | 有时候不想要上标,那么可以这样 \onlinecite{shaheshang},这个非常重要。 516 | 517 | \section{公式} 518 | \label{sec:equation} 519 | 贝叶斯公式如式~(\ref{equ:chap1:bayes}),其中 $p(y|\mathbf{x})$ 为后验; 520 | $p(\mathbf{x})$ 为先验;分母 $p(\mathbf{x})$ 为归一化因子。 521 | \begin{equation} 522 | \label{equ:chap1:bayes} 523 | p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= 524 | \frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} 525 | \end{equation} 526 | 527 | 论文里面公式越多,\TeX{} 就越 happy。再看一个 \textsf{amsmath} 的例子: 528 | \newcommand{\envert}[1]{\left\lvert#1\right\rvert} 529 | \begin{equation}\label{detK2} 530 | \det\mathbf{K}(t=1,t_1,\dots,t_n)=\sum_{I\in\mathbf{n}}(-1)^{\envert{I}} 531 | \prod_{i\in I}t_i\prod_{j\in I}(D_j+\lambda_jt_j)\det\mathbf{A} 532 | ^{(\lambda)}(\overline{I}|\overline{I})=0. 533 | \end{equation} 534 | 535 | 前面定理示例部分列举了很多公式环境,可以说把常见的情况都覆盖了,大家在写公式的时 536 | 候一定要好好看 \textsf{amsmath} 的文档,并参考模板中的用法: 537 | \begin{multline*}%\tag{[b]} % 这个出现在索引中的 538 | \int_a^b\biggl\{\int_a^b[f(x)^2g(y)^2+f(y)^2g(x)^2] 539 | -2f(x)g(x)f(y)g(y)\,dx\biggr\}\,dy \\ 540 | =\int_a^b\biggl\{g(y)^2\int_a^bf^2+f(y)^2 541 | \int_a^b g^2-2f(y)g(y)\int_a^b fg\biggr\}\,dy 542 | \end{multline*} 543 | 544 | 其实还可以看看这个多级规划: 545 | \begin{equation}\label{bilevel} 546 | \left\{\begin{array}{l} 547 | \max\limits_{{\mbox{\footnotesize\boldmath $x$}}} F(x,y_1^*,y_2^*,\cdots,y_m^*)\\[0.2cm] 548 | \mbox{subject to:}\\[0.1cm] 549 | \qquad G(x)\le 0\\[0.1cm] 550 | \qquad(y_1^*,y_2^*,\cdots,y_m^*)\mbox{ solves problems }(i=1,2,\cdots,m)\\[0.1cm] 551 | \qquad\left\{\begin{array}{l} 552 | \max\limits_{{\mbox{\footnotesize\boldmath $y_i$}}}f_i(x,y_1,y_2,\cdots,y_m)\\[0.2cm] 553 | \mbox{subject to:}\\[0.1cm] 554 | \qquad g_i(x,y_1,y_2,\cdots,y_m)\le 0. 555 | \end{array}\right. 556 | \end{array}\right. 557 | \end{equation} 558 | 这些跟规划相关的公式都来自于刘宝碇老师《不确定规划》的课件。 559 | 560 | \section{破折号} 561 | \label{sec:pozhehao} 562 | 563 | 中文破折号为一个两个字宽垂直居中的直线,输入法直接得到的破折号是两个断开的小短线 564 | (——),这看起来不舒服。所以我定义了一个破折号的命令 \verb|\pozhehao|,请看几个 565 | 例子: 566 | \begin{itemize} 567 | \item 这是一个 \pozhehao 破折号 568 | \begin{enumerate}[(1)] 569 | \item 同时也可以看看 570 | \item 不同列表环境的间距 571 | \end{enumerate} 572 | \item 看起来这个要好一些 573 | \item 破折号 \pozhehao 就说到这里。 574 | \end{itemize} 575 | 576 | 默认的列表环境上下间距很大,模板将其重定义为 \textsf{paralist} 中的压缩环境,看起 577 | 来要好一些。如果还是不满意,自己也可以调 \verb|\itemsep| 的。\textsf{paralist} 还 578 | 可以方便的指定标签的样式。 579 | 580 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/chap02.tex: -------------------------------------------------------------------------------- 1 | 2 | %%% Local Variables: 3 | %%% mode: latex 4 | %%% TeX-master: t 5 | %%% End: 6 | 7 | \chapter{中华人民共和国} 8 | \label{cha:china} 9 | 10 | \section{其它例子} 11 | \label{sec:other} 12 | 13 | 在第~\ref{cha:intro} 章中我们学习了贝叶斯公式~(\ref{equ:chap1:bayes}),这里我们复 14 | 习一下: 15 | \begin{equation} 16 | \label{equ:chap2:bayes} 17 | p(y|\mathbf{x}) = \frac{p(\mathbf{x},y)}{p(\mathbf{x})}= 18 | \frac{p(\mathbf{x}|y)p(y)}{p(\mathbf{x})} 19 | \end{equation} 20 | 21 | \subsection{绘图} 22 | \label{sec:draw} 23 | 24 | 本模板不再预先装载任何绘图包(如 \textsf{pstricks,pgf} 等),完全由你自己来决定。 25 | 个人觉得 \textsf{pgf} 不错,不依赖于 Postscript。此外还有很多针对 \LaTeX{} 的 26 | GUI 作图工具,如 XFig(jFig), WinFig, Tpx, Ipe, Dia, Inkscape, LaTeXPiX, 27 | jPicEdt, jaxdraw 等等。 28 | 29 | \subsection{插图} 30 | \label{sec:graphs} 31 | 32 | 强烈推荐《\LaTeXe 插图指南》!关于子图形的使用细节请参看 \textsf{subfig} 的说明文档。 33 | 34 | \subsubsection{一个图形} 35 | \label{sec:onefig} 36 | 一般图形都是处在浮动环境中。之所以称为浮动是指最终排版效果图形的位置不一定与源文 37 | 件中的位置对应\footnote{This is not a bug, but a feature of \LaTeX!},这也是刚使 38 | 用 \LaTeX{} 同学可能遇到的问题。如果要强制固定浮动图形的位置,请使用 \textsf{float} 宏包, 39 | 它提供了 \texttt{[H]} 参数,比如图~\ref{fig:xfig1}。 40 | \begin{figure}[H] % use float package if you want it here 41 | \centering 42 | \includegraphics{hello} 43 | \caption{利用 Xfig 制图} 44 | \label{fig:xfig1} 45 | \end{figure} 46 | 47 | 大学之道,在明明德,在亲民,在止于至善。知止而后有定;定而后能静;静而后能安;安 48 | 而后能虑;虑而后能得。物有本末,事有终始。知所先后,则近道矣。古之欲明明德于天 49 | 下者,先治其国;欲治其国者,先齐其家;欲齐其家者,先修其身;欲修其身者,先正其心; 50 | 欲正其心者,先诚其意;欲诚其意者,先致其知;致知在格物。物格而后知至;知至而后 51 | 意诚;意诚而后心正;心正而后身 修;身修而后家齐;家齐而后国治;国治而后天下 52 | 平。自天子以至于庶人,壹是皆以修身为本。其本乱而未治者 否矣。其所厚者薄,而其所 53 | 薄者厚,未之有也! 54 | 55 | \hfill \pozhehao《大学》 56 | 57 | 58 | \subsubsection{多个图形} 59 | \label{sec:multifig} 60 | 61 | 如果多个图形相互独立,并不共用一个图形计数器,那么用 \verb|minipage| 或者 62 | \verb|parbox| 就可以。否则,请参看图~\ref{fig:big1},它包含两个小图,分别是图~\ref{fig:subfig1} 63 | 和图~\ref{fig:subfig2}。推荐使用 \verb|\subfloat|,不要再用 64 | \verb|\subfigure| 和 \verb|\subtable|。 65 | \begin{figure} %[h] 66 | \centering% 67 | \subfloat[第一个小图形]{% 68 | \label{fig:subfig1} 69 | \includegraphics[height=2cm]{thu-fig-logo}}\hspace{4em}% 70 | \subfloat[第二个小图形。如果标题很长的话,它会自动换行,这个 caption 就是这样的例子]{% 71 | \label{fig:subfig2} 72 | \includegraphics[height=2cm]{thu-text-logo}} 73 | \caption{包含子图形的大图形} 74 | \label{fig:big1} 75 | \end{figure} 76 | 77 | 古之学者必有师。师者,所以传道受业解惑也。人非生而知之者,孰能无惑?惑而不从师, 78 | 其为惑也,终不解矣。生乎吾前,其闻道也固先乎吾,吾从而师之;生乎吾後,其闻道也亦 79 | 先乎吾,吾从而师之。吾师道也,夫庸知其年之先後生於吾乎!是故无贵无贱无长无少,道 80 | 之所存,师之所存也。 81 | 82 | 嗟乎!师道之不传也久矣,欲人之无惑也难矣。古之圣人,其出人也远矣,犹且从师而问焉; 83 | 今之众人,其下圣人也亦远矣,而耻学於师。是故圣益圣,愚益愚。圣人之所以为圣,愚 84 | 人之所以为愚,其皆出於此乎?爱其子,择师而教之,於其身也,则耻师焉,惑焉。彼童子 85 | 之师,授之书而习其句读者,非吾所谓传其道、解其惑者也。句读之不知,惑之不解,或师 86 | 焉,或不焉,小学而大遗,吾未见其明也。巫医、乐师、百工之人不耻相师, 士大夫之族 87 | 曰“师”曰“弟子”之云者,则群聚而笑之。问之,则曰:彼与彼年相若也,道相似也,位 88 | 卑则足羞,官盛则近谀。呜呼!师道之不复,可知矣。巫医、乐师、百工之人。吾子不齿, 89 | 今其智乃反不能及,其可怪也欤!圣人无常师。孔子师郯子、苌子、师襄、老聃。郯子之徒, 90 | 其贤不及孔子。孔子曰:“三人行,必有我师。”是故弟子不必不如师,师不必贤於弟子。 91 | 闻道有先後,术业有专攻,如是而已。 92 | 93 | 如果要把编号的两个图形并排,那么小页就非常有用了: 94 | \begin{figure} 95 | \begin{minipage}{0.48\textwidth} 96 | \centering 97 | \includegraphics[height=2cm]{thu-whole-logo} 98 | \caption{并排第一个图} 99 | \label{fig:parallel1} 100 | \end{minipage}\hfill 101 | \begin{minipage}{0.48\textwidth} 102 | \centering 103 | \includegraphics[height=2cm]{thu-whole-logo} 104 | \caption{并排第二个图} 105 | \label{fig:parallel2} 106 | \end{minipage} 107 | \end{figure} 108 | 109 | 李氏子蟠,年十七,好古文、六艺,经传皆通习之,不拘於时,学於余。余嘉其能行古 110 | 道,作师说以贻之。 111 | 112 | \hfill \pozhehao 韩愈(唐) 113 | 114 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/cover.tex: -------------------------------------------------------------------------------- 1 | 2 | %%% Local Variables: 3 | %%% mode: latex 4 | %%% TeX-master: t 5 | %%% End: 6 | \secretlevel{绝密} \secretyear{2100} 7 | 8 | \ctitle{清华大学学位论文 \LaTeX\ 模板\\使用示例文档} 9 | % 根据自己的情况选,不用这样复杂 10 | \makeatletter 11 | \ifthu@bachelor\relax\else 12 | \ifthu@doctor 13 | \cdegree{工学博士} 14 | \else 15 | \ifthu@master 16 | \cdegree{工学硕士} 17 | \fi 18 | \fi 19 | \fi 20 | \makeatother 21 | 22 | 23 | \cdepartment[计算机]{计算机科学与技术系} 24 | \cmajor{计算机科学与技术} 25 | \cauthor{薛瑞尼} 26 | \csupervisor{郑纬民教授} 27 | % 如果没有副指导老师或者联合指导老师,把下面两行相应的删除即可。 28 | \cassosupervisor{陈文光教授} 29 | \ccosupervisor{某某某教授} 30 | % 日期自动生成,如果你要自己写就改这个cdate 31 | %\cdate{\CJKdigits{\the\year}年\CJKnumber{\the\month}月} 32 | 33 | \etitle{An Introduction to \LaTeX{} Thesis Template of Tsinghua University} 34 | % \edegree{Doctor of Science} 35 | \edegree{Doctor of Engineering} 36 | \emajor{Computer Science and Technology} 37 | \eauthor{Xue Ruini} 38 | \esupervisor{Professor Zheng Weimin} 39 | \eassosupervisor{Chen Wenguang} 40 | % 这个日期也会自动生成,你要改么? 41 | % \edate{December, 2005} 42 | 43 | % 定义中英文摘要和关键字 44 | \begin{cabstract} 45 | 论文的摘要是对论文研究内容和成果的高度概括。摘要应对论文所研究的问题及其研究目 46 | 的进行描述,对研究方法和过程进行简单介绍,对研究成果和所得结论进行概括。摘要应 47 | 具有独立性和自明性,其内容应包含与论文全文同等量的主要信息。使读者即使不阅读全 48 | 文,通过摘要就能了解论文的总体内容和主要成果。 49 | 50 | 论文摘要的书写应力求精确、简明。切忌写成对论文书写内容进行提要的形式,尤其要避 51 | 免“第 1 章……;第 2 章……;……”这种或类似的陈述方式。 52 | 53 | 本文介绍清华大学论文模板 \thuthesis{} 的使用方法。本模板符合学校的本科、硕士、 54 | 博士论文格式要求。 55 | 56 | 本文的创新点主要有: 57 | \begin{itemize} 58 | \item 用例子来解释模板的使用方法; 59 | \item 用废话来填充无关紧要的部分; 60 | \item 一边学习摸索一边编写新代码。 61 | \end{itemize} 62 | 63 | 关键词是为了文献标引工作、用以表示全文主要内容信息的单词或术语。关键词不超过 5 64 | 个,每个关键词中间用分号分隔。(模板作者注:关键词分隔符不用考虑,模板会自动处 65 | 理。英文关键词同理。) 66 | \end{cabstract} 67 | 68 | \ckeywords{\TeX, \LaTeX, CJK, 模板, 论文} 69 | 70 | \begin{eabstract} 71 | An abstract of a dissertation is a summary and extraction of research work 72 | and contributions. Included in an abstract should be description of research 73 | topic and research objective, brief introduction to methodology and research 74 | process, and summarization of conclusion and contributions of the 75 | research. An abstract should be characterized by independence and clarity and 76 | carry identical information with the dissertation. It should be such that the 77 | general idea and major contributions of the dissertation are conveyed without 78 | reading the dissertation. 79 | 80 | An abstract should be concise and to the point. It is a misunderstanding to 81 | make an abstract an outline of the dissertation and words ``the first 82 | chapter'', ``the second chapter'' and the like should be avoided in the 83 | abstract. 84 | 85 | Key words are terms used in a dissertation for indexing, reflecting core 86 | information of the dissertation. An abstract may contain a maximum of 5 key 87 | words, with semi-colons used in between to separate one another. 88 | \end{eabstract} 89 | 90 | \ekeywords{\TeX, \LaTeX, CJK, template, thesis} 91 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/denotation.tex: -------------------------------------------------------------------------------- 1 | \begin{denotation} 2 | 3 | \item[HPC] 高性能计算 (High Performance Computing) 4 | \item[cluster] 集群 5 | \item[Itanium] 安腾 6 | \item[SMP] 对称多处理 7 | \item[API] 应用程序编程接口 8 | \item[PI] 聚酰亚胺 9 | \item[MPI] 聚酰亚胺模型化合物,N-苯基邻苯酰亚胺 10 | \item[PBI] 聚苯并咪唑 11 | \item[MPBI] 聚苯并咪唑模型化合物,N-苯基苯并咪唑 12 | \item[PY] 聚吡咙 13 | \item[PMDA-BDA] 均苯四酸二酐与联苯四胺合成的聚吡咙薄膜 14 | \item[$\Delta G$] 活化自由能~(Activation Free Energy) 15 | \item [$\chi$] 传输系数~(Transmission Coefficient) 16 | \item[$E$] 能量 17 | \item[$m$] 质量 18 | \item[$c$] 光速 19 | \item[$P$] 概率 20 | \item[$T$] 时间 21 | \item[$v$] 速度 22 | \item[劝 学] 君子曰:学不可以已。青,取之于蓝,而青于蓝;冰,水为之,而寒于水。 23 | 木直中绳。(车柔)以为轮,其曲中规。虽有槁暴,不复挺者,(车柔)使之然也。故木 24 | 受绳则直, 金就砺则利,君子博学而日参省乎己,则知明而行无过矣。吾尝终日而思 25 | 矣, 不如须臾之所学也;吾尝(足齐)而望矣,不如登高之博见也。登高而招,臂非加 26 | 长也, 而见者远; 顺风而呼, 声非加疾也,而闻者彰。假舆马者,非利足也,而致 27 | 千里;假舟楫者,非能水也,而绝江河, 君子生非异也,善假于物也。积土成山,风雨 28 | 兴焉;积水成渊,蛟龙生焉;积善成德,而神明自得,圣心备焉。故不积跬步,无以至千 29 | 里;不积小流,无以成江海。骐骥一跃,不能十步;驽马十驾,功在不舍。锲而舍之,朽 30 | 木不折; 锲而不舍,金石可镂。蚓无爪牙之利,筋骨之强,上食埃土,下饮黄泉,用心 31 | 一也。蟹六跪而二螯,非蛇鳝之穴无可寄托者,用心躁也。\pozhehao{} 荀况 32 | \end{denotation} 33 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/data/resume.tex: -------------------------------------------------------------------------------- 1 | \begin{resume} 2 | 3 | \resumeitem{个人简历} 4 | 5 | xxxx 年 xx 月 xx 日出生于 xx 省 xx 县。 6 | 7 | xxxx 年 9 月考入 xx 大学 xx 系 xx 专业,xxxx 年 7 月本科毕业并获得 xx 学士学位。 8 | 9 | xxxx 年 9 月免试进入 xx 大学 xx 系攻读 xx 学位至今。 10 | 11 | \resumeitem{发表的学术论文} % 发表的和录用的合在一起 12 | 13 | \begin{enumerate}[{[}1{]}] 14 | \item Yang Y, Ren T L, Zhang L T, et al. Miniature microphone with silicon- 15 | based ferroelectric thin films. Integrated Ferroelectrics, 2003, 16 | 52:229-235. (SCI 收录, 检索号:758FZ.) 17 | \item 杨轶, 张宁欣, 任天令, 等. 硅基铁电微声学器件中薄膜残余应力的研究. 中国机 18 | 械工程, 2005, 16(14):1289-1291. (EI 收录, 检索号:0534931 2907.) 19 | \item 杨轶, 张宁欣, 任天令, 等. 集成铁电器件中的关键工艺研究. 仪器仪表学报, 20 | 2003, 24(S4):192-193. (EI 源刊.) 21 | \item Yang Y, Ren T L, Zhu Y P, et al. PMUTs for handwriting recognition. In 22 | press. (已被 Integrated Ferroelectrics 录用. SCI 源刊.) 23 | \item Wu X M, Yang Y, Cai J, et al. Measurements of ferroelectric MEMS 24 | microphones. Integrated Ferroelectrics, 2005, 69:417-429. (SCI 收录, 检索号 25 | :896KM.) 26 | \item 贾泽, 杨轶, 陈兢, 等. 用于压电和电容微麦克风的体硅腐蚀相关研究. 压电与声 27 | 光, 2006, 28(1):117-119. (EI 收录, 检索号:06129773469.) 28 | \item 伍晓明, 杨轶, 张宁欣, 等. 基于MEMS技术的集成铁电硅微麦克风. 中国集成电路, 29 | 2003, 53:59-61. 30 | \end{enumerate} 31 | 32 | \resumeitem{研究成果} % 有就写,没有就删除 33 | \begin{enumerate}[{[}1{]}] 34 | \item 任天令, 杨轶, 朱一平, 等. 硅基铁电微声学传感器畴极化区域控制和电极连接的 35 | 方法: 中国, CN1602118A. (中国专利公开号.) 36 | \item Ren T L, Yang Y, Zhu Y P, et al. Piezoelectric micro acoustic sensor 37 | based on ferroelectric materials: USA, No.11/215, 102. (美国发明专利申请号.) 38 | \end{enumerate} 39 | \end{resume} 40 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/hello.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-2.0 EPSF-2.0 2 | %%Title: hello.fig 3 | %%Creator: fig2dev Version 3.2 Patchlevel 4 4 | %%CreationDate: Mon Nov 14 12:04:18 2005 5 | %%For: xrn@gentoo () 6 | %%BoundingBox: 0 0 182 51 7 | %%Magnification: 1.0000 8 | %%EndComments 9 | /$F2psDict 200 dict def 10 | $F2psDict begin 11 | $F2psDict /mtrx matrix put 12 | /col-1 {0 setgray} bind def 13 | /col0 {0.000 0.000 0.000 srgb} bind def 14 | /col1 {0.000 0.000 1.000 srgb} bind def 15 | /col2 {0.000 1.000 0.000 srgb} bind def 16 | /col3 {0.000 1.000 1.000 srgb} bind def 17 | /col4 {1.000 0.000 0.000 srgb} bind def 18 | /col5 {1.000 0.000 1.000 srgb} bind def 19 | /col6 {1.000 1.000 0.000 srgb} bind def 20 | /col7 {1.000 1.000 1.000 srgb} bind def 21 | /col8 {0.000 0.000 0.560 srgb} bind def 22 | /col9 {0.000 0.000 0.690 srgb} bind def 23 | /col10 {0.000 0.000 0.820 srgb} bind def 24 | /col11 {0.530 0.810 1.000 srgb} bind def 25 | /col12 {0.000 0.560 0.000 srgb} bind def 26 | /col13 {0.000 0.690 0.000 srgb} bind def 27 | /col14 {0.000 0.820 0.000 srgb} bind def 28 | /col15 {0.000 0.560 0.560 srgb} bind def 29 | /col16 {0.000 0.690 0.690 srgb} bind def 30 | /col17 {0.000 0.820 0.820 srgb} bind def 31 | /col18 {0.560 0.000 0.000 srgb} bind def 32 | /col19 {0.690 0.000 0.000 srgb} bind def 33 | /col20 {0.820 0.000 0.000 srgb} bind def 34 | /col21 {0.560 0.000 0.560 srgb} bind def 35 | /col22 {0.690 0.000 0.690 srgb} bind def 36 | /col23 {0.820 0.000 0.820 srgb} bind def 37 | /col24 {0.500 0.190 0.000 srgb} bind def 38 | /col25 {0.630 0.250 0.000 srgb} bind def 39 | /col26 {0.750 0.380 0.000 srgb} bind def 40 | /col27 {1.000 0.500 0.500 srgb} bind def 41 | /col28 {1.000 0.630 0.630 srgb} bind def 42 | /col29 {1.000 0.750 0.750 srgb} bind def 43 | /col30 {1.000 0.880 0.880 srgb} bind def 44 | /col31 {1.000 0.840 0.000 srgb} bind def 45 | 46 | end 47 | save 48 | newpath 0 51 moveto 0 0 lineto 182 0 lineto 182 51 lineto closepath clip newpath 49 | -269.0 153.7 translate 50 | 1 -1 scale 51 | 52 | /cp {closepath} bind def 53 | /ef {eofill} bind def 54 | /gr {grestore} bind def 55 | /gs {gsave} bind def 56 | /sa {save} bind def 57 | /rs {restore} bind def 58 | /l {lineto} bind def 59 | /m {moveto} bind def 60 | /rm {rmoveto} bind def 61 | /n {newpath} bind def 62 | /s {stroke} bind def 63 | /sh {show} bind def 64 | /slc {setlinecap} bind def 65 | /slj {setlinejoin} bind def 66 | /slw {setlinewidth} bind def 67 | /srgb {setrgbcolor} bind def 68 | /rot {rotate} bind def 69 | /sc {scale} bind def 70 | /sd {setdash} bind def 71 | /ff {findfont} bind def 72 | /sf {setfont} bind def 73 | /scf {scalefont} bind def 74 | /sw {stringwidth} bind def 75 | /tr {translate} bind def 76 | /tnt {dup dup currentrgbcolor 77 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add 78 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add 79 | 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} 80 | bind def 81 | /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 82 | 4 -2 roll mul srgb} bind def 83 | /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def 84 | /$F2psEnd {$F2psEnteredState restore end} def 85 | 86 | $F2psBegin 87 | 10 setmiterlimit 88 | 0 slj 0 slc 89 | 0.06000 0.06000 sc 90 | % 91 | % Fig objects follow 92 | % 93 | % 94 | % here starts figure with depth 50 95 | % Polyline 96 | 7.500 slw 97 | n 4570 1725 m 4495 1725 4495 2475 75 arcto 4 {pop} repeat 98 | 4495 2550 7425 2550 75 arcto 4 {pop} repeat 99 | 7500 2550 7500 1800 75 arcto 4 {pop} repeat 100 | 7500 1725 4570 1725 75 arcto 4 {pop} repeat 101 | cp gs col0 s gr 102 | /NewCenturySchlbk-BoldItalic ff 300.00 scf sf 103 | 4650 2025 m 104 | gs 1 -1 sc (Hello, Xfig!) col9 sh gr 105 | /Times-Italic ff 150.00 scf sf 106 | 6825 2475 m 107 | gs 1 -1 sc (LittleLeo) col18 sh gr 108 | % here ends figure; 109 | $F2psEnd 110 | rs 111 | showpage 112 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/hello.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 4 0 1 0 7 50 -1 -1 0.000 0 0 5 0 0 5 11 | 7500 2550 7500 1725 4495 1725 4495 2550 7500 2550 12 | 4 0 9 50 -1 27 20 0.0000 4 270 1605 4650 2025 Hello, Xfig!\001 13 | 4 0 18 50 -1 1 10 0.0000 4 105 585 6825 2475 LittleLeo\001 14 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/hello.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-fig-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-fig-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-fig-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-fig-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-lib-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-lib-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-text-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-text-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-text-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-whole-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-whole-logo.eps -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-whole-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/figures/thu-whole-logo.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/main.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/main.tex: -------------------------------------------------------------------------------- 1 | %%% Local Variables: 2 | %%% mode: latex 3 | %%% TeX-master: t 4 | %%% End: 5 | 6 | \documentclass[doctor]{thuthesis} 7 | % \documentclass[% 8 | % bachelor|master|doctor, % mandatory option 9 | % xetex|pdftex|dvips|dvipdfm, % optional 10 | % secret, 11 | % openany|openright, 12 | % arialtoc,arialtitle]{thuthesis} 13 | 14 | % 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。 15 | \usepackage{thutils} 16 | 17 | % 你可以在这里修改配置文件中的定义,导言区可以使用中文。 18 | % \def\myname{薛瑞尼} 19 | 20 | \begin{document} 21 | 22 | % 定义所有的eps文件在 figures 子目录下 23 | \graphicspath{{figures/}} 24 | 25 | 26 | %%% 封面部分 27 | \frontmatter 28 | \input{data/cover} 29 | \makecover 30 | 31 | % 目录 32 | \tableofcontents 33 | 34 | % 符号对照表 35 | \input{data/denotation} 36 | 37 | 38 | %%% 正文部分 39 | \mainmatter 40 | \include{data/chap01} 41 | \include{data/chap02} 42 | 43 | 44 | %%% 其它部分 45 | \backmatter 46 | 47 | % 本科生要这几个索引,研究生不要。选择性留下。 48 | \makeatletter 49 | \ifthu@bachelor 50 | % 插图索引 51 | \listoffigures 52 | % 表格索引 53 | \listoftables 54 | % 公式索引 55 | \listofequations 56 | \fi 57 | \makeatother 58 | 59 | 60 | % 参考文献 61 | \bibliographystyle{thubib} 62 | \bibliography{ref/refs} 63 | 64 | 65 | % 致谢 66 | \include{data/ack} 67 | 68 | % 附录 69 | \begin{appendix} 70 | \input{data/appendix01} 71 | \end{appendix} 72 | 73 | % 个人简历 74 | \include{data/resume} 75 | \end{document} 76 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/msmake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/msmake.cmd -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/ref/refs.bib: -------------------------------------------------------------------------------- 1 | @book{IEEE-1363, 2 | author={{IEEE Std 1363-2000}}, 3 | title={{IEEE} Standard Specifications for Public-Key Cryptography}, 4 | address={New York}, 5 | publisher={IEEE}, 6 | year={2000} 7 | } 8 | 9 | @inproceedings{kocher99, 10 | author={C. Kocher and J. Jaffe and B. Jun}, 11 | title={Differential Power Analysis}, 12 | editor={M. Wiener}, 13 | booktitle={Advances in Cryptology ({CRYPTO}~'99)}, 14 | series={Lecture Notes in Computer Science}, 15 | volume={1666}, 16 | pages={388-397}, 17 | publisher={Springer-Verlag}, 18 | month={August}, 19 | year={1999} 20 | } 21 | 22 | 23 | @INCOLLECTION{Krasnogor2004e, 24 | AUTHOR = {N. Krasnogor}, 25 | TITLE = {Towards robust memetic algorithms}, 26 | BOOKTITLE = {Recent Advances in Memetic Algorithms}, 27 | PUBLISHER = {Springer Berlin Heidelberg}, 28 | YEAR = {2004}, 29 | PAGES = {185-207}, 30 | EDITOR = {W.E. Hart and N. Krasnogor and J.E. Smith}, 31 | VOLUME = {166}, 32 | SERIES = {Studies in Fuzziness and Soft Computing}, 33 | ADDRESS = {New York}, 34 | } 35 | 36 | @INCOLLECTION{zjsw, 37 | AUTHOR = {班固}, 38 | TITLE = {苏武传}, 39 | BOOKTITLE = {传记散文英华}, 40 | PUBLISHER = {湖北人民出版社}, 41 | YEAR = {1998}, 42 | PAGES = {65-69}, 43 | EDITOR = {郑在瀛 and 汪超宏 and 周文复}, 44 | VOLUME = {2}, 45 | SERIES = {新古文观止丛书}, 46 | ADDRESS = {武汉}, 47 | lang = {zh}, 48 | } 49 | 50 | 51 | @INBOOK{clzs, 52 | AUTHOR = {阎真}, 53 | TITLE = {沧浪之水}, 54 | CHAPTER = {大人物还是讲人情的}, 55 | PAGES = {185-207}, 56 | PUBLISHER = {人民文学出版社}, 57 | YEAR = {2001}, 58 | lang = {zh}, 59 | } 60 | 61 | @Book{tex, 62 | author = "Donald E. Knuth", 63 | title = "The {\TeX} Book", 64 | publisher = "Addison-Wesley Publishing Company", 65 | address = "Reading, MA", 66 | year = 1989, 67 | edition = "15th", 68 | } 69 | 70 | @Book{companion, 71 | author = "Michel Goosens and Frank Mittelbach and Alexander Samarin", 72 | title = "The {\LaTeX} Companion", 73 | publisher = "Addison-Wesley Publishing Company", 74 | address = "Reading, MA", 75 | PAGES = "112--125", 76 | year = 1994, 77 | } 78 | 79 | @ARTICLE{ELIDRISSI94, 80 | AUTHOR = "{Chafik El Idrissi}, M. and {Roney}, A. and {Frigon}, C. and 81 | {Larzilli{\`e}re}, M.", 82 | TITLE = "Measurements of total kinetic-energy released to the {$N=2$} 83 | dissociation limit of {H}$_2$ --- evidence of the dissociation 84 | of very high vibrational {R}ydberg states of {H}$_2$ by 85 | doubly-excited states", 86 | JOURNAL = "Chemical Physics Letters", 87 | PAGES = "260-266", 88 | VOLUME = 224, 89 | NUMBER = 10, 90 | YEAR = 1994, 91 | } 92 | 93 | @ARTICLE{MELLINGER96, 94 | AUTHOR = "Mellinger, A. and Vidal, C. R. and Jungen, Ch.", 95 | TITLE = "Laser reduced fluorescence study of the carbon-monoxide nd 96 | triplet {R}ydberg series-experimental results and multichannel 97 | quantum-defect analysis", 98 | JOURNAL = "J. Chem. Phys.", 99 | PAGES = "8913-8921", 100 | VOLUME = 104, 101 | NUMBER = 5, 102 | YEAR = 1996, 103 | } 104 | 105 | @ARTICLE{SHELL02, 106 | AUTHOR = "Michael Shell", 107 | TITLE = "How to Use the {IEEEtran \LaTeX} Class", 108 | JOURNAL = "Journal of {\LaTeX} Class Files", 109 | YEAR = 2002, 110 | VOLUME = 12, 111 | NUMBER = 4, 112 | PAGES = "100--120" 113 | } 114 | 115 | @TechReport{NPB2, 116 | title = {The {NAS} Parallel Benchmarks 2.0}, 117 | author = {Alex Woo and David Bailey and Maurice Yarrow and Wijngaart 118 | Wijngaart and Tim Harris and William Saphir}, 119 | year = 1995, 120 | month = dec # "~05", 121 | institution = "The Pennsylvania State University CiteSeer Archives", 122 | url = "http://www.nasa.org/" 123 | } 124 | 125 | @INPROCEEDINGS{DPMG, 126 | author = {Kim, Sangbum and Woo, Namyoon and Yeom, Heon Y. and Park, 127 | Taesoon and Park, Hyoungwoo}, 128 | title = {Design and {I}mplementation of {D}ynamic {P}rocess 129 | {M}anagement for {G}rid-enabled {MPICH}}, 130 | booktitle = {the 10th European PVM/MPI Users' Group Conference}, 131 | year = 2003, 132 | address = {Venice, Italy}, 133 | month = sep, 134 | } 135 | 136 | @INPROCEEDINGS{cnproceed, 137 | author = {王重阳 and 黄药师 and 欧阳峰 and 洪七公 and 段皇帝}, 138 | title = {武林高手从入门到精通}, 139 | booktitle = {第~$N$~次华山论剑}, 140 | year = 2006, 141 | address = {西安, 中国}, 142 | month = sep, 143 | lang = "zh", 144 | } 145 | 146 | @ARTICLE{cnarticle, 147 | AUTHOR = "贾宝玉 and 林黛玉 and 薛宝钗 and 贾探春", 148 | TITLE = "论刘姥姥食量大如牛之现实意义", 149 | JOURNAL = "红楼梦杂谈", 150 | PAGES = "260--266", 151 | VOLUME = 224, 152 | YEAR = 1800, 153 | LANG = "zh", 154 | } 155 | 156 | @MastersThesis{zhubajie, 157 | author = {猪八戒}, 158 | title = {论流体食物的持久保存}, 159 | school = {广寒宫大学}, 160 | year = 2005, 161 | address = {北京}, 162 | lang = "zh", 163 | } 164 | 165 | @PhdThesis{shaheshang, 166 | author = {沙和尚}, 167 | title = {论流沙河的综合治理}, 168 | school = {清华大学}, 169 | year = 2005, 170 | address = {北京}, 171 | lang = "zh", 172 | } 173 | 174 | @MastersThesis{metamori2004, 175 | author = {Ashwin Raju Jeyakumar}, 176 | title = {Metamori: A library for Incremental File Checkpointing}, 177 | school = {Virgina Tech}, 178 | year = 2004, 179 | month = jun # "~21", 180 | address = {Blacksburg}, 181 | } 182 | 183 | @PHDTHESIS{FistSystem01, 184 | AUTHOR = "Erez Zadok", 185 | TITLE = "{FiST: A System for Stackable File System Code Generation}", 186 | YEAR = 2001, 187 | MONTH = "May", 188 | SCHOOL = "Computer Science Department, Columbia University", 189 | ADDRESS = "USA" 190 | } 191 | 192 | @INBOOK{ColdSources, 193 | AUTHOR = {P. Gr{\"o}ning and L. Nilsson and P. Ruffieux and R. 194 | Clergereaux and O. Gr{\"o}ning}, 195 | TITLE = {Encyclopedia of Nanoscience and Nanotechnology}, 196 | pages = {547--579}, 197 | PUBLISHER = {American Scientific Publishers}, 198 | YEAR = 2004, 199 | volume = 1, 200 | } 201 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/shuji.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/shuji.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/shuji.tex: -------------------------------------------------------------------------------- 1 | \documentclass[doctor]{thuthesis} 2 | 3 | \ifxetex 4 | \setCJKfamilyfont{fs}[RawFeature={vertical:}]{Adobe Fangsong Std} 5 | \else % for latex/pdflatex 6 | \usepackage{CJKvert} 7 | \fi 8 | 9 | \begin{document} 10 | \cauthor{薛瑞尼} 11 | \ctitle{没有英文的中文标题} 12 | 13 | \shuji 14 | 15 | \shuji[清华大学学位\hspace{0.2em}\raisebox{2pt}{\LaTeX}\hspace{-0.25em} 论文模板 \hspace{0.1em}\raisebox{2pt}{v\version}\hspace{-0.25em} 样例] 16 | \end{document} 17 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thubib.bst: -------------------------------------------------------------------------------- 1 | % BibTeX standard bibliography style `thubib.bst' derived from `unsrt' 2 | % This file is part of `thuthesis' package. 3 | % 4 | % $Id: thubib.bst 178 2009-01-04 13:37:39Z littleleo $ 5 | 6 | ENTRY 7 | { address 8 | author 9 | booktitle 10 | chapter 11 | edition 12 | editor 13 | howpublished 14 | institution 15 | journal 16 | key 17 | lang 18 | month 19 | note 20 | number 21 | organization 22 | pages 23 | publisher 24 | school 25 | series 26 | title 27 | type 28 | volume 29 | year 30 | url 31 | } 32 | {} 33 | { label } 34 | 35 | INTEGERS { output.state before.all mid.sentence after.sentence after.block } 36 | 37 | FUNCTION {not} 38 | { { #0 } 39 | { #1 } 40 | if$ 41 | } 42 | 43 | FUNCTION {and} 44 | { 'skip$ 45 | { pop$ #0 } 46 | if$ 47 | } 48 | 49 | FUNCTION {or} 50 | { { pop$ #1 } 51 | 'skip$ 52 | if$ 53 | } 54 | 55 | FUNCTION {init.state.consts} 56 | { #0 'before.all := 57 | #1 'mid.sentence := 58 | #2 'after.sentence := 59 | #3 'after.block := 60 | } 61 | 62 | STRINGS { s t } 63 | 64 | FUNCTION {output.nonnull} 65 | { 's := 66 | output.state mid.sentence = 67 | { ", " * write$ } 68 | { output.state after.block = 69 | { add.period$ write$ 70 | newline$ 71 | "\newblock " write$ 72 | } 73 | { output.state before.all = 74 | 'write$ 75 | { add.period$ " " * write$ } 76 | if$ 77 | } 78 | if$ 79 | mid.sentence 'output.state := 80 | } 81 | if$ 82 | s 83 | } 84 | 85 | FUNCTION {output.year} 86 | { 't := 87 | number empty$ 88 | volume empty$ 89 | and 90 | { add.period$ write$ } 91 | { ", " * write$ } 92 | if$ 93 | t 94 | } 95 | 96 | STRINGS {z} 97 | FUNCTION {remove.dots} 98 | { 'z := 99 | "" 100 | { z empty$ not} 101 | { z #1 #1 substring$ 102 | z #2 global.max$ substring$ 'z := 103 | duplicate$ "." = 'pop$ 104 | { * } 105 | if$ 106 | } 107 | while$ 108 | %z 109 | } 110 | 111 | FUNCTION {bibinfo.check} 112 | { swap$ 113 | duplicate$ missing$ 114 | { 115 | pop$ pop$ 116 | "" 117 | } 118 | { duplicate$ empty$ 119 | { 120 | swap$ pop$ 121 | } 122 | { swap$ 123 | pop$ 124 | } 125 | if$ 126 | } 127 | if$ 128 | } 129 | 130 | FUNCTION {format.note} 131 | { 132 | note empty$ 133 | { "" } 134 | { note #1 #1 substring$ 135 | duplicate$ "{" = 136 | 'skip$ 137 | { output.state mid.sentence = 138 | { "l" } 139 | { "u" } 140 | if$ 141 | change.case$ 142 | } 143 | if$ 144 | note #2 global.max$ substring$ * "note" bibinfo.check 145 | } 146 | if$ 147 | } 148 | 149 | FUNCTION {output} 150 | { duplicate$ empty$ 151 | 'pop$ 152 | 'output.nonnull 153 | if$ 154 | } 155 | 156 | FUNCTION {output.check} 157 | { 't := 158 | duplicate$ empty$ 159 | { pop$ "empty " t * " in " * cite$ * warning$ } 160 | 'output.nonnull 161 | if$ 162 | } 163 | 164 | FUNCTION {output.bibitem} 165 | { newline$ 166 | "\bibitem{" write$ 167 | cite$ write$ 168 | "}" write$ 169 | newline$ 170 | "" 171 | before.all 'output.state := 172 | } 173 | 174 | FUNCTION {fin.entry} 175 | { duplicate$ empty$ 176 | 'pop$ 177 | 'write$ 178 | if$ 179 | newline$ 180 | "\thudot" write$ 181 | newline$ 182 | } 183 | 184 | % FUNCTION {fin.entry} 185 | % { add.period$ 186 | % write$ 187 | % %remove.dots 188 | % newline$ 189 | % } 190 | 191 | % FUNCTION {fin.entry} 192 | % { duplicate$ empty$ 193 | % 'pop$ 194 | % 'write$ 195 | % if$ 196 | % newline$ 197 | % } 198 | 199 | FUNCTION {new.block} 200 | { output.state before.all = 201 | 'skip$ 202 | { after.block 'output.state := } 203 | if$ 204 | } 205 | 206 | FUNCTION {new.sentence} 207 | { output.state after.block = 208 | 'skip$ 209 | { output.state before.all = 210 | 'skip$ 211 | { after.sentence 'output.state := } 212 | if$ 213 | } 214 | if$ 215 | } 216 | 217 | 218 | FUNCTION {new.block.checka} 219 | { empty$ 220 | 'skip$ 221 | 'new.block 222 | if$ 223 | } 224 | 225 | FUNCTION {new.block.checkb} 226 | { empty$ 227 | swap$ empty$ 228 | and 229 | 'skip$ 230 | 'new.block 231 | if$ 232 | } 233 | 234 | FUNCTION {new.sentence.checka} 235 | { empty$ 236 | 'skip$ 237 | 'new.sentence 238 | if$ 239 | } 240 | 241 | FUNCTION {new.sentence.checkb} 242 | { empty$ 243 | swap$ empty$ 244 | and 245 | 'skip$ 246 | 'new.sentence 247 | if$ 248 | } 249 | 250 | FUNCTION {field.or.null} 251 | { duplicate$ empty$ 252 | { pop$ "" } 253 | 'skip$ 254 | if$ 255 | } 256 | 257 | FUNCTION {emphasize} 258 | { duplicate$ empty$ 259 | { pop$ "" } 260 | { "{\em " swap$ * "}" * } 261 | if$ 262 | } 263 | 264 | INTEGERS { nameptr namesleft numnames } 265 | 266 | FUNCTION {bbl.etal} 267 | { "et~al." } 268 | 269 | FUNCTION {bbl.cn.etal} 270 | { "等." } 271 | 272 | FUNCTION {format.lang} 273 | { lang empty$ 274 | 'skip$ 275 | 'skip$ 276 | if$ 277 | } 278 | 279 | FUNCTION {format.names} 280 | { 's := 281 | #1 'nameptr := 282 | s num.names$ 'numnames := 283 | numnames 'namesleft := 284 | { namesleft #0 > } 285 | { s nameptr 286 | %"{ff }{ll}" 287 | "{ll }{f{~}}" 288 | format.name$ 289 | remove.dots 290 | %bibinfo bibinfo.check 291 | 't := 292 | nameptr #1 > 293 | { 294 | nameptr #3 295 | #1 + = 296 | numnames #3 297 | > and 298 | { "others" 't := 299 | #1 'namesleft := } 300 | 'skip$ 301 | if$ 302 | namesleft #1 > 303 | { ", " * t * } 304 | { numnames #2 > 305 | { "" * } 306 | 'skip$ 307 | if$ 308 | s nameptr "{ll}" format.name$ duplicate$ "others" = 309 | { 't := } 310 | { pop$ } 311 | if$ 312 | t "others" = 313 | { 314 | lang empty$ 315 | { ", " * bbl.etal * } 316 | { lang "zh" = 317 | { ", " * bbl.cn.etal * } 318 | 'skip$ 319 | if$ 320 | } 321 | if$ 322 | } 323 | { 324 | lang empty$ 325 | { ", " * t * } 326 | { lang "zh" = 327 | { ", " * t * } 328 | 'skip$ 329 | if$ 330 | } 331 | if$ 332 | } 333 | if$ 334 | } 335 | if$ 336 | } 337 | 't 338 | if$ 339 | nameptr #1 + 'nameptr := 340 | namesleft #1 - 'namesleft := 341 | } 342 | while$ 343 | } 344 | 345 | FUNCTION {format.authors} 346 | { author empty$ 347 | { "" } 348 | { author format.names } 349 | if$ 350 | } 351 | 352 | FUNCTION {editors.names} 353 | { lang empty$ 354 | { ", (eds.)" } 355 | { ", 编" } 356 | if$ 357 | } 358 | 359 | 360 | FUNCTION {format.editors} 361 | { editor empty$ 362 | { "" } 363 | { editor format.names 364 | % editor num.names$ #1 > 365 | %{ ", editors" * } 366 | %{ ", editor" * } 367 | % if$ 368 | editors.names * 369 | } 370 | if$ 371 | } 372 | 373 | FUNCTION {format.title} 374 | { title empty$ 375 | { "" } 376 | { title } 377 | if$ 378 | } 379 | 380 | FUNCTION {n.dashify} 381 | { 't := 382 | "" 383 | { t empty$ not } 384 | { t #1 #1 substring$ "-" = 385 | { t #1 #2 substring$ "--" = not 386 | { "--" * 387 | t #2 global.max$ substring$ 't := 388 | } 389 | { { t #1 #1 substring$ "-" = } 390 | { "-" * 391 | t #2 global.max$ substring$ 't := 392 | } 393 | while$ 394 | } 395 | if$ 396 | } 397 | { t #1 #1 substring$ * 398 | t #2 global.max$ substring$ 't := 399 | } 400 | if$ 401 | } 402 | while$ 403 | } 404 | 405 | FUNCTION {format.date} 406 | { year empty$ 407 | { month empty$ 408 | { "" } 409 | { "there's a month but no year in " cite$ * warning$ 410 | month 411 | } 412 | if$ 413 | } 414 | { month empty$ 415 | 'year 416 | { month ", " * year * } 417 | if$ 418 | } 419 | if$ 420 | } 421 | 422 | FUNCTION {format.btitle} 423 | { title %emphasize 424 | } 425 | 426 | FUNCTION {tie.or.space.connect} 427 | { duplicate$ text.length$ #3 < 428 | { "~" } 429 | { " " } 430 | if$ 431 | swap$ * * 432 | } 433 | 434 | FUNCTION {either.or.check} 435 | { empty$ 436 | 'pop$ 437 | { "can't use both " swap$ * " fields in " * cite$ * warning$ } 438 | if$ 439 | } 440 | 441 | FUNCTION {format.bvolume} 442 | { volume empty$ 443 | { "" } 444 | { "volume" volume tie.or.space.connect 445 | series empty$ 446 | 'skip$ 447 | { " of " * series emphasize * } 448 | if$ 449 | "volume and number" number either.or.check 450 | } 451 | if$ 452 | } 453 | 454 | FUNCTION {format.number.series} 455 | { volume empty$ 456 | { number empty$ 457 | { series field.or.null } 458 | { output.state mid.sentence = 459 | { "number" } 460 | { "Number" } 461 | if$ 462 | number tie.or.space.connect 463 | series empty$ 464 | { "there's a number but no series in " cite$ * warning$ } 465 | { " in " * series * } 466 | if$ 467 | } 468 | if$ 469 | } 470 | { "" } 471 | if$ 472 | } 473 | 474 | FUNCTION {format.edition} 475 | { edition empty$ 476 | { "" } 477 | { output.state mid.sentence = 478 | { edition "l" change.case$ " ed." * } 479 | { edition "t" change.case$ " ed." * } 480 | if$ 481 | } 482 | if$ 483 | } 484 | 485 | 486 | FUNCTION {format.url} 487 | { url empty$ 488 | { "" } 489 | { new.block " {\url{" url * "}}" * } 490 | if$ 491 | } 492 | 493 | 494 | INTEGERS { multiresult } 495 | 496 | FUNCTION {multi.page.check} 497 | { 't := 498 | #0 'multiresult := 499 | { multiresult not 500 | t empty$ not 501 | and 502 | } 503 | { t #1 #1 substring$ 504 | duplicate$ "-" = 505 | swap$ duplicate$ "," = 506 | swap$ "+" = 507 | or or 508 | { #1 'multiresult := } 509 | { t #2 global.max$ substring$ 't := } 510 | if$ 511 | } 512 | while$ 513 | multiresult 514 | } 515 | 516 | FUNCTION {format.pages} 517 | { pages empty$ 518 | { "" } 519 | { pages multi.page.check 520 | { "" pages n.dashify tie.or.space.connect } 521 | { "" pages tie.or.space.connect } 522 | if$ 523 | } 524 | if$ 525 | } 526 | 527 | FUNCTION {format.vol.num.pages} 528 | { volume field.or.null 529 | number empty$ 530 | 'skip$ 531 | { "(" number * ")" * * 532 | volume empty$ 533 | { "there's a number but no volume in " cite$ * warning$ } 534 | 'skip$ 535 | if$ 536 | } 537 | if$ 538 | pages empty$ 539 | 'skip$ 540 | { duplicate$ empty$ 541 | { pop$ format.pages } 542 | { ":" * pages n.dashify * } 543 | if$ 544 | } 545 | if$ 546 | } 547 | 548 | FUNCTION {format.chapter.pages} 549 | { chapter empty$ 550 | { "" } 551 | { type empty$ 552 | { "chapter" } 553 | { type "l" change.case$ } 554 | if$ 555 | chapter tie.or.space.connect 556 | pages empty$ 557 | 'skip$ 558 | { ", " * format.pages * } 559 | if$ 560 | } 561 | if$ 562 | } 563 | 564 | FUNCTION {collection.in} 565 | { lang empty$ 566 | { "In: " } 567 | { "见: " } 568 | if$ 569 | } 570 | 571 | FUNCTION {format.in.ed.booktitle} 572 | { booktitle empty$ 573 | { "" } 574 | { editor empty$ 575 | { lang empty$ 576 | { "Proceedings of " booktitle * } 577 | { " " booktitle * } 578 | if$ 579 | } 580 | { lang empty$ 581 | { collection.in format.editors * ". Proceedings of " * booktitle * } 582 | { collection.in format.editors * ". " * booktitle * } 583 | if$ 584 | } 585 | if$ 586 | } 587 | if$ 588 | } 589 | 590 | FUNCTION {empty.misc.check} 591 | { author empty$ title empty$ howpublished empty$ 592 | month empty$ year empty$ note empty$ 593 | and and and and and 594 | { "all relevant fields are empty in " cite$ * warning$ } 595 | 'skip$ 596 | if$ 597 | } 598 | 599 | FUNCTION {format.thesis.type} 600 | { type empty$ 601 | 'skip$ 602 | { pop$ 603 | type "t" change.case$ 604 | } 605 | if$ 606 | } 607 | 608 | FUNCTION {format.tr.number} 609 | { type empty$ 610 | { "Technical Report" } 611 | 'type 612 | if$ 613 | number empty$ 614 | { "t" change.case$ } 615 | { number tie.or.space.connect } 616 | if$ 617 | } 618 | 619 | FUNCTION {format.article.crossref} 620 | { key empty$ 621 | { journal empty$ 622 | { "need key or journal for " cite$ * " to crossref " * crossref * 623 | warning$ 624 | "" 625 | } 626 | { "In {\em " journal * "\/}" * } 627 | if$ 628 | } 629 | { "In " key * } 630 | if$ 631 | " \cite{" * crossref * "}" * 632 | } 633 | 634 | FUNCTION {format.crossref.editor} 635 | { editor #1 "{ll }{f{~}}" format.name$ 636 | editor num.names$ duplicate$ 637 | #2 > 638 | { pop$ " et~al." * } 639 | { #2 < 640 | 'skip$ 641 | { editor #2 "{ll }{f{~}}" format.name$ "others" = 642 | { " et~al." * } 643 | { " and " * editor #2 "{ll }{f{~}}" format.name$ * } 644 | if$ 645 | } 646 | if$ 647 | } 648 | if$ 649 | } 650 | 651 | FUNCTION {format.book.crossref} 652 | { volume empty$ 653 | { "empty volume in " cite$ * "'s crossref of " * crossref * warning$ 654 | "In " 655 | } 656 | { "Volume" volume tie.or.space.connect 657 | " of " * 658 | } 659 | if$ 660 | editor empty$ 661 | editor field.or.null author field.or.null = 662 | or 663 | { key empty$ 664 | { series empty$ 665 | { "need editor, key, or series for " cite$ * " to crossref " * 666 | crossref * warning$ 667 | "" * 668 | } 669 | { "{\em " * series * "\/}" * } 670 | if$ 671 | } 672 | { key * } 673 | if$ 674 | } 675 | { format.crossref.editor * } 676 | if$ 677 | " \cite{" * crossref * "}" * 678 | } 679 | 680 | FUNCTION {format.incoll.inproc.crossref} 681 | { editor empty$ 682 | editor field.or.null author field.or.null = 683 | or 684 | { key empty$ 685 | { booktitle empty$ 686 | { "need editor, key, or booktitle for " cite$ * " to crossref " * 687 | crossref * warning$ 688 | "" 689 | } 690 | { "In {\em " booktitle * "\/}" * } 691 | if$ 692 | } 693 | { "In " key * } 694 | if$ 695 | } 696 | { "In " format.crossref.editor * } 697 | if$ 698 | " \cite{" * crossref * "}" * 699 | } 700 | 701 | FUNCTION {format.address.publisher} 702 | { address empty$ 703 | { publisher empty$ 704 | { "" } 705 | { "there's a publisher but no address in " cite$ * warning$ 706 | publisher 707 | } 708 | if$ 709 | } 710 | { publisher empty$ 711 | 'address 712 | { address ": " * publisher * } 713 | if$ 714 | } 715 | if$ 716 | } 717 | 718 | FUNCTION {format.address.school} 719 | { address empty$ 720 | { school empty$ 721 | { "" } 722 | { "there's a school but no address in " cite$ * warning$ 723 | school 724 | } 725 | if$ 726 | } 727 | { school empty$ 728 | 'address 729 | { address ": " * school * } 730 | if$ 731 | } 732 | if$ 733 | } 734 | 735 | 736 | FUNCTION {format.title.type} 737 | { title empty$ 738 | { type empty$ 739 | { "" } 740 | { "there's a type but no title in " cite$ * warning$ 741 | type 742 | } 743 | if$ 744 | } 745 | { type empty$ 746 | 'title 747 | { title ": " * type * } 748 | if$ 749 | } 750 | if$ 751 | } 752 | 753 | FUNCTION {book} 754 | { output.bibitem 755 | author empty$ 756 | { format.editors "author and editor" output.check } 757 | { format.authors output.nonnull 758 | crossref missing$ 759 | { "author and editor" editor either.or.check } 760 | 'skip$ 761 | if$ 762 | } 763 | if$ 764 | new.block 765 | format.btitle "title" output.check 766 | crossref missing$ 767 | { format.bvolume output 768 | new.block 769 | format.number.series output 770 | %new.sentence 771 | %format.address.publisher output 772 | } 773 | { new.block 774 | format.book.crossref output.nonnull 775 | } 776 | if$ 777 | format.edition output 778 | format.address.publisher output 779 | pages empty$ 780 | { format.date "year" output.check 781 | % new.sentence 782 | % format.pages output 783 | } 784 | { format.date ":" * format.pages * output } 785 | if$ 786 | fin.entry 787 | } 788 | 789 | FUNCTION {article} 790 | { output.bibitem 791 | format.authors "author" output.check 792 | new.block 793 | format.title "title" output.check 794 | new.block 795 | crossref missing$ 796 | { %journal emphasize "journal" output.check 797 | journal "journal" output.check 798 | %format.date "year" output.check 799 | %new.block 800 | year output 801 | format.vol.num.pages output.year 802 | } 803 | { format.article.crossref output.nonnull 804 | format.pages output 805 | } 806 | if$ 807 | new.block 808 | format.note output 809 | fin.entry 810 | } 811 | 812 | FUNCTION {booklet} 813 | { output.bibitem 814 | format.authors output 815 | new.block 816 | format.title "title" output.check 817 | howpublished address new.block.checkb 818 | howpublished output 819 | address output 820 | format.date output 821 | new.block 822 | note output 823 | fin.entry 824 | } 825 | 826 | FUNCTION {inbook} 827 | { output.bibitem 828 | author empty$ 829 | { format.editors "author and editor" output.check } 830 | { format.authors output.nonnull 831 | crossref missing$ 832 | { "author and editor" editor either.or.check } 833 | 'skip$ 834 | if$ 835 | } 836 | if$ 837 | new.block 838 | format.btitle "title" output.check 839 | crossref missing$ 840 | { format.bvolume output 841 | %format.chapter.pages "chapter and pages" output.check 842 | new.block 843 | format.number.series output 844 | new.sentence 845 | publisher "publisher" output.check 846 | address output 847 | } 848 | { format.chapter.pages "chapter and pages" output.check 849 | new.block 850 | format.book.crossref output.nonnull 851 | } 852 | if$ 853 | format.edition output 854 | pages empty$ 855 | { format.date output } 856 | { format.date ":" * format.pages * output } 857 | if$ 858 | % format.date "." * format.pages * output 859 | fin.entry 860 | } 861 | 862 | FUNCTION {incollection} 863 | { output.bibitem 864 | format.authors "author" output.check 865 | new.block 866 | format.title "title" output.check 867 | new.block 868 | crossref missing$ 869 | { format.in.ed.booktitle "booktitle" output.check 870 | %format.bvolume output 871 | format.number.series output 872 | format.chapter.pages output 873 | new.sentence 874 | format.address.publisher output 875 | %address output 876 | %publisher "publisher" output.check 877 | %format.edition output 878 | % format.date "year" output.check 879 | % format.date ". " * format.pages * output 880 | format.date ":" * format.pages * output 881 | } 882 | { format.incoll.inproc.crossref output.nonnull 883 | format.chapter.pages output 884 | } 885 | if$ 886 | % new.block 887 | % note output 888 | fin.entry 889 | } 890 | 891 | FUNCTION {inproceedings} 892 | { output.bibitem 893 | format.authors "author" output.check 894 | new.block 895 | format.title "title" output.check 896 | new.block 897 | crossref missing$ 898 | { format.in.ed.booktitle "booktitle" output.check 899 | format.bvolume output 900 | %format.number.series output 901 | %format.pages output 902 | address empty$ 903 | { organization publisher new.sentence.checkb 904 | organization output 905 | publisher output 906 | %format.date "year" output.check 907 | year output 908 | } 909 | { %address output.nonnull 910 | format.address.publisher output 911 | %format.date "year" output.check 912 | year output 913 | new.sentence 914 | organization output 915 | %publisher output 916 | } 917 | if$ 918 | new.block 919 | format.pages output 920 | %remove.dots 921 | } 922 | { format.incoll.inproc.crossref output.nonnull 923 | format.pages output 924 | } 925 | if$ 926 | new.block 927 | note output 928 | fin.entry 929 | } 930 | 931 | FUNCTION {conference} { inproceedings } 932 | 933 | FUNCTION {manual} 934 | { output.bibitem 935 | author empty$ 936 | { organization empty$ 937 | 'skip$ 938 | { organization output.nonnull 939 | address output 940 | } 941 | if$ 942 | } 943 | { format.authors output.nonnull } 944 | if$ 945 | new.block 946 | format.btitle "title" output.check 947 | author empty$ 948 | { organization empty$ 949 | { address new.block.checka 950 | address output 951 | } 952 | 'skip$ 953 | if$ 954 | } 955 | { organization address new.block.checkb 956 | organization output 957 | address output 958 | } 959 | if$ 960 | format.edition output 961 | format.date output 962 | new.block 963 | note output 964 | fin.entry 965 | } 966 | 967 | FUNCTION {masterthesis.type} 968 | { lang empty$ 969 | { "\thumasterbib" } 970 | { "[硕士学位论文]" } 971 | if$ 972 | } 973 | 974 | FUNCTION {mastersthesis} 975 | { output.bibitem 976 | format.authors "author" add.period$ output.check 977 | new.block 978 | % format.title remove.dots ": " * masterthesis.type * output 979 | format.title remove.dots masterthesis.type * output 980 | new.block 981 | format.address.school output 982 | %format.madd "address" output.check 983 | %school "school" output.check 984 | format.date "year" output.check 985 | new.block 986 | note output 987 | fin.entry 988 | } 989 | 990 | FUNCTION {misc} 991 | { output.bibitem 992 | format.authors output 993 | title howpublished new.block.checkb 994 | format.title output 995 | howpublished new.block.checka 996 | howpublished output 997 | format.date output 998 | format.url output 999 | new.block 1000 | note output 1001 | fin.entry 1002 | empty.misc.check 1003 | } 1004 | 1005 | FUNCTION {phdthesis.type} 1006 | { lang empty$ 1007 | { "\thuphdbib" } 1008 | { "[博士学位论文]" } 1009 | if$ 1010 | } 1011 | 1012 | FUNCTION {phdthesis} 1013 | { output.bibitem 1014 | format.authors "author" add.period$ output.check 1015 | new.block 1016 | % format.title remove.dots ": " * phdthesis.type * output 1017 | format.title remove.dots phdthesis.type * output 1018 | new.block 1019 | format.address.school output 1020 | %address output 1021 | %school "school" output.check 1022 | format.date "year" output.check 1023 | new.block 1024 | note output 1025 | fin.entry 1026 | } 1027 | 1028 | FUNCTION {proceedings} 1029 | { output.bibitem 1030 | editor empty$ 1031 | { organization output } 1032 | { format.editors output.nonnull } 1033 | if$ 1034 | new.block 1035 | format.btitle "title" output.check 1036 | format.bvolume output 1037 | format.number.series output 1038 | address empty$ 1039 | { editor empty$ 1040 | { publisher new.sentence.checka } 1041 | { organization publisher new.sentence.checkb 1042 | organization output 1043 | } 1044 | if$ 1045 | publisher output 1046 | format.date "year" output.check 1047 | } 1048 | { address output.nonnull 1049 | format.date "year" output.check 1050 | new.sentence 1051 | editor empty$ 1052 | 'skip$ 1053 | { organization output } 1054 | if$ 1055 | publisher output 1056 | } 1057 | if$ 1058 | new.block 1059 | note output 1060 | fin.entry 1061 | } 1062 | 1063 | FUNCTION {techreport} 1064 | { output.bibitem 1065 | format.authors "author" output.check 1066 | new.block 1067 | format.title "title" output.check 1068 | new.block 1069 | format.tr.number output.nonnull 1070 | institution "institution" output.check 1071 | address output 1072 | format.date "year" output.check 1073 | format.url output 1074 | new.block 1075 | note output 1076 | fin.entry 1077 | } 1078 | 1079 | FUNCTION {unpublished} 1080 | { output.bibitem 1081 | format.authors "author" output.check 1082 | new.block 1083 | format.title "title" output.check 1084 | new.block 1085 | note "note" output.check 1086 | format.date output 1087 | fin.entry 1088 | } 1089 | 1090 | FUNCTION {default.type} { misc } 1091 | 1092 | MACRO {jan} {"January"} 1093 | 1094 | MACRO {feb} {"February"} 1095 | 1096 | MACRO {mar} {"March"} 1097 | 1098 | MACRO {apr} {"April"} 1099 | 1100 | MACRO {may} {"May"} 1101 | 1102 | MACRO {jun} {"June"} 1103 | 1104 | MACRO {jul} {"July"} 1105 | 1106 | MACRO {aug} {"August"} 1107 | 1108 | MACRO {sep} {"September"} 1109 | 1110 | MACRO {oct} {"October"} 1111 | 1112 | MACRO {nov} {"November"} 1113 | 1114 | MACRO {dec} {"December"} 1115 | 1116 | MACRO {acmcs} {"ACM Computing Surveys"} 1117 | 1118 | MACRO {acta} {"Acta Informatica"} 1119 | 1120 | MACRO {cacm} {"Communications of the ACM"} 1121 | 1122 | MACRO {ibmjrd} {"IBM Journal of Research and Development"} 1123 | 1124 | MACRO {ibmsj} {"IBM Systems Journal"} 1125 | 1126 | MACRO {ieeese} {"IEEE Transactions on Software Engineering"} 1127 | 1128 | MACRO {ieeetc} {"IEEE Transactions on Computers"} 1129 | 1130 | MACRO {ieeetcad} 1131 | {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"} 1132 | 1133 | MACRO {ipl} {"Information Processing Letters"} 1134 | 1135 | MACRO {jacm} {"Journal of the ACM"} 1136 | 1137 | MACRO {jcss} {"Journal of Computer and System Sciences"} 1138 | 1139 | MACRO {scp} {"Science of Computer Programming"} 1140 | 1141 | MACRO {sicomp} {"SIAM Journal on Computing"} 1142 | 1143 | MACRO {tocs} {"ACM Transactions on Computer Systems"} 1144 | 1145 | MACRO {tods} {"ACM Transactions on Database Systems"} 1146 | 1147 | MACRO {tog} {"ACM Transactions on Graphics"} 1148 | 1149 | MACRO {toms} {"ACM Transactions on Mathematical Software"} 1150 | 1151 | MACRO {toois} {"ACM Transactions on Office Information Systems"} 1152 | 1153 | MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"} 1154 | 1155 | MACRO {tcs} {"Theoretical Computer Science"} 1156 | 1157 | READ 1158 | 1159 | STRINGS { longest.label } 1160 | 1161 | INTEGERS { number.label longest.label.width } 1162 | 1163 | FUNCTION {initialize.longest.label} 1164 | { "" 'longest.label := 1165 | #1 'number.label := 1166 | #0 'longest.label.width := 1167 | } 1168 | 1169 | FUNCTION {longest.label.pass} 1170 | { number.label int.to.str$ 'label := 1171 | number.label #1 + 'number.label := 1172 | label width$ longest.label.width > 1173 | { label 'longest.label := 1174 | label width$ 'longest.label.width := 1175 | } 1176 | 'skip$ 1177 | if$ 1178 | } 1179 | 1180 | EXECUTE {initialize.longest.label} 1181 | 1182 | ITERATE {longest.label.pass} 1183 | 1184 | FUNCTION {begin.bib} 1185 | { preamble$ empty$ 1186 | 'skip$ 1187 | { preamble$ write$ newline$ } 1188 | if$ 1189 | "\begin{thebibliography}{" longest.label * "}" * write$ newline$ 1190 | } 1191 | 1192 | EXECUTE {begin.bib} 1193 | 1194 | EXECUTE {init.state.consts} 1195 | 1196 | ITERATE {call.type$} 1197 | 1198 | FUNCTION {end.bib} 1199 | { newline$ 1200 | "\end{thebibliography}" write$ newline$ 1201 | } 1202 | 1203 | EXECUTE {end.bib} 1204 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thuthesis.cfg: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `thuthesis.cfg', 3 | %% generated with the docstrip utility. 4 | %% 5 | %% The original source files were: 6 | %% 7 | %% thuthesis.dtx (with options: `cfg') 8 | %% 9 | %% This is a generated file. 10 | %% 11 | %% Copyright (C) 2005-2009 by Xue Ruini 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 | %% 24 | %% This is the configuration file of the thuthesis package with LaTeX2e. 25 | %% 26 | 27 | \ProvidesFile{thuthesis.cfg} 28 | [2008/02/28 4.5.1 Tsinghua University Thesis Template] 29 | \theoremsymbol{\ensuremath{\square}} 30 | \newtheorem*{proof}{证明} 31 | \theoremstyle{plain} 32 | \theoremsymbol{} 33 | \theoremseparator{:} 34 | \newtheorem{assumption}{假设}[chapter] 35 | \newtheorem{definition}{定义}[chapter] 36 | \newtheorem{proposition}{命题}[chapter] 37 | \newtheorem{lemma}{引理}[chapter] 38 | \newtheorem{theorem}{定理}[chapter] 39 | \newtheorem{axiom}{公理}[chapter] 40 | \newtheorem{corollary}{推论}[chapter] 41 | \newtheorem{exercise}{练习}[chapter] 42 | \newtheorem{example}{例}[chapter] 43 | \newtheorem{remark}{注释}[chapter] 44 | \newtheorem{problem}{问题}[chapter] 45 | \newtheorem{conjecture}{猜想}[chapter] 46 | \renewcommand\contentsname{目\hspace{1em}录} 47 | \renewcommand\listfigurename{插图索引} 48 | \renewcommand\listtablename{表格索引} 49 | \newcommand\listequationname{公式索引} 50 | \newcommand\equationname{公式} 51 | \renewcommand\bibname{参考文献} 52 | \renewcommand\indexname{索引} 53 | \renewcommand\figurename{图} 54 | \renewcommand\tablename{表} 55 | \newcommand\CJKprepartname{第} 56 | \newcommand\CJKpartname{部分} 57 | \newcommand\CJKthepart{\CJKnumber{\@arabic\c@part}} 58 | \newcommand\CJKprechaptername{第} 59 | \newcommand\CJKchaptername{章} 60 | \newcommand\CJKthechapter{\@arabic\c@chapter} 61 | \renewcommand\chaptername{\CJKprechaptername~\CJKthechapter~\CJKchaptername} 62 | \renewcommand\appendixname{附录} 63 | \ifthu@bachelor 64 | \newcommand{\cabstractname}{中文摘要} 65 | \newcommand{\eabstractname}{ABSTRACT} 66 | \else 67 | \newcommand{\cabstractname}{摘\hspace{1em}要} 68 | \newcommand{\eabstractname}{Abstract} 69 | \fi 70 | \let\CJK@todaysave=\today 71 | \def\CJK@todaysmall@short{\the\year 年 \the\month 月} 72 | \def\CJK@todaysmall{\CJK@todaysmall \the\day 日} 73 | \def\CJK@todaybig@short{\CJKdigits{\the\year} 年 \CJKnumber{\the\month} 月} 74 | \def\CJK@todaybig{\CJK@todaybig@short \CJKnumber{\the\day} 日} 75 | \def\CJK@today{\CJK@todaysmall} 76 | \renewcommand\today{\CJK@today} 77 | \newcommand\CJKtoday[1][1]{% 78 | \ifcase#1\def\CJK@today{\CJK@todaysave} 79 | \or\def\CJK@today{\CJK@todaysmall} 80 | \or\def\CJK@today{\CJK@todaybig} 81 | \fi} 82 | \def\thu@ckeywords@separator{ 83 | \ifthu@bachelor\hspace{1em} 84 | \else 85 | \ifthu@master\hspace{2em}\else;\fi 86 | \fi} 87 | \def\thu@ekeywords@separator{ 88 | \ifthu@bachelor\hspace{1em} 89 | \else 90 | \ifthu@master\hspace{2em}\else;\fi 91 | \fi} 92 | \def\thu@title@sep{:} 93 | \def\thu@secretlevel{秘密} 94 | \def\thu@secretyear{\the\year} 95 | \def\thu@schoolename{清华大学} 96 | \def\thu@bachelor@subtitle{综合论文训练} 97 | \def\thu@bachelor@title@pre{题目} 98 | \def\thu@bachelor@departmenttitle{系别} 99 | \def\thu@bachelor@majortitle{专业} 100 | \def\thu@bachelor@authortitle{姓名} 101 | \def\thu@secretlevel@inner{内部} 102 | \def\thu@secret@title{% 103 | \thu@secretlevel\ifx\thu@secretlevel\thu@secretlevel@inner\else ★\fi% 104 | \hspace{2em}\thu@secretyear\hspace{1em}年} 105 | \def\thu@apply{(申请清华大学\thu@cdegree 学位论文)} 106 | \def\thu@cdepartmenttitle{培养单位} 107 | \def\thu@cmajortitle{学科} 108 | \def\thu@cauthortitle{研究生} 109 | \def\thu@csupervisortitle{指导教师} 110 | \ifthu@bachelor 111 | \def\thu@cassosupertitle{辅导教师} 112 | \else 113 | \def\thu@cassosupertitle{副指导教师} 114 | \fi 115 | \def\thu@ccosupertitle{% 116 | \ifthu@doctor 联合导师\else \ifthu@master 联合指导教师\fi\fi} 117 | \cdate{\ifthu@bachelor\CJK@todaysmall@short\else\CJK@todaybig@short\fi} 118 | \edate{\ifcase \month \or January\or February\or March\or April\or May% 119 | \or June\or July \or August\or September\or October\or November 120 | \or December\fi\unskip,\ \ \the\year} 121 | \newcommand{\thu@authtitle}{关于学位论文使用授权的说明} 122 | \newcommand{\thu@authorization}{% 123 | \ifthu@bachelor 124 | 本人完全了解清华大学有关保留、使用学位论文的规定,即:学校有权保留学位 125 | 论文的复印件,允许该论文被查阅和借阅;学校可以公布该论文的全部或部分内 126 | 容,可以采用影印、缩印或其他复制手段保存该论文。 127 | \else 128 | 本人完全了解清华大学有关保留、使用学位论文的规定,即: 129 | 130 | 清华大学拥有在著作权法规定范围内学位论文的使用权,其中包括:(1)已获学位的研究生 131 | 必须按学校规定提交学位论文,学校可以采用影印、缩印或其他复制手段保存研究生上交的 132 | 学位论文;(2)为教学和科研目的,学校可以将公开的学位论文作为资料在图书馆、资料 133 | 室等场所供校内师生阅读,或在校园网上供校内师生浏览部分内容\ifthu@master 。\else ; 134 | (3)根据《中华人民共和国学位条例暂行实施办法》,向国家图书馆报送可以公开的学位 135 | 论文。\fi 136 | 137 | 本人保证遵守上述规定。 138 | \fi} 139 | \newcommand{\thu@authorizationaddon}{% 140 | \ifthu@bachelor(涉密的学位论文在解密后应遵守此规定)\else (保密的论文在解密后应遵守此规定)\fi} 141 | \newcommand{\thu@authorsig}{\ifthu@bachelor 签\hskip1em名:\else 作者签名:\fi} 142 | \newcommand{\thu@teachersig}{导师签名:} 143 | \newcommand{\thu@frontdate}{日\hspace{2em}期:} 144 | \newcommand{\thu@ckeywords@title}{关键词:} 145 | \newcommand{\thu@denotation@name}{主要符号对照表} 146 | \newcommand{\thu@ackshortname}{致谢} 147 | \newcommand{\thu@ackname}{致\hspace{1em}谢} 148 | \newcommand{\thu@acklongname}{致谢与声明} 149 | \newcommand{\thu@declareshortname}{声明} 150 | \newcommand{\thu@declarename}{声\hspace{1em}明} 151 | \newcommand{\thu@declaretext}{本人郑重声明:所呈交的学位论文,是本人在导师指导下 152 | ,独立进行研究工作所取得的成果。尽我所知,除文中已经注明引用的内容外,本学位论 153 | 文的研究成果不包含任何他人享有著作权的内容。对本论文所涉及的研究工作做出贡献的 154 | 其他个人和集体,均已在文中以明确方式标明。} 155 | \newcommand{\thu@signature}{签\hspace{1em}名:} 156 | \newcommand{\thu@backdate}{日\hspace{1em}期:} 157 | \ifthu@bachelor 158 | \newcommand{\thu@resume@title}{在学期间参加课题的研究成果} 159 | \else 160 | \newcommand{\thu@resume@title}{个人简历、在学期间发表的学术论文与研究成果} 161 | \fi 162 | \endinput 163 | %% 164 | %% End of file `thuthesis.cfg'. 165 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thuthesis.ins: -------------------------------------------------------------------------------- 1 | %% 2 | %% Copyright (C) 2005-2008 by Ruini Xue 3 | %% 4 | %% This file is part of the ThuThesis package project. 5 | %% --------------------------------------------------- 6 | %% 7 | %% This file may be distributed and/or modified under the 8 | %% conditions of the LaTeX Project Public License, either version 1.3a 9 | %% of this license or (at your option) any later version. 10 | %% The latest version of this license is in: 11 | %% 12 | %% http://www.latex-project.org/lppl.txt 13 | %% 14 | %% and version 1.3a or later is part of all distributions of LaTeX 15 | %% version 2004/10/01 or later. 16 | %% 17 | %% $Id: thuthesis.ins 191 2009-01-05 16:38:56Z littleleo $ 18 | 19 | \input docstrip 20 | 21 | \askforoverwritefalse 22 | %\askonceonly 23 | \showprogress 24 | \keepsilent 25 | 26 | \usedir{tex/latex/thuthesis} 27 | 28 | \preamble 29 | 30 | This is a generated file. 31 | 32 | Copyright (C) 2005-\the\year by Ruini Xue 33 | 34 | This file may be distributed and/or modified under the 35 | conditions of the LaTeX Project Public License, either version 1.3a 36 | of this license or (at your option) any later version. 37 | The latest version of this license is in: 38 | 39 | http://www.latex-project.org/lppl.txt 40 | 41 | and version 1.3a or later is part of all distributions of LaTeX 42 | version 2004/10/01 or later. 43 | 44 | To produce the documentation run the original source files ending with `.dtx' 45 | through LaTeX. 46 | 47 | \endpreamble 48 | 49 | \declarepreamble\cfgpreamble 50 | 51 | This is a generated file. 52 | 53 | Copyright (C) 2005-\the\year by Xue Ruini 54 | 55 | This file may be distributed and/or modified under the 56 | conditions of the LaTeX Project Public License, either version 1.3a 57 | of this license or (at your option) any later version. 58 | The latest version of this license is in: 59 | 60 | http://www.latex-project.org/lppl.txt 61 | 62 | and version 1.3a or later is part of all distributions of LaTeX 63 | version 2004/10/01 or later. 64 | 65 | 66 | This is the configuration file of the thuthesis package with LaTeX2e. 67 | 68 | \endpreamble 69 | 70 | \generate{\file{\jobname.cls}{\from{\jobname.dtx}{cls}} 71 | \usepreamble\cfgpreamble 72 | \file{\jobname.cfg}{\from{\jobname.dtx}{cfg}} 73 | \nopreamble\nopostamble 74 | \file{dtx-style.sty}{\from{\jobname.dtx}{dtx-style}}} 75 | 76 | \ifToplevel{ 77 | \Msg{***********************************************************} 78 | \Msg{*} 79 | \Msg{* To finish the installation you have to move the following} 80 | \Msg{* files into a directory searched by TeX:} 81 | \Msg{*} 82 | \Msg{* The recommended directory is TEXMF/tex/latex/thuthesis} 83 | \Msg{*} 84 | \Msg{* \space\space thuthesis.cls} 85 | \Msg{* \space\space thuthesis.cfg} 86 | \Msg{*} 87 | \Msg{* To produce the documentation run the files ending with} 88 | \Msg{* `.dtx' through LaTeX.} 89 | \Msg{*} 90 | \Msg{* Happy TeXing!} 91 | \Msg{***********************************************************} 92 | } 93 | 94 | \endbatchfile 95 | -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thuthesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnblogs-/latex-model/062a53c2fc65da299c598009f4d6d02d7a99e500/清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thuthesis.pdf -------------------------------------------------------------------------------- /清华大学LaTex模板/清华大学模板/thuthesis@UTF8-4.5.1/thutils.sty: -------------------------------------------------------------------------------- 1 | \ProvidesPackage{thutils}[2007/11/30 4.1 put any packages you would like to use here] 2 | 3 | % 处理数学公式中的黑斜体的宏包 4 | %\RequirePackage{bm} 5 | 6 | 7 | % 不同于~|\mathcal| or |\mathfrak| 之类的英文花体字体 8 | %\RequirePackage{mathrsfs} 9 | 10 | % 表格中支持跨行 11 | \RequirePackage{multirow} 12 | 13 | % 跨页表格 14 | %\RequirePackage{longtable} 15 | 16 | % 固定宽度的表格 17 | \RequirePackage{tabularx} 18 | 19 | % 表格中的反斜线 20 | \RequirePackage{slashbox} 21 | 22 | % 确定浮动对象的位置,可以使用~H,强制将浮动对象放到这里(可能效果很差) 23 | \RequirePackage{float} 24 | 25 | % 浮动图形控制宏包。 26 | % 允许上一个~section 的浮动图形出现在下一个~section 的开始部分 27 | % 该宏包提供处理浮动对象的~|\FloatBarrier| 命令,使所有未处 28 | % 理的浮动图形立即被处理。这三个宏包仅供参考,未必使用: 29 | % \RequirePackage[below]{placeins} 30 | % \RequirePackage{floatflt} % 图文混排用宏包 31 | % \RequirePackage{rotating} % 图形和表格的控制旋转 32 | 33 | % 给自定义的宏后面自动加空白 34 | % \RequirePackage{xspace} 35 | 36 | 37 | % 定义自己常用的东西 38 | \newcommand{\china}{中华人民共和国} 39 | 40 | \endinput 41 | --------------------------------------------------------------------------------