\documentclass[12pt]{article}
\usepackage[margin=2.54cm]{geometry}
\usepackage{fourier}
\usepackage{fontspec}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\usepackage{xeCJK}
\setmainfont{Heuristica}
\setCJKmainfont{Noto Serif CJK SC}
\usepackage{amsmath, amssymb, amsthm, mathrsfs,bm}
\usepackage{booktabs}
\usepackage{url}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{comment}
\usepackage{xcolor}
\usepackage{lipsum}
\usepackage{mdframed}
\usepackage[backend=biber]{biblatex}
\addbibresource{refs.bib}
\graphicspath{{image}}
\usepackage{setspace}
\usepackage{parskip}
\onehalfspacing
\DeclareFieldFormat{title}{#1}
\usepackage{titling}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\textsc{Sustainability, Digitalization and Globalization}}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\newcommand{\articletype}[1]{\textit{\small #1}\par\vspace{2mm}}
\pretitle{\begin{flushleft}\Large\bfseries}
\posttitle{\end{flushleft}\vskip 0.5em}
\preauthor{\begin{flushleft}\large\lineskip 0.5em\begin{tabular}[t]{@{}l@{}}}
\postauthor{\end{tabular}\end{flushleft}}
\fancypagestyle{firstpage}{%
\fancyhead[L]{ \vspace{1.5cm} \footnotesize Year: 2024, Volume: xx, Issue: xx}
\fancyhead[R]{\includegraphics[height=2.4cm]{logo.jpg}}
\renewcommand{\headrulewidth}{0pt}
{\footnotesize \hspace{1pt} DOI: xxxx}
}
\renewenvironment{abstract}
{\begin{mdframed}[
backgroundcolor=gray!20,
innertopmargin=10pt,
innerbottommargin=15pt,
innerleftmargin=15pt,
innerrightmargin=15pt,
linewidth=0pt,
roundcorner=0pt,
frametitleaboveskip=5mm,
frametitlebelowskip=-1mm,
frametitle={\bfseries Abstract},
frametitlefont={\bfseries},
frametitlealignment=\raggedright
]
\vspace{2mm}}
{\end{mdframed}}
\newcommand{\keywords}[1]{
\vspace{12pt}
\par\noindent\textbf{Keywords:} #1
}
\title{\articletype{Article Type} Title}
\author{F. Author\textsuperscript{1,*}, S. Author\textsuperscript{1}, T. Author\textsuperscript{2}, F.T. Author\textsuperscript{2} \\
{\footnotesize \textsuperscript{1}First Division, Organization, City, State, Country} \\
{\footnotesize \textsuperscript{2}Second Division, Organization, City, State, Country} \\
{\footnotesize \textsuperscript{*}Corresponding author. Email: first.author@address.edu}}
\date{}
\begin{document}
\maketitle
\thispagestyle{firstpage}
\begin{abstract}
Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here. Insert abstract text here.
\end{abstract}
\keywords{keyword entry 1, keyword entry 2, keyword entry 3}
%\tableofcontents
\newpage
\section{Introduction}
Use XeLaTex to compile please.
\subsection{Table}
Table~\ref{tab:example} gives an example.
All tables, figures, and equations must be capitalized when cited (e.g., As shown in Table~\ref{tab:example}, ...).
All tables, figures, and equations included must be cited correctly.
All tables and figures must have a caption.
\begin{table}[hbt!]
\caption{Example table}
\centering
\setlength{\tabcolsep}{3mm}{
\begin{tabular}{ccc}
\toprule
Parameter & Value & Description \\
\midrule
$a$& 1 & one \\
$b$ & 2 & two \\
$c$ & 3 & three\\
\bottomrule
\end{tabular}}
\label{tab:example}
\end{table}
\subsection{Image}
Figure~\ref{exampleimage} gives an example.
\begin{figure}[hbt!]
\centering
\includegraphics[width=0.8\linewidth]{exampleimage.pdf}
\caption{This is an example image}
\label{exampleimage}
\end{figure}
\subsection{Equation}
Equation~\eqref{eq:first} is an example.
\begin{equation}
\begin{aligned}\label{eq:first}
\frac{\partial u(t,x)}{\partial t} = Au(t,x) \left(1-\frac{u(t,x)}{K}\right)
-B\frac{u(t-\tau,x) w(t,x)}{1+Eu(t-\tau,x)},\\
\frac{\partial w(t,x)}{\partial t} =\delta \frac{\partial^2w(t,x)}{\partial x^2}-Cw(t,x)
+D\frac{u(t-\tau,x)w(t,x)}{1+Eu(t-\tau,x)}.
\end{aligned}
\end{equation}
\subsection{Citation }
Titles of all cited articles are required. Titles of articles cited in reference lists should be in upright, not italic text; the first word of the title is capitalized, the title written exactly as it appears in the work cited.
Author names are listed in Roman alphabet characters as standard. We can support presentation of author names using some non-Roman characters in parentheses after the Roman-character spelling.
Cite this way \cite{carr2024climate}.
Cite this way if the original source is in non-Roman alphabet, such as Chinese \cite{Zhange2021}. Author names in their original characters should follow the Roman alphabet characters, and the same applies to the title and the name of the journal or book. If any characters are unsupported, use only the Roman alphabet characters.
\section*{Acknowledgement}
Insert the Acknowledgment text here.
%\nocite{*}
\printbibliography
\end{document}