I am using the memoir class to put together a bunch of (independent) projects, each of them as one chapter. Because each project has different authors and some sort of summary, I would like to add these below the title of the chapter. I wonder how this can be done using the memoir functionality.
I have gone through the memoir manual but I am not yet familiar with the terminology so every time I felt I found the right section (e.g., "chapter headings") I realized this is about something else. If anyone has a pointer to the correct keyword, I would also be happy.
Unfortunately, I am new to memoir and cannot post an MWE yet because I am still working in a code I have copied from the second answer in Painless Memoir Class Book Template and try to make adjustments. However, as far as I can see, this is the relevant section from the preamble into which I suspect an "author line" can be inserted.:
\makeatletter % define standard chapter style
\makechapterstyle{standard}{
\setlength{\beforechapskip}{0\baselineskip}
\setlength{\midchapskip}{1\baselineskip}
\setlength{\afterchapskip}{8\baselineskip}
\renewcommand{\chapterheadstart}{\vspace*{\beforechapskip}}
\renewcommand{\chapnamefont}{\centering\normalfont\Large}
\renewcommand{\printchaptername}{\chapnamefont \@chapapp}
\renewcommand{\chapternamenum}{\space}
\renewcommand{\chapnumfont}{\normalfont\Large}
\renewcommand{\printchapternum}{\chapnumfont \thechapter}
\renewcommand{\afterchapternum}{\par\nobreak\vskip \midchapskip}
\renewcommand{\printchapternonum}{\vspace*{\midchapskip}\vspace*{5mm}}
\renewcommand{\chaptitlefont}{\centering\bfseries\LARGE}
\renewcommand{\printchaptertitle}[1]{\chaptitlefont ##1}
\renewcommand{\afterchaptertitle}{\par\nobreak\vskip \afterchapskip}
}
\makeatother
\chapterstyle{standard} % apply chapter style
\setsecheadstyle{\normalfont\large\bfseries}
\setsubsecheadstyle{\normalfont\normalsize\bfseries}
\setparaheadstyle{\normalfont\normalsize\bfseries}
\setparaindent{0pt}\setafterparaskip{0pt}
\chapterprecis. If the latter then see chapter 7 Pagination and headers in the manual. – Peter Wilson Jun 12 '20 at 18:23\chapterprecisworks great for the summary, thanks. However, I have not yet figured out how to add (and format) a line below the title to get the authors in there. – bumblebee Jun 12 '20 at 21:34\chapterprecismacros which I believe answer your problem. I would appreciate it if you either accepted my answer or stated what was wrong with it while showing what the output you want to achieve. --- GOM – Peter Wilson Jun 15 '20 at 17:59