需要在以下模板中添加期刊标题和徽标

需要在以下模板中添加期刊标题和徽标

在此处输入图片描述我需要在第一页的左上角添加期刊标题,在右上角添加徽标。

以下是代码:

\documentclass[11pt]{amsart}

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{cases}
%\usepackage[initials]{amsrefs}
\usepackage{fancyhdr}
\textwidth=35truepc
\textheight=45truepc

\paperheight=260mm
\paperwidth=240mm



\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{remark}[theorem]{Remark}
\numberwithin{equation}{section}


\title[]{}


\author[]{}
\address[]{}
\email{{}}
\keywords{}
\subjclass[2010]{}

%\date{\today}

\begin{document}

\begin{abstract}
\end{abstract}

\maketitle 

\end{document}

非常感谢。

答案1

该类amsart提供了一个钩子来满足您的需求。您可以将期刊名称和徽标放入其中。

结果

\documentclass[11pt]{amsart}

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{cases}
%\usepackage[initials]{amsrefs}
\usepackage{fancyhdr}
\textwidth=35truepc
\textheight=45truepc

\paperheight=260mm
\paperwidth=240mm



\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{remark}[theorem]{Remark}
\numberwithin{equation}{section}

\makeatletter
\newlength{\logoheight}
\setlength{\logoheight}{40pt} % set your logo height
\renewcommand{\@maketitle@hook}{% the hook provided, all below is put before the title
    \parbox[c]{.5\linewidth}{Journal name\\Volume\dots}% used parbox to have multiple lines available
    \hfill% to put the logo on the right
    \raisebox{\dimexpr-.5\logoheight+.5ex\relax}% This aligns the logo vertically 
    {\includegraphics[height=\logoheight]{example-image-1x1}}\par% your logo
    \vspace{15pt}% Space between logo and Title
}
\makeatother


\title[]{The Magnificent Title}


\author[]{}
\address[]{}
\email{{}}
\keywords{}
\subjclass[2010]{}

%\date{\today}

\begin{document}

    \begin{abstract}
        This is the abstract.
    \end{abstract}

    \maketitle 

\end{document}

相关内容