-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2149216
commit 06af8e8
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1483,15 +1483,17 @@ | |
\pagestyle{fancy} | ||
\let\sectionmark\@gobble | ||
\renewcommand\headrulewidth{0.4\p@} | ||
|
||
% 重定义默认的 |myheadings| page style,会显示页眉和页脚。 | ||
\fancypagestyle{myheadings}{% | ||
\fancyhf{}% | ||
% | ||
% 页眉与该部分的章标题相同,宋体 10.5 磅(五号)居中。 | ||
% 页眉与该部分的章标题相同,宋体 10.5 磅(五号)居中、1.5倍行距。 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
% 页码:宋体 10.5 磅、页面下脚居中。 | ||
% 页眉上下页边距1.5 cm | ||
\setlength{\headsep}{1.5cm} | ||
This comment has been minimized.
Sorry, something went wrong.
zepinglee
Contributor
|
||
\def\hfut@hf@font{\fontsize{10.5bp}{1.5\baselineskip}\selectfont} | ||
\ifhfut@degree@graduate | ||
\def\hfut@hf@font{\fontsize{10.5bp}{12bp}\selectfont} | ||
|
||
\fancyhead[OC]{\hfut@hf@font\leftmark}% | ||
\ifhfut@degree@doctor | ||
\fancyhead[EC]{\hfut@hf@font 合肥工业大学博士研究生学位论文}% | ||
|
@@ -1507,9 +1509,8 @@ | |
\else | ||
% | ||
% 本科生要求在正文每面上部加页眉, | ||
% 用小 5 号字(9 bp)标注“合肥工业大学毕业设计(论文)”,居中; | ||
% 从正文页开始在每面底部居中用小五宋体(9 bp)连续编页码。 | ||
\def\hfut@hf@font{\fontsize{9bp}{12bp}\selectfont} | ||
% 用五号字(10.5 bp)标注“合肥工业大学毕业设计(论文)”,居中; | ||
% 从正文页开始在每面底部居中用小五宋体(10.5 bp)连续编页码。 | ||
\fancyhead[C]{\hfut@hf@font 合肥工业大学毕业设计(论文)}% | ||
\fancyfoot[C]{\hfut@hf@font\thepage}% | ||
\let\@mkboth\@gobbletwo | ||
|
Word 中“1.5 倍行距”是字号的 1.3 * 1.5 = 1.95 倍字号(中文)。
在
\fontsize
中使用\baselineskip
是错误的,只能用计算出的固定值。