mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9ea1226460
Apply draft mode to graphics package as well (in addition to graphicx) GitOrigin-RevId: 6137f90ef9d579f0e6554801e8f2e0f5dee2aa83
37 lines
837 B
TeX
37 lines
837 B
TeX
\documentclass{article}
|
|
% Language setting
|
|
% Replace `english' with e.g. `spanish' to change the document language
|
|
\usepackage[english]{babel}
|
|
|
|
% Set page size and margins
|
|
% Replace `letterpaper' with `a4paper' for UK/EU standard size
|
|
\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
|
|
|
|
% Useful packages
|
|
\usepackage{amsmath}
|
|
\usepackage{graphicx}
|
|
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
|
|
|
|
\title{Your Paper}
|
|
\author{You}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
\begin{abstract}
|
|
Your abstract.
|
|
\end{abstract}
|
|
|
|
\section{Introduction}
|
|
|
|
This is the start of the document.
|
|
|
|
\begin{figure}[h]
|
|
\centering
|
|
\includegraphics[width=0.3\textwidth]{frog.jpg}
|
|
\caption{\label{fig:frog}This frog was uploaded via the file-tree menu.}
|
|
\end{figure}
|
|
|
|
This is the end of the document.
|
|
|
|
\end{document}
|