我该如何格式化摘要标题?另外,我认为这是内置在 latex 中的,但在 LEd 中它说它无法识别它,所以我添加了 \usepackage{abstract}。应该是这样的吗?
抱歉,我是刚接触乳胶的,所以仍在努力掌握它。
答案1
我认为摘要的标题通常只是“摘要”,因此说明书通常不会告诉您如何更改它。对于课程report
,您可以执行以下操作。
\documentclass{report}
\renewcommand{\abstractname}{I want a different heading}
\begin{document}
\begin{abstract}
This is the abstract.
\end{abstract}
\end{document}