我希望这些图片中没有点。相关问题没有帮助。
这是 MWE。可能不是绝对最小的,因为它具有我想要的可能与问题相关的功能。
\documentclass{memoir}
\pagestyle{ruled}
\usepackage{lipsum} % for mwe
\setstocksize{3in}{5in}
\settrimmedsize{3in}{5in} {*}
\setlrmarginsandblock{0.3in}{0.3in}{*}%%%%
\setulmarginsandblock{0.5in}{0.5in}{*}
\checkandfixthelayout
\fixpdflayout
\renewcommand\chapternumberline[1]{}
\renewcommand\partnumberline[1]{}
% suppress section and chapter numbering
%\renewcommand*{\thesection}{\arabic{section}}
\renewcommand*{\thesection}{}
\renewcommand*{\thechapter}{}
% Set chapter name on the left
\chapterstyle{section}
\begin{document}
\chapter{first}
Now is the time for all good persons to come to the aid of the
party. That will require enough text to
\newpage
get to a second page.
\section{first section}
\lipsum{1}
\end{document}
答案1
如果你不想要编号的章节,就不要发布指令
\renewcommand*{\thesection}{}
\renewcommand*{\thechapter}{}
纯 LaTeX 解决方案是发出指令
\setcounter{secnumdepth}{-1}
由于您正在使用memoir
文档类,正如@daleif在评论中指出的那样,针对回忆录的解决方案将包括发出指令
\setsecnumdepth{none}
此外,如果\mainmatter
(并且,大概是\frontmatter
)正在使用,您应该发出指令
\maxsecnumdepth{none}