Instructions

This is a typical latex template for homework. In this example, we’ll work on including images and references. Both of these require additional files in your project. You’ll have to make a separate image file to upload. For the bibliography, you can upload a .bib or connect Mendeley directly.

Copy the latex code below into a blank Overleaf document. Try to reproduce the material from the pdf example, using your own images and references. Feel free to use google and talk to each other. If you get stuck, you can check the answers here.

Latex Template

\documentclass{article}
\usepackage{graphicx,fancyhdr,amsmath,amssymb,amsthm,subfig,url,hyperref,booktabs, multicol, multirow}
\usepackage[margin=1in]{geometry}
%----------------------- Macros and Definitions --------------------------

%%% FILL THIS OUT
\newcommand{\studentname}{First Last}
\newcommand{\suid}{first.last}
\newcommand{\exerciseset}{Homework N}
%%% END



\renewcommand{\theenumi}{\bf \Alph{enumi}}

%\theoremstyle{plain}
%\newtheorem{theorem}{Theorem}
%\newtheorem{lemma}[theorem]{Lemma}

\fancypagestyle{plain}{}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[RO,LE]{\sffamily\bfseries\large School}
\fancyhead[LO,RE]{\sffamily\bfseries\large OPER ???}
\fancyfoot[LO,RE]{\sffamily\bfseries\large \studentname: \suid @school.edu}
\fancyfoot[RO,LE]{\sffamily\bfseries\thepage}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}

\graphicspath{{figures/}}

%-------------------------------- Title ----------------------------------

\title{OPER ???: Course \exerciseset}
\author{\studentname}

%--------------------------------- Text ----------------------------------

\begin{document}
\maketitle

\section*{Problem 3: Images}
Include any.png image:

%%% Replace this comment with your answer


\section*{Problem 4: References}
\begin{enumerate}

\item %A
An in-line citation: %%% Replace this comment with your answer


\item %B 
Bibliography: 

%%% Replace this comment with your answer

\end{enumerate}

\end{document}