Add author profile and picture (biography) to Elsevier paper template

There is no biography template in the thesis template of the Elsever thesis template, how to add it manually?

1. Examples of existing solutions (not perfect)

There are also many solutions on CSDN, such as here :

\documentclass{article}
\usepackage{wrapfig}
\usepackage{graphicx}

\begin{document}

  \begin{wrapfigure}{l}{25mm} 
    \includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{Author Photo}
  \end{wrapfigure}\par
  \textbf{Author Name} Introduction\par
\end{document}

The effect is as follows:
insert image description here
the effect is almost the same, but not perfect, there are: the top of the photo and the profile are not aligned, and the names of the people are indented and other problems.

2. Improvement plan

Here's what I think is the perfect solution:

%% 插入必须的包
\usepackage{wrapfig} % 用于插入biography
\usepackage{flushend} % 用于让最后一页的biography以行对齐

%% Author 1
\subsection*{  } % 让reference和biography之间保留一定的间距
\setlength\intextsep{0pt} % 对齐photo和introduction
\begin{wrapfigure}{l}{25mm}
    \centering
    \includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{photo1.jpg}
\end{wrapfigure}
\noindent \textbf{Author Name} congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations.\par

\hspace*{\fill} % author与author之间空一行

%% Author 2
\subsection*{  } % 让reference和biography之间保留一定的间距
\setlength\intextsep{0pt} % 对齐photo和introduction
\begin{wrapfigure}{l}{25mm}
    \centering
    \includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{photo2.jpg}
\end{wrapfigure}
\noindent \textbf{Author Name} congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations congratulations.\par

The effect is as follows:
insert image description here

3. Off topic

(My thesis was accepted, haha) In fact, after so much tossing, after the paper is accepted, Elsevier will have a special person to help you rearrange the typesetting. The final version only uses the biography and photo we provided (so you can skip this part if you find it troublesome. Just provide text and picture attachments directly). They have a latex template for publishing, and many instructions are different from what we use in manuscript, such as the instruction to insert a biography. Summary: Elsevier is still very professional, and many steps are streamlined and professional, allowing contributors to focus more on the content itself; but the point of complaint is that the steps are a bit trivial.

reference:


Other recommended academic writing skills:

Guess you like

Origin blog.csdn.net/lyh458/article/details/127602676