为什么使用 elsarticle 类时文章关键字不可见?

为什么使用 elsarticle 类时文章关键字不可见?

我正在使用 Elsevier 提供的乳胶模板

我希望有像这篇已发表的论文一样的最终版本,因为除了摘要之外还提供了文章信息Elsevier 发表论文查看 使用下面 elsevier 提供的模板的 latex 代码

\documentclass[times,referee,twocolumn,final,authoryear]{elsarticle}
\usepackage{ycviu}
\usepackage{framed,multirow}
\usepackage{amssymb}
\usepackage{latexsym}
\usepackage{url}
\usepackage{xcolor}
\definecolor{newcolor}{rgb}{.8,.349,.1}


\journal{Computer Vision and Image Understanding}

\begin{document}

\ifpreprint
  \setcounter{page}{1}
\else
  \setcounter{page}{1}
\fi

\begin{frontmatter}

\title{Type the title of your paper, only capitalize first
word and proper nouns}

\author[1]{Fname \snm{Sname}} 

\received{1 May 2013}
\finalform{10 May 2013}
\accepted{13 May 2013}
\availableonline{15 May 2013}
\communicated{S. Sarkar}


\begin{abstract}
Type your abstract here....
\end{abstract}

\begin{keyword}
\MSC 41A05\sep 41A10\sep 65D05\sep 65D17
\KWD Keyword1\sep Keyword2\sep Keyword3

%% MSC codes here, in the form: \MSC code \sep code
%% or \MSC[2008] code \sep code (2000 is the default)
\end{keyword}

\end{frontmatter}

我看到以下视图 在此处输入图片描述 此处关键字在输出的 PDF 文件中不可见。我尝试过此网站上提供的解决方案,即放关键词关键字不显示关键词但没有一个人按要求工作。

答案1

该模板要求您使用日记样式\usepackage{ycviu}

在这个包中,我发现环境的定义keyword

% Keyword
\def\keyword{%
  \def\sep{\newline}%
  \def\MSC{\@ifnextchar[{\@MSC}{\@MSC[2000]}}%
  \def\@MSC[##1]{\leavevmode\hbox {\it ##1~MSC:}\newline}%
  \def\JEL{\newline\leavevmode\hbox {\it JEL:\space}}%
  \def\KWD{%
   \vspace*{10pt}\newline
   \leavevmode\hbox {\it Keywords:}\newline}%
  \global\setbox\keybox=\hbox\bgroup\hsize=.3\textwidth%
  \fontsize{8pt}{10pt}\selectfont%
  \parskip\z@%
  \noindent%
  \ignorespaces}
\def\endkeyword{\egroup}

环境排版其内容并将结果保存在名为 的框中\keybox。 出现的唯一其他位置\keybox是在 的定义中\articleinfobox

\def\articleinfobox{
    \parbox[t]{.35\textwidth}{%
    \fontsize{8pt}{10pt}\selectfont%
    [...irrelevant code here...]
    \hrule
    \vspace*{1pc}
    \unhbox\keybox}
}

\articleinfobox然而,无处

这只是意味着该期刊的文字编辑有不同的ycviu他们用于最终版本的版本。

您将获得适合提交给期刊和为审稿人制作副本的软件包版本。不用担心。您不能自己复制最终产品,我认为这样做有充分的理由:你无法模仿文章的最终形式,假装它已经出版。

答案2

好吧,这就是我仅保留您发布的 MWE 的基本命令(略作修改)后得到的结果。实际上,无论有没有您的类选项,关键字都打印得很好elsarticle

在此处输入图片描述

我使用的简单代码是

\documentclass[times,referee,twocolumn,final,authoryear]{elsarticle}
\usepackage{lipsum} % for printing dummy text
%
\journal{Computer Vision and Image Understanding}
%
\begin{document}
%
\begin{frontmatter}
%
\title{Type the title of your paper, only capitalize first word and proper nouns}
\author{Fname Sname}
%
\begin{abstract}
    Type your abstract here.... \lipsum[2]
\end{abstract}
%
\begin{keyword}
Keyword1 \sep Keyword2 \sep Keyword3 \sep Keyword4 \sep Keyword5 \sep Keyword6
\end{keyword}
%
\end{frontmatter}
%
\section{Introduction}
    This is the introduction. \lipsum[2]
%
\section{Results}
This is the results. \lipsum[2]
%
\section{Conclusion}
This is the conclusion. \lipsum[2]
%
\end{document}

因此,您可以先在代码中添加和删除其余命令,然后重新编译,直到了解与您案例中的关键字冲突的原因。

相关内容