%-------------------
% About this template
%-------------------
% This template is based on the "Standard document" Overleaf template created by Christian L., which is distributed under the Creative Commons CC BY 4.0 license: https://cs.overleaf.com/latex/templates/standard-document/xhwhmfdcxhhj
%--------------------
% Packages
% -------------------
\documentclass[11pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{gentium}
\usepackage{mathptmx} % Use Times Font
\usepackage[pdftex]{graphicx} % Required for including pictures
\usepackage[english]{babel}
\usepackage[pdftex,linkcolor=black,pdfborder={0 0 0}]{hyperref} % Format links for pdf
\usepackage{calc} % To reset the counter in the document after title page
\usepackage{enumitem} % Includes lists
%\usepackage[utf8]{inputenc}%(only for the pdftex engine)
\frenchspacing % No double spacing between sentences
\linespread{1.2} % Set linespace
\usepackage[a4paper, lmargin=0.1666\paperwidth, rmargin=0.1666\paperwidth, tmargin=0.1111\paperheight, bmargin=0.1111\paperheight]{geometry} %margins
%\usepackage{parskip}
\usepackage[all]{nowidow} % Tries to remove widows
\usepackage[protrusion=true,expansion=true]{microtype} % Improves typography, load after fontpackage is selected
\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template
%-----------------------
% Set pdf information and add title, fill in the fields
%-----------------------
%\hypersetup{
%pdfsubject = {},
%pdftitle = {Title},
%pdfauthor = {Author(s)}
%}
%-----------------------
% Begin document
%-----------------------
\begin{document} %
\title{Paper Title}
\date{} %leave blank
%Please anonymize for submission
\author{
{Author Name}\\
{Institution}\\
{email}\\
\and
{Author Name}\\
{Institution}\\
{email}\\
\and
{Author Name}\\
{Institution}\\
{email}\\
}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{Introduction}
\lipsum[1-3]
\begin{figure}[h!]
\includegraphics[width=0.9\textwidth]{Figures/fig1}
\caption{}
\label{fig:1}
\end{figure}
\subsection{Subtitle}
\lipsum[4-5]
~\cite{Adams1999}
\begin{table}
\caption{}
\label{tab:1}
\centering
\begin{tabular}{ccc}
\hline
\hline
Test & Table & Here\\
\hline
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\hline
\hline
\end{tabular}
\end{table}
\section{Another Section}
\lipsum[6-7]
~\cite{gdprnytimes,gdpr,acquisti2020secrets}
\subsection{Another Subsection}
\lipsum[8-9]
~\cite{Kang2015}
\bibliographystyle{apalike}
\bibliography{bib}
\appendix
\end{document}