更改 elsarticle 模板上的期刊徽标

更改 elsarticle 模板上的期刊徽标

我从“模式识别”期刊乳胶网站下载了 elsarticle 模板,并一直尝试更改徽标,但没有成功。

我知道模板使用 <\jid>logo.pdf 格式,如果 \jid{proeng},它将搜索 proenglogo.pdf,但每次运行它时,我得到的期刊徽标都是虚拟徽标。我也无法使用虚拟期刊徽标,因为它超出了徽标边界线(见下图)。

使用 Overleaf 后我又使用了 TexStudio,但仍然没有结果......

代码:\jid{proeng}

与 tex 文件位于同一目录中的文件:proenglogo.pdf

也许我需要把它放入它自己的文件夹中?

任何帮助,将不胜感激!在此处输入图片描述

答案1

假设你的工作目录中有徽标PRlogo.jpg,你可以使用

\renewcommand{\jnllogo}{\includegraphics[height=60pt,keepaspectratio]{PRlogo}}

A

\documentclass[3p,times]{elsarticle}

\usepackage{ecrc}
\volume{00}

\firstpage{1}

\journal{Pattern Recognition}

\runauth{Me et al.}

\renewcommand{\jnllogo}{\includegraphics[height=60pt,keepaspectratio]{PRlogo}}% added <<<<<<<<<<<<<<<<<

\usepackage{kantlipsum} % Only dummy text

\begin{document}
    
    \begin{frontmatter}
            
        \title{A nice title }
        
        \author{author1}
        \author{author2}    
        \address{address1}
        \address{address2}
        
        \begin{abstract}
            \kant[1]
        \end{abstract}
        
        \begin{keyword}
            key1,key2,key3
        \end{keyword}
        
    \end{frontmatter}
    
    \section{Introduction}  
    \kant[2-8]  
    
\end{document

使用的文件包含在运行此包的文件

相关内容