Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added cover_file/blind_cover.doc
Binary file not shown.
Binary file added cover_file/blind_cover.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions cover_file/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
使用方法:
1.根据个人信息编辑好word文档,注意添加必要的空白页,或者也可以生成pdf文件后编辑
2.生成pdf文件,重命名为thesis_cover.pdf,再拷贝到根目录(scutthesis.tex所在目录)
2.5 使用盲审封面时,则需要命名为blind_cover.pdf
3.封面需要用微软的word打开另存为pdf,不能使用wps,会报错。
14 changes: 12 additions & 2 deletions scutthesis.cls
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newif\ifmasterdegree\masterdegreefalse %默认为doctor
\newif\ifpdfcover\pdfcoverfalse
\newif\ifblindpdfcover\blindpdfcoverfalse % --adi
\newif\ifchapterx\chapterxfalse

\DeclareOption{master}{\masterdegreetrue}
\DeclareOption{pdfcover}{\pdfcovertrue} %using pdfcover,TOdo
\DeclareOption{blindpdfcover}{\blindpdfcovertrue} %adi
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{book}}
\ProcessOptions\relax %revised by Quansheng Guan \ProcessOptions
\LoadClass[12pt,a4paper,openany]{book}
Expand Down Expand Up @@ -429,8 +431,16 @@
\ifpdfcover
%%coverpage from pdf file
%% \includepdf[pages=-]{thesis_cover.pdf}%pdf文件路径为主文件tex或lyx的当前目录
\includepdf[pages={1-5,{},7-8}]{cover_file/thesis_cover.pdf}
\includepdf[pages={1-5,{},7-8}]{cover_file/thesis_cover.pdf} % 正式封面
% \includepdf[pages={1}]{cover_file/blind_cover.pdf} % 盲审封面
\else
\ifblindpdfcover
%%coverpage from pdf file
%% \includepdf[pages=-]{thesis_cover.pdf}%pdf文件路径为主文件tex或lyx的当前目录
% \includepdf[pages={1-5,{},7-8}]{cover_file/thesis_cover.pdf} % 正式封面
\includepdf[pages={1}]{cover_file/blind_cover.pdf} % 盲审封面
\else

%%buildin coverpage
\begin{titlepage}
\raggedleft
Expand All @@ -454,7 +464,7 @@
\centerline{\songti\normalsize{\@institute}}
\centerline{\songti\normalsize{\@date}}
\end{titlepage}

\fi
\fi
}
%%摘要分中英文页,而且有两者排版方式:
Expand Down
1 change: 1 addition & 0 deletions scutthesis.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\documentclass[unicode,master]{scutthesis} % 草稿封面,硕士则添加选项master,博士则去掉。使用正式封面时注释该行
% \documentclass[unicode,master,blindpdfcover]{scutthesis} % 盲审封面
% \documentclass[unicode,master,pdfcover]{scutthesis} % % 论文正式封面,pdfcover为可选项,终稿再添加,使用草稿封面时注释该行
\usepackage{array,longtable,graphicx}
\usepackage{anyfontsize} %消除字体警告
Expand Down