我想刷新我的书的标题(这是一本法语的物理学书,以防内容是有用的信息)。目前,我正在使用此 MWE 代码中定义的标题样式:
\documentclass[11pt,letterpaper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[total={6in,10in},left=1.5in,top=0.5in,includehead,includefoot]{geometry}
\usepackage{microtype}
\usepackage[pagestyles,medium]{titlesec}
\newpagestyle{principal}{
\sethead[\thepage][][\slshape\small\MakeUppercase{\chaptername\ \thechapter. \chaptertitle}]{\slshape\small\MakeUppercase{\thesection\ \sectiontitle}}{}{\thepage}
\headrule}
\usepackage{blindtext}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\pagestyle{principal}
\chapter{A first chapter title}
\blindtext[5]
\section{A funny section title}
\blindtext[5]
\section{Another hilarious section title}
\blindtext[5]
\chapter{A funky chapter title}
\blindtext[5]
\section{This section title is really boring}
\blindtext[5]
\section{Really funny section title}
\blindtext[5]
\end{document}
预览:
这些标题很好,我可能会继续使用它们,但我希望它们看起来更新颖、更现代。您能建议哪些其他样式来让标题看起来更专业?我在这方面真的缺乏想象力和创造力!
编辑: 我刚刚注意到我正在使用小的页眉 ( \small
) 中的字体与页码的正常大小不同。这是否被视为不一致?
使用\slshape\scshape
(与包\usepackage{slantsc}
一起倾斜小写字母),而不是\slshape\small\MakeUppercase
,似乎给出了一个不错的输出。
但是,页眉中的页码和标题的适当或通用大小应该是多少?