¿Cómo agregar el apellido de los autores y el título breve en el encabezado?

¿Cómo agregar el apellido de los autores y el título breve en el encabezado?

Quiero que el nombre de los autores se muestre en el título como en la siguiente foto. Aquí, los nombres de los autores se muestran en cada línea con su afiliación y dirección de correo electrónico. ingrese la descripción de la imagen aquí

Además, quiero definir un título corto. Por ejemplo, si el título completo es"Un estudio sobre el aprendizaje por refuerzo profundo en sistemas de recomendación: una revisión sistemática y direcciones futuras", quiero definir un título corto como"Una ración de DRL en RS". En el encabezado debe figurar el apellido de los autores y el título breve. Por ejemplo, en este estilo, en páginas pares, el encabezado es así:

ingrese la descripción de la imagen aquí

Y, en páginas impares, tenemos:

ingrese la descripción de la imagen aquí

busqué y encontré estopreguntayeste, pero es diferente.

'''

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{hyperref}
\usepackage{mathtools}
\usepackage{commath}   % For use of abs   >>> \abs{a}
\usepackage{appendix}
\usepackage{amsthm}    % To add a box at the end of the proof    \qed
\usepackage{setspace}  % To add space between lines \setstretch{1.25}
\usepackage{natbib}

\usepackage[a4paper, left=0.9in, right=0.9in, top=1in, bottom=1in, footskip=0.25in]{geometry}
%\usepackage[a4paper, left=0.1in, right=0.2in, top=1in, bottom=1in, margin=1in,footskip=0.25in]{geometry}
\usepackage{hyperref,xcolor}
\DeclareMathOperator{\Tr}{tr}
\newtheorem{assumption}{Assumption}
\hypersetup{
    colorlinks=true,
    linkcolor=red,
    urlcolor=red,
    linktoc=all,
    citecolor=red
           }
\usepackage{apptools}
\AtAppendix{\counterwithin{lemma}{section}}
%%%%%%%%%%%%%%% For writing algorithms %%%%%%%%%%%%%%%
\usepackage{xcolor}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
%%% Coloring the comment as blue
\newcommand\mycommfont[1]{\footnotesize\ttfamily\textcolor{blue}{#1}}
\SetCommentSty{mycommfont}

\SetKwInput{KwInput}{Input}                % Set the Input
\SetKwInput{KwOutput}{Output}              % set the Output



\setstretch{1.35}

 %\bibpunct[, ]{(}{)}{,}{a}{}{,}%
 \def\bibfont{\small}%
 \def\bibsep{\smallskipamount}%
 \def\bibhang{24pt}%
 \def\newblock{\ }%
 \def\BIBand{and}%

%% Setup of theorem styles. Outcomment only one.
%% Preferred default is the first option.
\TheoremsNumberedThrough     % Preferred (Theorem 1, Lemma 1, Theorem 2)
%\TheoremsNumberedByChapter  % (Theorem 1.1, Lema 1.1, Theorem 1.2)
\ECRepeatTheorems
\newtheorem{observation}{Observation}
\newtheorem{proposition}{Proposition}
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{corollary}{Corollary}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\hypersetup{
    colorlinks=true,% make the links colored
}
\definecolor{myblue}{RGB}{54, 58, 202}
\usepackage[toc,page]{appendix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\title{A Survey of Deep Reinforcement Learning in Recommender Systems: A Systematic Review and Future Directions}
\author{Xiaocong Chen, Lina Yao, Julian McAuley, Guanglin Zhou, Xianzhi Wang}

\date{\today}

\begin{document}

\maketitle
{
  \hypersetup{linkcolor=myblue}\tableofcontents}
\newpage
\section{Introduction}
\end{document}

Respuesta1

Esta no es una solución completa, pero espero que ayude a otros a ayudarte. Con el siguiente código, puedes formatear los autores bajo el título.

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, left=0.9in, right=0.9in, top=1in, bottom=1in, footskip=0.25in]{geometry}
\usepackage{lipsum} % just for generating dummy text
\usepackage{fancyhdr}
\usepackage{ifoddpage}


% Set the title, authors, and short title
\title{A Survey of Deep Reinforcement Learning in Recommender Systems: A Systematic Review and Future Directions}
\author{
  Xiaocong Chen\\
  Institution\\
  Address\\
  \texttt{email}
  \and
  Lina Yao\\
  Institution\\
  Address\\
  \texttt{email}
  \and
  Julian McAuley\\
  Institution\\
  Address\\
  \texttt{email}
  \and
  Guanglin Zhou\\
  Institution\\
  Address\\
  \texttt{email}
  \and
  Xianzhi Wang\\
  Institution\\
  Address\\
  \texttt{email}
}
\newcommand{\shortauthor}{Chen et al.}
\newcommand{\shorttitle}{A Survey of DRL in RS}

\begin{document}

\maketitle

\thispagestyle{empty} % suppress page number in first page

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

\clearpage

\setcounter{page}{1} % start page numbering from 1
\section{Introduction}
\lipsum[1-30] % dummy text

\end{document}

ingrese la descripción de la imagen aquí

Si la dirección o institución es mayor, entonces cada autor estará en una sola línea.

Respuesta2

Además de la respuesta de scd:

Para obtener encabezados diferentes en las páginas izquierda y derecha, necesita la twosideopción, ya sea

\documentclass[11pt,twoside]{article}

o

\usepackage[twoside]{fancyhdr}

Los comandos adicionales que necesitas son:

\pagestyle{fancy}
\fancyhead[EL,OR]{\thepage}
\fancyhead[OL,ER]{\shortauthor: \shorttitle}

ingrese la descripción de la imagen aquí

ingrese la descripción de la imagen aquí

información relacionada