\documentclass[a4paper, 11pt]{article} % Font size (can be 10pt, 11pt or 12pt) and paper size (remove a4paper for US letter paper) \usepackage[protrusion=true,expansion=true]{microtype} % Better typography \usepackage{graphicx} % Required for including pictures \usepackage{wrapfig} % Allows in-line images \usepackage{enumitem} %%Enables control over enumerate and itemize environments \usepackage{setspace} \usepackage{amssymb, amsmath, mathrsfs} %%Math packages \usepackage{stmaryrd} \usepackage{mathtools} \usepackage{mathpazo} % Use the Palatino font \usepackage[T1]{fontenc} % Required for accented characters \usepackage{array} \usepackage{bibentry} \usepackage[round]{natbib} %%Or change 'round' to 'square' for square backers \setcitestyle{aysep={}} \linespread{1.05} % Change line spacing here, Palatino benefits from a slight increase by default \newcommand{\corner}[1]{\ulcorner#1\urcorner} %%Corner quotes \newcommand{\tuple}[1]{\langle#1\rangle} %%Angle brackets \newcommand{\set}[1]{\lbrace#1\rbrace} %%Set brackets \newcommand{\interpret}[1]{\llbracket#1\rrbracket} %%Double brackets %\DeclarePairedDelimiter\ceil{\lceil}{\rceil} \makeatletter \renewcommand\@biblabel[1]{\textbf{#1.}} % Change the square brackets for each bibliography item from '[1]' to '1.' \renewcommand{\@listI}{\itemsep=0pt} % Reduce the space between items in the itemize and enumerate environments and the bibliography \renewcommand{\maketitle}{ % Customize the title - do not edit title and author name here, see the TITLE block below \begin{flushright} % Right align {\LARGE\@title} % Increase the font size of the title \vspace{10pt} % Some vertical space between the title and author name {\@author} % Author name \\\@date % Date \vspace{30pt} % Some vertical space between the author block and abstract \end{flushright} } %---------------------------------------------------------------------------------------- % TITLE %---------------------------------------------------------------------------------------- \title{\textbf{Handout Title}} % Subtitle \author{\textsc{CLASS OR TOPIC}\\ \em Benjamin Brast-McKie} % Institution \date{\today} % Date %---------------------------------------------------------------------------------------- \begin{document} \maketitle % Print the title section \thispagestyle{empty} %---------------------------------------------------------------------------------------- \section*{First Section} \begin{enumerate}[leftmargin=1.2in,labelsep=.15in] %,label=(\arabic*)]%,label=\roman*] \item[\bf Definition:] Begin definition\dots \end{enumerate} \vfill \bibliographystyle{Phil_Review} %%bib style found in bst folder, in bibtex folder, in texmf folder. \bibliography{Zotero} %%bib database found in bib folder, in bibtex folder \end{document}