diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /LaTeX/ProposalLetter/ProposalLetter.tex | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'LaTeX/ProposalLetter/ProposalLetter.tex')
-rw-r--r-- | LaTeX/ProposalLetter/ProposalLetter.tex | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/LaTeX/ProposalLetter/ProposalLetter.tex b/LaTeX/ProposalLetter/ProposalLetter.tex new file mode 100644 index 0000000..9e3b815 --- /dev/null +++ b/LaTeX/ProposalLetter/ProposalLetter.tex @@ -0,0 +1,110 @@ +\documentclass{article} +\usepackage[style=mla,backend=biber]{biblatex} + +%for Copyleft Symbol +\usepackage{graphicx} + +%for URL embedding +\usepackage{hyperref} +\hypersetup{ + colorlinks=true, + urlcolor=blue, + pdfborderstyle={/S/U/W 1}, + citecolor=black +} + + +% +%Margin - 1 inch on all sides +% +\usepackage[letterpaper]{geometry} +\geometry{top=1.0in, bottom=1.0in, left=1.0in, right=1.0in} + +% +%Doublespacing +% +\usepackage{setspace} +\doublespacing + +% +%Babel package for multiple language typesetting +% +%\usepackage[T1]{fontenc} +%\usepackage[latin1]{inputenc} + +% +%Setting the font +% +\usepackage{times} + +% +%Rotating tables (e.g. sideways when too long) +% +\usepackage{rotating} + +% +%For multiple rows in tables +% +\usepackage{multirow} + +% +%Line numbering in verse environment +% +\usepackage{lineno} + +% +%Fancy-header package to modify header/page numbering (insert last name) +% +\usepackage{fancyhdr} +\pagestyle{fancy} +\lhead{} +\chead{} +\rhead{Anonymous \thepage} +\lfoot{} +\cfoot{} +\rfoot{} +\renewcommand{\headrulewidth}{0pt} +\renewcommand{\footrulewidth}{0pt} +%To make sure we actually have header 0.5in away from top edge +%12pt is one-sixth of an inch. Subtract this from 0.5in to get headsep value +\setlength\headsep{0.333in} + +%Bibliography File +\addbibresource{Biblio.bib} + + + +\begin{document} +\begin{flushleft} + +%%%%First page name, class, etc +msglm\\ +Professor Anonymous \\ +Technical Writing \\ +\today\\ + +%%%%Title +\begin{center} +Title +\end{center} + +%%%%Changes paragraph indentation to 0.5in +\setlength{\parindent}{0.5in} + +%%%%Begin body of paper here + +%%%%Works cited +\pagebreak +\printbibliography + +\end{flushleft} + +\scriptsize{ + \begin{center} + \vspace*{\fill} + Copyright \copyright \the\year{} msglm - + This work is licensed under the \href{https://creativecommons.org/licenses/by-sa/4.0/}{CC-BY-SA 4.0} with a willingness to sell exceptions. + \end{center} +} +\end{document} + |