编辑书籍并贡献章节:第一页布局

编辑书籍并贡献章节:第一页布局

我正在尝试排版一本包含贡献章节的书。每章都有一位相应的作者和多位来自不同机构的合著者。

在每一章中,我希望将章节标题放在中心,后面是作者、所属机构和通讯作者的联系信息(或者,联系信息可以在脚注或章节末尾给出)。

接下来是摘要、各个标题/章节以及章节的参考文献。

到目前为止,给出的提示这里,我已成功获得以下 MWE 中显示的内容:

\documentclass{book}
\usepackage{lipsum}
\usepackage[english]{babel}

\makeatletter
\def\@makechapterhead#1{%
\vspace*{-50\p@}%
{\parindent \z@ \centering\normalfont
\ifnum \c@secnumdepth >\m@ne
  \if@mainmatter
     \large\bfseries \@chapapp\space \thechapter
    \par\nobreak
    \vskip 1\p@
  \fi
\fi
\interlinepenalty\@M
 \LARGE \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother

\begin{document}
\frontmatter
\tableofcontents{}
\mainmatter % Begin numeric (1,2,3...) page numbering


\chapter{Test chapter}
\textbf{Abstract:} \lipsum[23]
\textbf{Keywords:} Europe, Asia, Africa, America, Austrailia 
\section{Introduction}
\lipsum[3-15]
\end{document}

我想要的是这样的:我的要求

任何帮助都将不胜感激。谢谢。

相关内容