Skip to content

Instantly share code, notes, and snippets.

@Shad0wSeven
Created September 5, 2020 18:27
Show Gist options
  • Save Shad0wSeven/3051134ee848d796c9085be2e56712bf to your computer and use it in GitHub Desktop.
Save Shad0wSeven/3051134ee848d796c9085be2e56712bf to your computer and use it in GitHub Desktop.
LaTeX arcticle detailed skeleton
% Copyright (C) [YEAR HERE] [NAME HERE]
% All Rights Reserved
% Unauthorized copying of this file, via any medium is strictly prohibited Proprietary and confidential
% Written by [NAME HERE] <[EMAIL HERE]> [MONTH HERE] [YEAR HERE]
% -- Dependencies --
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{tocloft}
\usepackage{hyperref}
\usepackage[section]{placeins}
\usepackage{fancyhdr}
% -- Head --
\fancypagestyle{plain}{%
\fancyfoot[C]{\tiny Copyright \textcopyright\ [YEAR HERE] [NAME HERE] All Rights Reserved Unauthorized copying of this file, via any medium is strictly prohibited Proprietary and confidential
Written by [NAME HERE] ([EMAIL HERE]) [MONTH HERE] [YEAR HERE]}
}
\begin{document}
\title{Edit to Add Title}
\author{Edit to Add Author(s)}
\maketitle
% -- Abstract --
\begin{abstract}
Edit to add abstract
\end{abstract}
\pagebreak
% Put your document stuff here!
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment