在乳胶“书”中包含摘要的最佳方法?
我一直在寻找这个问题的答案有一段时间了,但似乎找不到它,所以我希望这里有人可以帮助我。
我正在用 Latex 写一篇论文,并且非常喜欢使用“book”环境时的 \frontmatter、\mainmatter 和 \backmatter 功能。但是我需要添加一个摘要,并且在创建“书”时 \begin{abstract} 环境未定义。但是,如果我更改为“报告”,我就会失去*事项术语的功能。
所以我真正需要知道的是:是否有一种简单的方法可以在“书”中包含摘要,并使其格式与“报告”中的格式相同? (即垂直和水平居中,带有“抽象”标题)
感谢您的帮助!读了几个月后在 stackoverflow 上的第一篇文章!
感谢雅各布的帮助。下面的代码是我在不进行任何重大更改的情况下可以获得的最接近的代码。如果有人有更“正确”的方法来实现这一点,我会很高兴听到它。 ;)
\chapter*{\centering \begin{normalsize}Abstract\end{normalsize}}
\begin{quotation}
\noindent % abstract text
\end{quotation}
\clearpage
I've been looking for the answer to this question for a while now but can't seem to find it, so I'm hoping someone on here can help me.
I'm writing up a thesis in Latex, and really like the \frontmatter, \mainmatter and \backmatter ability when using the "book" environment. However I need to add an abstract and the \begin{abstract} environment is undefined when creating a "book". If I change to a "report" however, I lose the functionality of the *matter terms.
So what I really need to know is: is there a simple method of including an abstract in a "book" and have it formatted the same as it would be in a "report"? (i.e. centered vertically and horizontally with an 'abstract' heading)
Thanks for any help! First post on stackoverflow after reading for months!
Thanks to Jacob for the help. The code below is the closest I could get without making any drastic changes. If someone has a more 'proper' method of implementing this I'd be glad to hear it. ;)
\chapter*{\centering \begin{normalsize}Abstract\end{normalsize}}
\begin{quotation}
\noindent % abstract text
\end{quotation}
\clearpage
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能想到的最好的。
你可以将它居中
Best I could come up with.
You can center it with
我推荐回忆录环境。它文档非常详细并且AFAIR它提供了您的所有功能需要。
I recommend the memoir environment. It is very well documented and AFAIR it provides all features you need.