爱思唯尔文摘部分的图文摘要

爱思唯尔文摘部分的图文摘要

我想在 Elsevier 的摘要后添加图形摘要。但是,我不知道如何才能做到这一点,才能得到类似照片的效果。在此处输入图片描述

\documentclass[hidelinks,review]{elsarticle}
%\documentclass[1p]{elsarticle}
\usepackage{geometry}
\usepackage{epsfig}
\usepackage{latexsym}
\usepackage[font={normalsize}]{caption}
\usepackage[para,flushleft]{threeparttable}
\renewcommand{\TPTtagStyle}{\textit}
\usepackage{booktabs}
%\usepackage{nicematrix}
\usepackage{amsmath}
\usepackage{fullpage}
\usepackage{setspace}
\usepackage{mathtools}
\usepackage{fancyhdr}
\usepackage{sectsty}
\usepackage{siunitx}
\usepackage{tabularx}
\usepackage{float}
\usepackage{indentfirst}
\usepackage{changepage}
\usepackage{adjustbox}
\usepackage{tabularx}
\usepackage{rotating}
\usepackage{makecell}
\usepackage{subcaption}
\usepackage{rotating}
%\usepackage{subfigure}

% packages for tables
\usepackage{multirow}
\usepackage[table,xcdraw]{xcolor}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{caption}

\usepackage{fullpage} 
\usepackage[skip=1ex, 
            font=small, labelfont=bf]{caption}
% packages for tables
\usepackage[table,xcdraw]{xcolor}
\usepackage{multirow, tabularx}
\usepackage{tabularray}
\UseTblrLibrary{booktabs, siunitx, varwidth}

\usepackage{enumitem}
\usepackage{lineno,hyperref}
\modulolinenumbers[5]



%\usepackage[normalem]{ulem}
%\usepackage[usenames, dvipsnames]{color}


%\usepackage{nomencl}
%\usepackage{cite}

\usepackage{natbib}




%\usepackage[numbers,super]{natbib}
%\setcitestyle{numbers,super}



\usepackage{enumitem}

\usepackage{lineno,hyperref}
\modulolinenumbers[5]



%\renewcommand{\thefootnote}
\newcommand\degrees[1]{\ensuremath{#1^\circ}}

\newcommand\mycaption[1]{\caption{\footnotesize{#1}}}

\newcommand\myfootnote[1]{\footnote{\small{#1}}}

\newcommand\scalemath[2]{\scalebox{#1}{\mbox{\ensuremath{\displaystyle #2}}}}


\renewcommand{\TPTtagStyle}{\textit}

\newcommand{\splitcell}[1]{\begin{tabular}{@{}c@{}}#1\end{tabular}}


\captionsetup{skip=0.333\baselineskip}
\usepackage{calc,ragged2e}
\hyphenation{gauss-ian}

\setlist[enumerate]{label*=\arabic*.}




\journal{Eny}


\bibliographystyle{elsarticle-num}



\begin{document}
    
    \begin{frontmatter}
        
        \title{Implementa of chain fothe case stua} 

        \author[mymainaddress]{Banesh}
        \author[mymainaddress]{Trghfd}
        \author[mysecondaryaddress]{Faeh\corref{mycorrespondingauthor}}
        \cortext[mycorrespondingauthor]{Corresponding author}
        \ead{s179.edu } 
        \author[mymainaddress]{Sylwska}     

    
    


        
        \address[mymainaddress]{Institute sh Academy of Sciences, Gdańsk, Poland}
        \address[mysecondaryaddress]{Gdanland}
        
        

        

        
        \begin{abstract}


ollowed by hyper-parameter tuning and k-fold cross-validation method. Sugfor the prediction of target variables in similar problems. It is envisioned that the proposed model acts as an accurate and versatile performance evaluation tool that assists researchers in the prediction of energy performance and optimization of various SSs for different engineering purposes.


        \end{abstract}


        
        \begin{keyword}
        Sewage sludge \sep Incintem \sep Energyce \sep Macrning \sep Optimion
        \end{keyword}
        
    \end{frontmatter}
    

    

答案1

添加模仿风格的图片。

\documentclass[hidelinks,review]{elsarticle}
\usepackage{graphicx}

\journal{Eny}
\bibliographystyle{elsarticle-num}

\begin{document}
    
\begin{frontmatter}
        
\title{Implementa of chain fothe case stua} 

\author[mymainaddress]{Banesh}
\author[mymainaddress]{Trghfd}
\author[mysecondaryaddress]{Faeh\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead{s179.edu } 
\author[mymainaddress]{Sylwska}     
        
\address[mymainaddress]{Institute sh Academy of Sciences, Gdańsk, Poland}
\address[mysecondaryaddress]{Gdanland}
        
\begin{abstract}
Followed by hyper-parameter tuning and k-fold cross-validation method. 
Sugfor the prediction of target variables in similar problems. 
It is envisioned that the proposed model acts as an accurate and 
versatile performance evaluation tool that assists researchers in 
the prediction of energy performance and optimization of various 
SSs for different engineering purposes.

\medskip

\noindent\textbf{Graphic abstract}

\bigskip

\noindent\includegraphics[width=5cm]{example-image}
\end{abstract}

\begin{keyword}
Sewage sludge \sep Incintem \sep Energyce \sep Macrning \sep Optimion
\end{keyword}
        
\end{frontmatter}

\end{document}

在此处输入图片描述

你应该修改你的序言,它充满了重复,并包含几个旨在改变布局的包,这是你应该做的不是提交论文时要做的事情。

还请注意epsfiglatexsym已经过时,不应加载。

答案2

如果我理解正确的话,你需要将图片添加到你的摘要中。如果是这样,以下是配方:

  1. 您需要将您的图像上传到您的项目(我为此使用 Overleaf 平台,并且有一个用于图像上传的按钮)。
  2. 之后你需要输入图片代码: \begin{figure} \centering \includegraphics{} \caption{Caption} \label{fig:my_label} \end{figure}在代码中输入图片名称及其路径\includegraphics{}

关于用一张图片表示全部内容的图形摘要或将文本转换为 LaTex 中的方案,我建议使用 Tikz

相关内容