前言、附录标题在 poetrycol 中的格式

前言、附录标题在 poetrycol 中的格式

我正在尝试使用以下方法更改诗歌集的字体大小、样式和两个 (2) 部分下的规则:诗歌

我想要的结果是标题居中,并在文本正文块的宽度下方设置一个规则。它应该在标题下方 3 毫米处,与正文之间相距 12 毫米。

\makeforeword这些部分由和命令调用makeappendix。手册中提到\forewordtitle\appendixtitle。为了得到我想要的结果,我尝试使用来修改这两个,\renewcommand但没有成功。

我的 MWE 使用命令内联调用规则,但这是一个临时解决方案,因为我似乎无法设置标题和正文之间的间距,或者使标题居中。

\documentclass{article}
\usepackage{lipsum}
\usepackage{fancyhdr}
\usepackage{poemscol}
\changecontentsname{Contents}
\setcontentsleaders{\hfill}
\begin{document}
% frontmatter
\pagenumbering{roman}
\makeforeword{Editor's Note}\hrule\vspace{0.12cm}
Text of editor's note.\\
\lipsum
\putpoemcontents
\makepoemcontents
% mainmatter
\pagenumbering{arabic}
\makeappendix{Appendix}\hrule\vspace{0.12cm}
Appendix here.\\
\lipsum
\end{document}

相关内容