LaTeX技巧165:如何修改摘要的名字

标签:
latex摘要名称修改 |
分类: 小技巧 |
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
article 和 report 类提供了预定义的摘要环境,book 类则没有。
\begin{abstract} Your abstract goes here... \end{abstract}
默认的摘要名称为 Abstract。要改变摘要名称,
\renewcommand{\abstractname}{Executive Summary}
效果图:
\documentclass{article}
\usepackage{CJK}
\begin{document}
\begin{abstract}
\end{abstract}
\vspace{10pt}
\renewcommand{\abstractname}{Executive Summary}
\begin{abstract}
\end{abstract}
\vspace{10pt}
\paragraph{}
\clearpage
\end{CJK*}
\end{document}