更改 els 文章类别中的“摘要”标题名称

更改 els 文章类别中的“摘要”标题名称

你好,我搜索了档案,并尝试使用

\renewcommand\abstractname{summary}

更改摘要的名称,但没有成功。

这是我的代码的工作示例:

\documentclass[preprint,12pt]{elsarticle}

\usepackage{cmbright}
\usepackage[T1]{fontenc}
\usepackage{microtype}

\renewcommand\abstractname{summary}

\usepackage{amssymb}
\usepackage{lineno}

\journal{Journal Name}

\begin{document}
\begin{frontmatter}

\title{Characterization of a Murine Embryonic Stem Cell Line}
\author{Daniel D.}
\address{State University}

\begin{abstract}
\end{abstract}
\end{frontmatter}

\section*{Introduction}

\section*{Results}

\section*{Discussion}

\section*{Experimental Procedures}

感谢您的任何帮助或见解。

答案1

当前版本elsarticle允许您使用 设置摘要标题\abstracttitle{<title>}。默认使用 设置\abstracttitle{Abstract}

在此处输入图片描述

\documentclass[preprint,12pt]{elsarticle}

\journal{Journal Name}
\abstracttitle{Summary}

\begin{document}

\begin{frontmatter}

\title{My title}
\author{My title}
\address{My Address}

\begin{abstract}
\end{abstract}

\end{frontmatter}

\end{document}

相关内容