有没有简单的方法可以更改回忆录中章节标题的字体和大小?

有没有简单的方法可以更改回忆录中章节标题的字体和大小?

我完全是 TeX 新手 — — 请多关照!:-)

我如何更改章节标题的字体和大小?我不介意它在页面上的位置 - 但希望它是无衬线字体并且可能更大一点?这些是未命名的章节...它们只需要说第 1 章、第 2 章等。

我尝试发布我的代码和结果的图片,但论坛说我必须获得 10 个声誉点才能发布图片。:-(

\documentclass[10pt]{memoir}

\usepackage{palatino}
\usepackage[margin=1in, paperwidth=6in, paperheight=9in]{geometry}
\usepackage{indentfirst}
\pagestyle{plain}

\begin{document}


\input{chapter01.tex}

\input{chapter02.tex}

\end{document}

答案1

选择section章节样式并重新定义宏\chapnumfont\chaptitlefont。有关详细信息,请参阅手册第 6.5 节memoir。(注意:\HUGE字体大小开关在标准类中不可用。)

\documentclass{memoir}

\chapterstyle{section}
\renewcommand*{\chapnumfont}{\normalfont\HUGE\bfseries\sffamily}
\renewcommand*{\chaptitlefont}{\normalfont\HUGE\bfseries\sffamily}

\usepackage{mathpazo}

\usepackage{lipsum}

\begin{document}

\chapter{First chapter}

\lipsum[1]

\end{document}

在此处输入图片描述

另外,您可以重新定义\printchaptertitle以吞噬其参数(这里:根本不打印“第一章”):

\documentclass{memoir}

\renewcommand*{\chapnamefont}{\normalfont\HUGE\bfseries\sffamily}
\renewcommand*{\chapnumfont}{\normalfont\HUGE\bfseries\sffamily}
\renewcommand*{\afterchapternum}{}
\renewcommand*{\printchaptertitle}[1]{}

\usepackage{mathpazo}

\usepackage{lipsum}

\begin{document}

\chapter{First chapter}

\lipsum[1]

\end{document}

在此处输入图片描述

正如 cfair 所评论的,我已将过时的palatino软件包替换为mathpazo

相关内容