summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/pkuthss/example-utf8
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-04-15 17:14:24 +0000
committerKarl Berry <karl@freefriends.org>2014-04-15 17:14:24 +0000
commit9470e156f0e3d343b542b1c7f04828b17508a929 (patch)
tree0e3d13ba48668ad82c3044d89dfd089059d7179b /Master/texmf-dist/doc/latex/pkuthss/example-utf8
parent7eb3cdafe5d3017d40c3492ff44b9cb7da42b25d (diff)
pkuthss (11apr14)
git-svn-id: svn://tug.org/texlive/trunk@33455 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/pkuthss/example-utf8')
-rwxr-xr-xMaster/texmf-dist/doc/latex/pkuthss/example-utf8/Make.bat48
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/Makefile62
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/abstract.tex12
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/acknowledge.tex8
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/chap1.tex8
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/conclusion.tex8
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/copyright.tex47
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/encl1.tex8
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/introduction.tex8
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/originauth.tex88
-rwxr-xr-xMaster/texmf-dist/doc/latex/pkuthss/example-utf8/img/Make.bat31
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Makefile37
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkulogo.eps146
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkuword.eps273
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.bib10
-rw-r--r--Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.tex101
16 files changed, 895 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Make.bat b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Make.bat
new file mode 100755
index 00000000000..c1125139f4f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Make.bat
@@ -0,0 +1,48 @@
+@echo off
+
+@rem vim:ts=4:sw=4
+@rem
+@rem Copyright (c) 2008-2009 solvethis
+@rem Copyright (c) 2010-2012 Casper Ti. Vector
+@rem Public domain.
+
+set JOBNAME=thesis
+@rem 这个变量的值可以为 latex 或 pdflatex。
+set LATEX=latex
+@rem 如果无法使用 biber,可以改为“bibtex”。
+set BIBTEX=biber -l zh__pinyin
+set GBK2UNI=gbk2uni
+set DVIPDF=dvipdfmx
+
+if "%LATEX%"=="latex" (set DODVIPDF=%DVIPDF% %JOBNAME%
+) else (set DODVIPDF=echo No need to run %DVIPDF%.)
+@rem 用 pdflatex 时可能需要使用 gbk2uni 转换 .out 文件编码以防书签乱码。
+if "%LATEX%"=="pdflatex" (@rem set DOGBK2UNI=%GBK2UNI% %JOBNAME%
+) else (set DOGBK2UNI=echo No need to run %GBK2UNI%.)
+if "%1"=="" goto doc
+if "%1"=="doc" goto doc
+if "%1"=="clear" (goto clear) else (goto usage)
+
+:doc
+cd img
+call Make.bat
+cd ..
+%LATEX% %JOBNAME%
+%BIBTEX% %JOBNAME%
+%DOGBK2UNI%
+%LATEX% %JOBNAME%
+%LATEX% %JOBNAME%
+%DODVIPDF%
+goto end
+
+:clear
+del *.aux *.bbl *.bcf *.blg *.dvi *.lof *.log *.lot *.run.xml *.toc *.out
+del missfont.log chap\*.aux
+goto end
+
+:usage
+echo %0 [doc] [clear]
+goto end
+
+:end
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Makefile b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Makefile
new file mode 100644
index 00000000000..375f8a83269
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/Makefile
@@ -0,0 +1,62 @@
+# vim:ts=4:sw=4
+#
+# Copyright (c) 2008-2009 solvethis
+# Copyright (c) 2010-2012 Casper Ti. Vector
+# Public domain.
+
+# 琚紪璇戠殑涓绘枃浠剁殑鏂囦欢鍚嶏紝涓嶅寘鎷墿灞曞悕銆
+JOBNAME = thesis
+# 杩欎釜鍙橀噺鐨勫煎彲浠ヤ负 latex銆乸dflatex 鎴 xelatex銆
+LATEX = latex
+# 濡傛灉鏃犳硶浣跨敤 biber锛屽彲浠ユ敼涓衡渂ibtex鈥濄
+BIBTEX = biber -l zh__pinyin
+GBK2UNI = gbk2uni
+DVIPDF = dvipdfmx
+
+# 濡傛灉鐢 LaTeX 缂栬瘧锛屽垯浣跨敤 dvipdfmx 灏 dvi 杞垚 pdf銆
+ifeq ($(LATEX), latex)
+ DODVIPDF = $(DVIPDF) $(JOBNAME)
+endif
+
+# 浣跨敤 GBK 缂栫爜鍜 pdflatex 缂栬瘧鏂瑰紡鏃讹紝鍙兘闇瑕佷娇鐢 gbk2uni 杞崲 .out
+# 鏂囦欢缂栫爜锛屼互闃蹭功绛句贡鐮併
+ifeq ($(LATEX), pdflatex)
+ # 鑰冭檻鍒板彲鑳芥湁鐢ㄦ埛鏈畨瑁 gbk2uni锛屼笖鏈夌敤鎴蜂娇鐢 UTF-8 缂栫爜锛
+ # 榛樿鐢ㄢ#鈥濇敞閲婃帀浜 DOGBK2UNI 鐨勫畾涔夈
+ # 鐢ㄦ埛鍙互鎵嬪姩鍙栨秷鍏舵敞閲婏紙鍘绘帀涓嬩竴琛屼腑鐨勨#鈥濓級銆
+ #DOGBK2UNI = $(GBK2UNI) $(JOBNAME)
+endif
+
+# 鍖哄垎鏄 Windows 鐜杩樻槸绫 UNIX 鐜銆
+# 濡傛灉鏄悗鑰咃紝鍒 GNU make 灏嗗彲浠ユ娴嬪埌宸茬粡瀹氫箟 PATH 鐜鍙橀噺銆
+ifdef PATH
+ MAKE = make
+ RM = rm -f
+else
+ MAKE = mingw32-make
+ RM = del
+endif
+
+all: img_ doc
+
+img_:
+ cd img && $(MAKE)
+
+img-clean:
+ cd img && $(MAKE) clean
+
+doc:
+ $(LATEX) $(JOBNAME)
+ $(BIBTEX) $(JOBNAME)
+ $(DOGBK2UNI)
+ $(LATEX) $(JOBNAME)
+ $(LATEX) $(JOBNAME)
+ $(DODVIPDF)
+
+clean:
+ $(RM) $(JOBNAME).{aux,bbl,bcf,blg,dvi,lof,log,lot,run.xml,toc,out{,.bak}} \
+ {missfont,texput}.log chap/*.aux
+
+distclean: clean img-clean
+ $(RM) $(JOBNAME).pdf
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/abstract.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/abstract.tex
new file mode 100644
index 00000000000..6ae3da72974
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/abstract.tex
@@ -0,0 +1,12 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\begin{cabstract}
+ 娴嬭瘯涓涓嬨
+\end{cabstract}
+
+\begin{eabstract}
+ Have a test.
+\end{eabstract}
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/acknowledge.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/acknowledge.tex
new file mode 100644
index 00000000000..5745cf63ccc
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/acknowledge.tex
@@ -0,0 +1,8 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\chapter{鑷磋阿}
+
+鎰熻阿鍏氾紝鎰熻阿鍥藉锛涙劅璋 CCTV锛屾劅璋 MTV銆
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/chap1.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/chap1.tex
new file mode 100644
index 00000000000..5a0061565d6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/chap1.tex
@@ -0,0 +1,8 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\chapter{绔犺妭}
+
+娴嬭瘯涓涓嬨
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/conclusion.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/conclusion.tex
new file mode 100644
index 00000000000..35cb13eb6f0
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/conclusion.tex
@@ -0,0 +1,8 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\specialchap{缁撹}
+
+娴嬭瘯涓涓嬨
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/copyright.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/copyright.tex
new file mode 100644
index 00000000000..637f46c08a8
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/copyright.tex
@@ -0,0 +1,47 @@
+% vim:ts=4:sw=4
+%
+% Copyright (c) 2008-2009 solvethis
+% Copyright (c) 2010-2014 Casper Ti. Vector
+% All rights reserved.
+%
+% Redistribution and use in source and binary forms, with or without
+% modification, are permitted provided that the following conditions are
+% met:
+%
+% * Redistributions of source code must retain the above copyright notice,
+% this list of conditions and the following disclaimer.
+% * Redistributions in binary form must reproduce the above copyright
+% notice, this list of conditions and the following disclaimer in the
+% documentation and/or other materials provided with the distribution.
+% * Neither the name of Peking University nor the names of its contributors
+% may be used to endorse or promote products derived from this software
+% without specific prior written permission.
+%
+% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+% IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+% THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+% PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+% EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+% PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+% PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+% LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+% SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+\chapter*{鐗堟潈澹版槑}
+{
+ \zihao{3}\linespread{1.5}\selectfont
+
+ 浠讳綍鏀跺瓨鍜屼繚绠℃湰璁烘枃鍚勭鐗堟湰鐨勫崟浣嶅拰涓汉锛
+ 鏈粡鏈鏂囦綔鑰呭悓鎰忥紝涓嶅緱灏嗘湰璁烘枃杞熶粬浜猴紝
+ 浜︿笉寰楅殢鎰忓鍒躲佹妱褰曘佹媿鐓ф垨浠ヤ换浣曟柟寮忎紶鎾
+ 鍚﹀垯涓鏃﹀紩璧锋湁纰嶄綔鑰呰憲浣滄潈涔嬮棶棰橈紝灏嗗彲鑳芥壙鎷呮硶寰嬭矗浠汇
+ \par
+ % 鑻ラ渶鎺掔増浜岀淮鐮侊紝璇峰皢浜岀淮鐮佸浘鐗囬噸鍛藉悕涓衡渂arcode鈥濓紝
+ % 杞负鍚堥傜殑鍥剧墖鏍煎紡锛屽苟鏀惧湪 img/ 鐩綍涓紝鐒跺悗鍘绘帀涓嬮潰 3 琛岀殑娉ㄩ噴銆
+ %\vfill\noindent
+ %\includegraphics[height = 5em]{img/barcode}
+ %\par
+}
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/encl1.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/encl1.tex
new file mode 100644
index 00000000000..760af0b8f1d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/encl1.tex
@@ -0,0 +1,8 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\chapter{闄勪欢}
+
+娴嬭瘯涓涓嬨
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/introduction.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/introduction.tex
new file mode 100644
index 00000000000..d7732c616ff
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/introduction.tex
@@ -0,0 +1,8 @@
+% vim:ts=4:sw=4
+% Copyright (c) 2014 Casper Ti. Vector
+% Public domain.
+
+\specialchap{搴忚█}
+
+娴嬭瘯涓涓嬨
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/originauth.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/originauth.tex
new file mode 100644
index 00000000000..f73b5f95591
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/chap/originauth.tex
@@ -0,0 +1,88 @@
+% vim:ts=4:sw=4
+%
+% Copyright (c) 2008-2009 solvethis
+% Copyright (c) 2010-2013 Casper Ti. Vector
+% All rights reserved.
+%
+% Redistribution and use in source and binary forms, with or without
+% modification, are permitted provided that the following conditions are
+% met:
+%
+% * Redistributions of source code must retain the above copyright notice,
+% this list of conditions and the following disclaimer.
+% * Redistributions in binary form must reproduce the above copyright
+% notice, this list of conditions and the following disclaimer in the
+% documentation and/or other materials provided with the distribution.
+% * Neither the name of Peking University nor the names of its contributors
+% may be used to endorse or promote products derived from this software
+% without specific prior written permission.
+%
+% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+% IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+% THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+% PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+% EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+% PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+% PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+% LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+% SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+% 鍘熷垱鎬у0鏄庡拰浣跨敤鎺堟潈璇存槑椤典笉闇瑕佽璁㈠埌璁烘枃涓紝鏁呬笉鏄剧ず椤电爜銆
+\cleardoublepage\thispagestyle{empty}
+\newgeometry{height = 240mm, width = 150mm, ignoreheadfoot, vcentering}
+{
+ \vspace*{\fill}\linespread{1.5}\selectfont
+ \centerline{\bfseries\Large 鍖椾含澶у瀛︿綅璁烘枃鍘熷垱鎬у0鏄庡拰浣跨敤鎺堟潈璇存槑}
+
+ \vskip 4em
+ \centerline{\bfseries\Large 鍘熷垱鎬у0鏄巬
+ \vskip 1em
+
+ 鏈汉閮戦噸澹版槑锛
+ 鎵鍛堜氦鐨勫浣嶈鏂囷紝鏄湰浜哄湪瀵煎笀鐨勬寚瀵间笅锛岀嫭绔嬭繘琛岀爺绌跺伐浣滄墍鍙栧緱鐨勬垚鏋溿
+ 闄ゆ枃涓凡缁忔敞鏄庡紩鐢ㄧ殑鍐呭澶栵紝
+ 鏈鏂囦笉鍚换浣曞叾浠栦釜浜烘垨闆嗕綋宸茬粡鍙戣〃鎴栨挵鍐欒繃鐨勪綔鍝佹垨鎴愭灉銆
+ 瀵规湰鏂囩殑鐮旂┒鍋氬嚭閲嶈璐$尞鐨勪釜浜哄拰闆嗕綋锛屽潎宸插湪鏂囦腑浠ユ槑纭柟寮忔爣鏄庛
+ 鏈0鏄庣殑娉曞緥缁撴灉鐢辨湰浜烘壙鎷呫
+ \vskip 1em
+ \rightline
+ {%
+ 璁烘枃浣滆呯鍚嶏細\hspace{5em}%
+ 鏃ユ湡锛歕hspace{2em}骞碶hspace{2em}鏈圽hspace{2em}鏃%
+ }
+
+ \vskip 4em
+ \centerline{\bfseries\Large 瀛︿綅璁烘枃浣跨敤鎺堟潈璇存槑}
+ \centerline{\zihao{-4}锛堝繀椤昏璁㈠湪鎻愪氦瀛︽牎鍥句功棣嗙殑鍗板埛鏈級}
+ \vskip 1em
+
+ 鏈汉瀹屽叏浜嗚В鍖椾含澶у鍏充簬鏀堕泦銆佷繚瀛樸佷娇鐢ㄥ浣嶈鏂囩殑瑙勫畾锛屽嵆锛
+ \begin{itemize}
+ \item 鎸夌収瀛︽牎瑕佹眰鎻愪氦瀛︿綅璁烘枃鐨勫嵃鍒锋湰鍜岀數瀛愮増鏈紱
+ \item 瀛︽牎鏈夋潈淇濆瓨瀛︿綅璁烘枃鐨勫嵃鍒锋湰鍜岀數瀛愮増锛
+ 骞舵彁渚涚洰褰曟绱笌闃呰鏈嶅姟锛屽湪鏍″洯缃戜笂鎻愪緵鏈嶅姟锛
+ \item 瀛︽牎鍙互閲囩敤褰卞嵃銆佺缉鍗般佹暟瀛楀寲鎴栧叾瀹冨鍒舵墜娈典繚瀛樿鏂囷紱
+ \item 鍥犳煇绉嶇壒娈婂師鍥犻渶瑕佸欢杩熷彂甯冨浣嶈鏂囩數瀛愮増锛
+ 鎺堟潈瀛︽牎鍦 $\square$\nobreakspace{}涓骞 / %
+ $\square$\nobreakspace{}涓ゅ勾 / %
+ $\square$\nobreakspace{}涓夊勾浠ュ悗鍦ㄦ牎鍥綉涓婂叏鏂囧彂甯冦
+ \end{itemize}
+ \par锛堜繚瀵嗚鏂囧湪瑙e瘑鍚庨伒瀹堟瑙勫畾锛
+ \vskip 1em
+ \rightline
+ {%
+ 璁烘枃浣滆呯鍚嶏細\hspace{5em}瀵煎笀绛惧悕锛歕hspace{5em}%
+ 鏃ユ湡锛歕hspace{2em}骞碶hspace{2em}鏈圽hspace{2em}鏃%
+ }
+
+ % 鑻ラ渶鎺掔増浜岀淮鐮侊紝璇峰皢浜岀淮鐮佸浘鐗囬噸鍛藉悕涓衡渂arcode鈥濓紝
+ % 杞负鍚堥傜殑鍥剧墖鏍煎紡锛屽苟鏀惧湪 img/ 鐩綍涓紝鐒跺悗鍘绘帀涓嬮潰 2 琛岀殑娉ㄩ噴銆
+ %\vskip 4em \noindent
+ %\includegraphics[height = 5em]{img/barcode}
+
+ \vspace*{\fill}\par
+}
+\restoregeometry
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Make.bat b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Make.bat
new file mode 100755
index 00000000000..c5f78b3a9ea
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Make.bat
@@ -0,0 +1,31 @@
+@echo off
+
+@rem vim:ts=4:sw=4
+@rem
+@rem Copyright (c) 2008-2009 solvethis
+@rem Copyright (c) 2010-2012 Casper Ti. Vector
+@rem Public domain.
+
+set GS=gswin32c
+set GSOPTS=-q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite
+set WIDTHOPT=-dDEVICEWIDTHPOINTS=
+set HEIGHTOPT=-dDEVICEHEIGHTPOINTS=
+set OUTPUTOPT=-sOutputFile=
+
+if "%1"=="" goto pdf
+if "%1"=="clean" (goto clean) else (goto usage)
+
+:pdf
+%GS% %GSOPTS% %WIDTHOPT%400 %HEIGHTOPT%400 %OUTPUTOPT%pkulogo.pdf -f pkulogo.eps
+%GS% %GSOPTS% %WIDTHOPT%525 %HEIGHTOPT%150 %OUTPUTOPT%pkuword.pdf -f pkuword.eps
+goto end
+
+:clean
+del pkulogo.pdf pkuword.pdf
+goto end
+
+:usage
+echo %0 [pdf] [clean]
+
+:end
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Makefile b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Makefile
new file mode 100644
index 00000000000..2068c24714c
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/Makefile
@@ -0,0 +1,37 @@
+# vim:ts=4:sw=4
+#
+# Copyright (c) 2008-2009 solvethis
+# Copyright (c) 2010-2012 Casper Ti. Vector
+# Public domain.
+
+# 鐩存帴浣跨敤 pkulogo.eps 浣滀负璁烘枃灏侀潰鍥剧墖涔熸槸鍙鐨勶紝
+# 鍥犱负瀹冧娇鐢ㄧ殑 Times-Bold 瀛椾綋涓鑸搷浣滅郴缁熼兘鏈夈
+# 杩欐牱鐢 LaTeX + dvipdfm 鎴 XeLaTeX 鏂瑰紡鏄彲浠ョ紪璇戞垚鍔熺殑銆
+# 鍙互浣跨敤 ghostscript 灏 eps 鏂囦欢杞崲涓 鍜 pdf 鏍煎紡锛
+# 鍒 pdfLaTeX 鏂瑰紡涔熷彲浠ョ紪璇戞垚鍔熴
+
+OPTS = -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite
+WIDTHOPT = -dDEVICEWIDTHPOINTS=
+HEIGHTOPT = -dDEVICEHEIGHTPOINTS=
+OUTPUTOPT = -sOutputFile=
+
+# 鍖哄垎鏄 Windows 鐜杩樻槸绫 UNIX 鐜銆
+ifdef PATH
+ GS = gs
+ RM = rm -f
+else
+ GS = gswin32c
+ RM = del
+endif
+
+all: pkulogo.pdf pkuword.pdf
+
+pkulogo.pdf: pkulogo.eps
+ $(GS) $(OPTS) $(WIDTHOPT)400 $(HEIGHTOPT)400 $(OUTPUTOPT)$@ -f $<
+
+pkuword.pdf: pkuword.eps
+ $(GS) $(OPTS) $(WIDTHOPT)525 $(HEIGHTOPT)150 $(OUTPUTOPT)$@ -f $<
+
+clean:
+ $(RM) pkulogo.pdf pkuword.pdf
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkulogo.eps b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkulogo.eps
new file mode 100644
index 00000000000..638b429db44
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkulogo.eps
@@ -0,0 +1,146 @@
+%!PS
+%%BoundingBox: 0 0 400 400
+%%Pages: 1
+%%Page: 1 1
+
+% Copyright (c) 2008-2009 solvethis
+% Copyright (c) 2010-2012 Casper Ti. Vector
+% All rights reserved.
+%
+% Redistribution and use in source and binary forms, with or without
+% modification, are permitted provided that the following conditions are
+% met:
+%
+% * Redistributions of source code must retain the above copyright notice,
+% this list of conditions and the following disclaimer.
+% * Redistributions in binary form must reproduce the above copyright
+% notice, this list of conditions and the following disclaimer in the
+% documentation and/or other materials provided with the distribution.
+% * Neither the name of Peking University nor the names of its contributors
+% may be used to endorse or promote products derived from this software
+% without specific prior written permission.
+%
+% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+% IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+% THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+% PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+% EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+% PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+% PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+% LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+% SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+% 璁剧疆鍖楀ぇ绾㈢殑鑹插硷紙http://web5.pku.edu.cn/bs/cjwt/锛岄棶棰 5锛夈
+% 瑕佹兂灏嗛鑹叉敼涓洪粦鑹诧紝鍙渶灏嗕笅闈竴琛屾敼涓衡0 setgray鈥濆嵆鍙
+0.0 1.0 1.0 0.45 setcmykcolor
+% 璁剧疆绾跨殑灞炴с
+1 setlinecap
+1 setlinejoin
+
+% 灏嗗潗鏍囧師鐐圭Щ鍒板浘鐗囩殑涓績銆
+200 200 translate
+% 浣滃嚭澶栧渾銆
+newpath
+6 setlinewidth
+0 0 195 0 360 arc
+stroke
+% 浣滃嚭鍐呭渾銆
+newpath
+5 setlinewidth
+0 0 143 0 360 arc
+stroke
+
+% 鎻忓嚭鈥滃寳澶р濆瓧鏍枫
+newpath
+0 setlinewidth
+-10 101 moveto
+-10 101 -10 38 lineto
+-10 35 -14 29 -19 28 curveto
+-30 28 -60 15 -89 -26 curveto
+-104 -39 -108 -24 -105 -16 curveto
+-76 27 -36 45 -32 45 curveto
+-30 46 -29 47 -29 49 curveto
+-29 49 -29 68 lineto
+-29 69 -30 69 -31 69 curveto
+-38 67 -58 63 -83 42 curveto
+-95 35 -103 49 -94 57 curveto
+-72 74 -53 83 -31 88 curveto
+-30 88 -29 89 -29 90 curveto
+-29 90 -29 102 lineto
+-29 111 -10 111 -10 101 curveto
+10 101 moveto
+10 101 10 38 lineto
+10 35 14 29 19 28 curveto
+30 28 60 15 89 -26 curveto
+104 -39 108 -24 105 -16 curveto
+76 27 36 45 32 45 curveto
+30 46 29 47 29 49 curveto
+29 49 29 68 lineto
+29 69 30 69 31 69 curveto
+38 67 58 63 83 42 curveto
+95 35 103 49 94 57 curveto
+72 74 53 83 31 88 curveto
+30 88 29 89 29 90 curveto
+29 90 29 102 lineto
+29 111 10 111 10 101 curveto
+-11 5 moveto
+-11 4 -11 4 -12 4 curveto
+-33 2 -65 -25 -80 -58 curveto
+-82 -71 -70 -74 -63 -64 curveto
+-45 -32 -27 -17 -12 -15 curveto
+-11 -15 -11 -15 -11 -16 curveto
+-11 -16 -11 -35 lineto
+-11 -38 -11 -38 -13 -40 curveto
+-28 -48 -34 -57 -45 -85 curveto
+-48 -97 -32 -103 -28 -94 curveto
+-15 -44 15 -44 28 -94 curveto
+32 -103 48 -97 45 -85 curveto
+34 -57 28 -48 13 -40 curveto
+11 -38 11 -38 11 -35 curveto
+11 -35 11 -16 lineto
+11 -15 11 -15 12 -15 curveto
+27 -17 45 -32 63 -64 curveto
+70 -74 82 -71 80 -58 curveto
+65 -25 33 2 12 4 curveto
+11 4 11 4 11 5 curveto
+11 5 11 12 lineto
+11 25 -11 25 -11 12 curveto
+-11 12 -11 5 lineto
+133 0 moveto
+0 0 133 0 360 arc
+% 瀵瑰垰浣滃嚭鐨勭嚎鏉℃墽琛屽鍋剁浉闂寸殑濉厖锛屼娇涓棿绌哄嚭鐨勨滃寳澶р濆瓧鏍峰氨鏄忔槑鐨勩
+% 浠庤岋紝鍗充娇椤甸潰甯﹁儗鏅壊锛屾彃鍏ヨ繖涓浘鐗囨椂涔熶細寰堟甯搞
+eofill
+
+% 娣诲姞鏂囧瓧鈥淧EKING UNIVERSITY 1898鈥濄
+/Times-Bold findfont 40 scalefont setfont
+/offset { dup stringwidth pop 2 div neg 155 moveto show } def
+
+gsave 112 rotate (P) offset grestore
+gsave 98 rotate (E) offset grestore
+gsave 84 rotate (K) offset grestore
+gsave 70 rotate (I) offset grestore
+gsave 56 rotate (N) offset grestore
+gsave 41 rotate (G) offset grestore
+gsave 15 rotate (U) offset grestore
+gsave (N) offset grestore
+gsave -14 rotate (I) offset grestore
+gsave -28 rotate (V) offset grestore
+gsave -42 rotate (E) offset grestore
+gsave -56 rotate (R) offset grestore
+gsave -70 rotate (S) offset grestore
+gsave -84 rotate (I) offset grestore
+gsave -98 rotate (T) offset grestore
+gsave -112 rotate (Y) offset grestore
+
+/onset { dup stringwidth pop 2 div neg -182 moveto show } def
+
+gsave -24 rotate (1) onset grestore
+gsave -8 rotate (8) onset grestore
+gsave 8 rotate (9) onset grestore
+gsave 24 rotate (8) onset grestore
+
+showpage
+%%EOF
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkuword.eps b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkuword.eps
new file mode 100644
index 00000000000..673309b8fe5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/img/pkuword.eps
@@ -0,0 +1,273 @@
+%!PS
+%%BoundingBox: 0 0 525 150
+%%Pages: 1
+%%Page: 1 1
+
+% Copyright (c) 2008-2009 solvethis
+% Copyright (c) 2010-2012 Casper Ti. Vector
+% All rights reserved.
+%
+% Redistribution and use in source and binary forms, with or without
+% modification, are permitted provided that the following conditions are
+% met:
+%
+% * Redistributions of source code must retain the above copyright notice,
+% this list of conditions and the following disclaimer.
+% * Redistributions in binary form must reproduce the above copyright
+% notice, this list of conditions and the following disclaimer in the
+% documentation and/or other materials provided with the distribution.
+% * Neither the name of Peking University nor the names of its contributors
+% may be used to endorse or promote products derived from this software
+% without specific prior written permission.
+%
+% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+% IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+% THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+% PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+% EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+% PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+% PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+% LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+% SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+% 璁剧疆鍖楀ぇ绾㈢殑鑹插硷紙http://web5.pku.edu.cn/bs/cjwt/锛岄棶棰 5锛夈
+% 瑕佹兂灏嗛鑹叉敼涓洪粦鑹诧紝鍙渶灏嗕笅闈竴琛屾敼涓衡0 setgray鈥濆嵆鍙
+0.0 1.0 1.0 0.45 setcmykcolor
+% 缂╂斁鍜屽钩绉汇
+0.702957 0.602957 scale
+-30 -9 translate
+
+% 鈥滃寳鈥濄
+newpath
+74 224 moveto
+85.9 214.1 110.4 207.3 105 187 curveto
+106 176.3 111.5 166.3 108 155 curveto
+112.3 125.8 104.7 99 103 71 curveto
+100.3 59.5 96.9 47.3 91 38 curveto
+81.8 36 87.7 47.3 86 52 curveto
+88.3 56.7 86.2 62 84 66 curveto
+83 66 82 66 81 66 curveto
+70.7 51.3 53.5 42.7 41 31 curveto
+37.6 31.1 33.9 30.3 32 34 curveto
+32.6 40.3 30.8 46.8 32 52 curveto
+30.2 54 31.3 57.3 31 60 curveto
+43.6 65.3 42.7 79.6 47 90 curveto
+59 103.5 50 123.3 47 138 curveto
+54.7 135.5 63.5 135.7 69 128 curveto
+74.1 126.1 81.7 125.9 83 119 curveto
+84.9 118.4 85.8 119.9 87 121 curveto
+87 133.3 87 145.7 87 158 curveto
+86.2 176.4 91.3 203.1 71 215 curveto
+67.6 220.4 61.6 223.4 64 230 curveto
+68.7 231.2 70.2 224.9 74 224 curveto
+85 102 moveto
+87.3 94.7 85.2 86.7 83 80 curveto
+73.4 67.6 58.4 63.9 46 56 curveto
+42.7 55.1 40.4 57.1 40 60 curveto
+46 74 57.7 85.7 63 100 curveto
+65.7 103 69.7 102.6 73 104 curveto
+78.5 106.2 80.1 113.5 85 115 curveto
+88 110.7 83.5 107 85 102 curveto
+eofill
+newpath
+176 176 moveto
+184.2 165.9 175.8 148 187 140 curveto
+192.6 149.1 209.4 149.9 205 164 curveto
+206 165.1 202.5 172.3 208 171 curveto
+206.9 159.6 220 161 226 156 curveto
+231.2 157.2 228.8 148.7 228 146 curveto
+223.7 140 223 131.6 215 128 curveto
+205 124.2 195.7 127.8 187 121 curveto
+187 115 187 109 187 103 curveto
+181.5 99.2 175.8 93.7 175 87 curveto
+188.7 76.3 201.5 91.8 216 91 curveto
+221.9 93 226.5 97.9 234 96 curveto
+235.1 91.6 232.3 91.4 231 88 curveto
+230 76.1 218.3 77.6 211 72 curveto
+200.8 70.8 188.8 71.6 183 62 curveto
+175.5 63.2 167.5 63 162 69 curveto
+150.9 87.6 151.2 111 146 132 curveto
+141.1 158 154 179.1 157 203 curveto
+161.7 194.2 176.5 188.7 176 176 curveto
+closepath
+fill
+
+% 鈥滀含鈥濄
+newpath
+351 221 moveto
+349.4 215.9 349.3 209.3 343 207 curveto
+332.9 217.2 312.8 180.1 322 206 curveto
+322.3 218.3 314.3 227.2 311 238 curveto
+309.3 244.7 315.9 244.8 320 243 curveto
+329.3 239.7 338.7 234.2 346 228 curveto
+346.6 225.2 350.4 223.8 351 221 curveto
+closepath
+fill
+newpath
+361 183 moveto
+352.3 176.8 341.6 170.9 333 162 curveto
+329.4 152.3 319 150.7 312 145 curveto
+300.2 142.3 291.2 148.7 284 155 curveto
+282.8 159.1 287.7 161.1 290 163 curveto
+303.2 171.4 320.3 170.3 333 180 curveto
+341.8 183.3 351 185.6 361 186 curveto
+361 185 361 184 361 183 curveto
+closepath
+fill
+newpath
+357 135 moveto
+361.8 126.8 349.9 127.4 347 122 curveto
+341.4 114.9 332.9 110.9 329 104 curveto
+327.3 101.3 322.5 100 324 96 curveto
+326.1 92.8 330.4 96.3 333 98 curveto
+337.3 100.7 341.7 97.3 346 97 curveto
+343.8 86.8 332.7 85.7 326 80 curveto
+322.5 79.3 318.3 77.9 317 74 curveto
+312.2 64.9 322.3 60.7 321 52 curveto
+323.8 41 328.2 28 325 17 curveto
+317.4 16.8 319.5 25.8 314 29 curveto
+311.8 32.7 304.6 30.9 306 37 curveto
+309.5 37.7 313.7 39.1 315 43 curveto
+314.3 48.7 316.7 55.6 313 60 curveto
+311.1 60.3 309.6 59.5 308 59 curveto
+293.5 46.9 284.8 31.5 271 20 curveto
+264.2 18.7 260.4 24.7 259 30 curveto
+257.8 32.6 258 35.9 258 39 curveto
+276.8 39.2 288.7 56.3 304 65 curveto
+307.5 64.9 309.3 69 312 71 curveto
+313.3 74.6 309.9 76.3 309 79 curveto
+308.3 85.9 319.3 93.8 311 98 curveto
+306.6 97.1 300.6 97.6 299 92 curveto
+304.1 80.4 294.9 72.3 289 64 curveto
+287.6 63.3 287.4 65.7 286 65 curveto
+277.5 80.5 281 99.7 283 117 curveto
+287.1 115.7 290.3 112.3 294 110 curveto
+309.9 114.8 321.3 130.8 337 136 curveto
+343 134.2 351.6 135.3 357 135 curveto
+closepath
+fill
+newpath
+374 62 moveto
+374 57.7 374 53.3 374 49 curveto
+368.6 46.4 362.1 40.9 357 48 curveto
+351.7 57.8 341.8 69.4 350 81 curveto
+359.3 77.8 371.6 73.3 374 62 curveto
+closepath
+fill
+
+% 鈥滃ぇ鈥濄
+newpath
+501 224 moveto
+507.6 216 519.8 213 519 202 curveto
+510.5 194.5 518.5 184 516 174 curveto
+513.8 166.3 516.2 156.7 514 149 curveto
+514.3 146.1 517.5 145.7 520 146 curveto
+537.1 151 538.8 182.5 560 171 curveto
+557.7 161.3 549.5 155.7 542 149 curveto
+533.4 140.8 521.6 133.8 514 123 curveto
+512.2 101.2 508.4 78.4 488 66 curveto
+476 57.9 463 52.2 449 49 curveto
+447.3 51.2 438.3 44.3 442 51 curveto
+450.7 56.3 458.9 62.7 468 67 curveto
+482.2 77.4 486.1 93.8 491 109 curveto
+484.7 113.3 478.3 105.7 472 104 curveto
+456.1 97.9 445.1 86.2 430 78 curveto
+424.8 75.9 419.1 72.1 413 75 curveto
+406.8 81.8 408.2 93 408 101 curveto
+411.9 101.9 410.9 97.2 414 96 curveto
+436.6 97.6 452.7 115.2 474 120 curveto
+480.7 125.8 491.4 124.2 496 133 curveto
+500.2 163 498.3 195.4 486 221 curveto
+487.2 223.7 488.1 229.2 493 227 curveto
+495 224.5 497.7 223.5 501 224 curveto
+closepath
+fill
+newpath
+557 86 moveto
+564 76.3 578.2 71.9 574 58 curveto
+568.3 51.9 560.3 51.5 552 52 curveto
+550.3 54.4 550.8 58.5 552 61 curveto
+548.5 71.2 540.4 81.9 545 93 curveto
+548.4 91.3 552.1 86.2 557 86 curveto
+closepath
+fill
+
+% 瀛︺
+newpath
+640 130 moveto
+639.8 124 641.2 115.7 635 114 curveto
+628.1 111.5 630.1 119.8 626 122 curveto
+625.8 131.8 626.8 139.7 624 148 curveto
+634.8 146.6 632.8 135.8 640 130 curveto
+closepath
+fill
+newpath
+733 248 moveto
+738 233.7 720.5 224.5 721 210 curveto
+728.7 202 735.5 214.1 744 213 curveto
+753.3 220.2 762.3 213.3 773 214 curveto
+768.4 191.6 756.7 169.5 737 156 curveto
+736.5 154.6 736.3 153.1 735 152 curveto
+740.1 145.1 758.1 154.4 754 140 curveto
+746.5 116.3 724.8 109.9 705 101 curveto
+715.3 113.3 728.2 123.7 736 138 curveto
+733 143.2 726.9 137.7 723 136 curveto
+703.9 117.4 683.8 101.3 660 94 curveto
+652.2 91.7 644 90.4 635 91 curveto
+635.9 98.4 645.4 97.9 650 103 curveto
+673.8 121.1 701.1 130.5 726 146 curveto
+726.6 147.9 725.1 148.8 724 150 curveto
+716.7 151.2 712 146 706 144 curveto
+705.5 149.3 711 153.3 709 158 curveto
+704 160 699.6 166.5 694 164 curveto
+686.8 160.8 686.1 147.6 677 150 curveto
+677.2 159.5 697.7 166.9 684 176 curveto
+694.5 171.8 700.6 182.7 705 189 curveto
+705.8 191.9 705.5 193 703 195 curveto
+699.4 194.7 696.9 191.6 693 192 curveto
+693.6 196.3 699.8 198.2 699 203 curveto
+694.9 208.7 686.3 203.7 684 212 curveto
+684.1 216.3 689.1 212.2 692 213 curveto
+695.3 212 699.5 214.5 703 216 curveto
+718.6 222.2 724.8 240.5 726 255 curveto
+729.2 254.8 729.6 249.9 733 248 curveto
+748 193 moveto
+743.7 180.6 733.5 168.9 725 160 curveto
+724.5 167.3 722.5 174 719 180 curveto
+710.8 180.5 719.2 163.3 708 168 curveto
+696.3 179.3 716.2 187.4 718 198 curveto
+728 202.3 738 194.7 748 193 curveto
+eofill
+newpath
+640 195 moveto
+643.7 193 646.5 188.9 651 189 curveto
+661.3 177.5 670.8 165.7 671 150 curveto
+667.8 144.8 662.5 140.5 657 139 curveto
+653.4 161.3 643.8 182 627 198 curveto
+625.5 199.7 625.5 203.3 627 205 curveto
+632.2 203.8 635.2 197.3 640 195 curveto
+closepath
+fill
+newpath
+732 82 moveto
+727.7 76.8 729.2 66.5 720 66 curveto
+713.6 65.1 703.7 68.2 702 60 curveto
+702.4 47.8 712 38.2 707 25 curveto
+704 12.5 688.9 12 678 10 curveto
+675.5 16.8 666.3 14.1 663 19 curveto
+675.2 21.9 691.3 19.6 697 34 curveto
+692.9 41.6 697.4 53.6 690 59 curveto
+670.3 53.8 653.1 42.5 636 31 curveto
+631.1 29.7 626.4 25.1 621 28 curveto
+620.2 35.6 610.3 39.5 614 49 curveto
+617.7 54.2 624 53 629 55 curveto
+654.8 67.1 680.6 79.3 709 85 curveto
+711.4 88.3 717 87.2 720 86 curveto
+723.4 86.2 729.3 86.3 732 82 curveto
+closepath
+fill
+
+showpage
+%%EOF
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.bib b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.bib
new file mode 100644
index 00000000000..e8476794aa8
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.bib
@@ -0,0 +1,10 @@
+vim:ts=4:sw=4
+
+@article{test,
+ author = {Author},
+ title = {Title},
+ type = {J},
+ journal = {Journal},
+ date = {2014-04-01},
+}
+
diff --git a/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.tex b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.tex
new file mode 100644
index 00000000000..f209cb8737d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pkuthss/example-utf8/thesis.tex
@@ -0,0 +1,101 @@
+% vim:ts=4:sw=4
+%
+% Copyright (c) 2008-2009 solvethis
+% Copyright (c) 2010-2014 Casper Ti. Vector
+% Public domain.
+%
+% 浣跨敤鍓嶈鍏堜粩缁嗛槄璇 pkuthss 鍜 biblatex-caspervector 鐨勬枃妗o紝
+% 鐗瑰埆鏄叾涓殑 FAQ 閮ㄥ垎鍜岀敤绾㈣壊寮鸿皟鐨勯儴鍒嗐
+% 涓よ呭彲鍦ㄧ粓绔/鍛戒护鎻愮ず绗︿腑鐢
+% texdoc pkuthss
+% texdoc biblatex-caspervector
+% 璋冨嚭銆
+
+% 鍦ㄩ粦鐧芥墦鍗版椂褰╄壊閾炬帴鍙兘鍙樻垚娴呯伆鑹诧紝姝ゆ椂鍙皢鈥渃olorlinks鈥濇敼涓衡渘ocolorlinks鈥濄
+% 鍖楀ぇ鍥句功棣嗚姹備笂浼犵殑鐢靛瓙鐗堣鏂囦腑鐩綍閲囩敤榛戣壊瀛椾綋锛屽彲浠ョ敤鍚屾牱鐨勬柟娉曞鐞嗐
+%
+% 閲囩敤浜嗚嚜瀹氫箟鐨勶紙鍖呮嫭澶у皬鍐欎笉鍚屼簬鍘熸枃浠剁殑锛夊瓧浣撴枃浠跺悕锛
+% 骞舵敼鍔 ctex.cfg 绛夐厤缃枃浠剁殑鐢ㄦ埛璇疯嚜琛屽姞鍏 nofonts 閫夐」锛
+% 鍏跺畠鐢ㄦ埛涓嶇敤鍔犲叆 nofonts 閫夐」锛屽姞鍏ヤ箣鍚庡弽鑰屼細浜х敓閿欒銆
+\documentclass[UTF8, colorlinks]{pkuthss}
+
+% 浣跨敤 biblatex 鎺掔増鍙傝冩枃鐚紝骞惰瀹氬叾鏍煎紡銆
+%
+% 濡傛灉鏃犳硶浣跨敤 biber锛屽彲浠ユ妸鈥渂ackend = biber鈥濇敼涓衡渂ackend = bibtex鈥濓紝
+% 骞舵敼鐢 bibtex 浜х敓鍙傝冩枃鐚紝璇﹁ pkuthss 鐨勬枃妗c
+% 浣跨敤 biber 鏃讹紝璇峰幓鎺夋墍鏈夌殑 sorting 閫夐」锛屽惁鍒欎細鍑洪敊銆
+%
+% 榛樿鎸夌収寮曠敤椤哄簭鎺掑簭锛堚渟orting = none鈥濓級锛岃瑙 biblatex-caspervector 鐨勬枃妗
+% 锛堝洜涓烘槸榛樿璁剧疆鎵浠ュ叾瀹炰笉鐢ㄥ啓锛屼笉杩囧嚭浜庡畬澶囨х殑鑰冭檻浠嶇劧鍦ㄨ繖閲屽垪鍑猴級銆
+% 鑻ラ渶瑕佹寜鐓ц嫳鏂囨枃鐚湪鍓嶏紝涓枃鏂囩尞鍦ㄥ悗鎺掑簭锛岃璁剧疆鈥渟orting = ecnty鈥濓紱
+% 鑻ラ渶瑕佹寜鐓т腑鏂囨枃鐚湪鍓嶏紝鑻辨枃鏂囩尞鍦ㄥ悗鎺掑簭锛岃璁剧疆鈥渟orting = centy鈥濄
+\usepackage[backend = biber, style = caspervector, utf8, sorting = none]{biblatex}
+% 浜х敓 originauth.tex 閲岀殑 \square銆
+\usepackage{amssymb}
+
+% 璁惧畾鏂囨。鐨勫熀鏈俊鎭
+\pkuthssinfo{
+ cthesisname = {鏈鐢熸瘯涓氳鏂噠, ethesisname = {Undergraduate Thesis},
+ ctitle = {娴嬭瘯鏂囨。}, etitle = {Test Document},
+ cauthor = {鏌愭煇},
+ eauthor = {Test},
+ studentid = {0123456789},
+ date = {鏌愬勾鏌愭湀},
+ school = {鏌愭煇瀛﹂櫌},
+ cmajor = {鏌愭煇涓撲笟}, emajor = {Some major},
+ direction = {鏌愭煇鏂瑰悜},
+ cmentor = {鏌愭煇鏁欐巿}, ementor = {Prof.\ Somebody},
+ ckeywords = {鏌愭煇}, ekeywords = {Something}
+}
+% 瀵煎叆鍙傝冩枃鐚暟鎹簱锛堟敞鎰忎笉瑕佺渷鐣モ.bib鈥濓級銆
+\addbibresource{thesis.bib}
+
+\begin{document}
+ % 浠ヤ笅涓烘鏂囦箣鍓嶇殑閮ㄥ垎銆
+ \frontmatter
+
+ % 鑷姩鐢熸垚鏍囬椤点
+ \maketitle
+ % 鐗堟潈澹版槑銆
+ \include{chap/copyright}
+ % 涓嫳鏂囨憳瑕併
+ \include{chap/abstract}
+ % 鑷姩鐢熸垚鐩綍銆
+ \tableofcontents
+
+ % 浠ヤ笅涓烘鏂囥
+ \mainmatter
+
+ % 缁█銆
+ \include{chap/introduction}
+ % 鍚勭珷鑺傘
+ \include{chap/chap1}
+ % 缁撹銆
+ \include{chap/conclusion}
+
+ % 姝f枃涓殑闄勫綍閮ㄥ垎銆
+ \appendix
+ % 鎺掔増鍙傝冩枃鐚垪琛ㄣ
+ \printbibliography[
+ % 浣库滃弬鑰冩枃鐚濆嚭鐜板湪鐩綍涓紱濡傛灉鍚屾椂瑕佷娇鍙傝冩枃鐚垪琛ㄥ弬涓庣珷鑺傜紪鍙凤紝
+ % 鍙皢鈥渂ibintoc鈥濇敼涓衡渂ibnumbered鈥濄
+ heading = bibintoc,
+ % 鍗曠嫭璁惧畾鎺掑簭鏂规銆傛璁惧畾浼氬眬閮ㄨ鐩栦箣鍓嶇殑鍏ㄥ眬璁剧疆銆
+ % 娉細鍙湁鍚屾椂浣跨敤 2.x 鎴栦箣鍚庣増鏈殑 biblatex 鍜岀浉搴斿吋瀹圭増鏈殑 biber锛
+ % 鎵嶈兘瀵规瘡涓 \printbibliography 鍛戒护閲囩敤涓嶅悓鐨勬帓搴忔柟妗堬紝
+ % 鍚﹀垯鍙兘鍦ㄥ鍏 biblatex 瀹忓寘鏃跺氨锛堝叏灞锛夋寚瀹氭帓搴忔柟妗堛
+ % 鍦ㄨ繖鏍风殑鎯呭喌涓嬶紝璇峰幓鎺夋墍鏈夌殑 sorting 閫夐」锛屽惁鍒欏彲鑳藉嚭閿欍
+ sorting = ecnty
+ ]
+ % 鍚勯檮褰曘
+ \include{chap/encl1}
+
+ % 浠ヤ笅涓烘鏂囦箣鍚庣殑閮ㄥ垎銆
+ \backmatter
+
+ % 鑷磋阿銆
+ \include{chap/acknowledge}
+ % 鍘熷垱鎬у0鏄庡拰浣跨敤鎺堟潈璇存槑銆
+ \include{chap/originauth}
+\end{document}
+