章节标题下方有出版详细信息

章节标题下方有出版详细信息

我想在章节标题下添加一些出版详细信息。我在这里已经得到了一些有用的评论,但现在我决定使用 epigraph 环境。目前,代码如下所示:

\documentclass{report}
\usepackage{epigraph}

\renewcommand{\epigraphwidth}{3.5in}
\renewcommand{\epigraphrule}{1pt}

\begin{document}

\chapter{Introduction}

\epigraph{The research described in this Chapter has been published in:}{
 P. Moss, J. Morrison, and G. Ranger. {\it Seed production and seedling survival 
 in a $50$ year-old stand of Corsican pine in Britain}. Advances in Seed Physiology
 and Technology 2007.
 }

 \noindent Here the chapter text goes..

 \end{document}

看起来还不错,但是我对外观还是有点不确定;就是看起来不太对劲……也许我可以尝试将文本左对齐,这可能会有帮助。还有谁能建议我如何改进它,让它看起来更“专业”一点。

非常感谢您的意见!

答案1

\documentclass{report}
\usepackage{epigraph}

\renewcommand{\epigraphflush}{flushleft}
\renewcommand{\epigraphwidth}{3.5in}
\renewcommand{\epigraphrule}{1pt}

\begin{document}

\chapter{Introduction}

\epigraph{The research described in this Chapter has been published in:}{
 P. Moss, J. Morrison, and G. Ranger. {\it Seed production and seedling survival 
 in a $50$ year-old stand of Corsican pine in Britain}. Advances in Seed Physiology
 and Technology 2007.
 }

 \noindent Here the chapter text goes..

 \end{document}

相关内容