Last active
April 2, 2021 15:11
-
-
Save dimspith/20d8ebcbb79ad18cbf32792d95096ef4 to your computer and use it in GitHub Desktop.
Latex template for assignments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[12pt]{article} | |
| \title{Assignment 2} | |
| \author{Dimitris Spythouris (csd4040)} | |
| % Shrink document margins | |
| \usepackage[margin=0.5in]{geometry} | |
| % Double line spacing | |
| \usepackage{setspace} | |
| \doublespacing{} | |
| % Symbols, math, graphics and source code support | |
| \usepackage{amssymb} | |
| \usepackage{amsmath} | |
| \usepackage{graphicx} | |
| \usepackage[shortlabels]{enumitem} | |
| \usepackage{listings} | |
| % Font configuration for math and EN/EL | |
| \usepackage{fontspec} | |
| \defaultfontfeatures{Mapping=tex-text} | |
| \setmainfont{FiraSans} | |
| \setmainfont[Script=Greek]{FiraSans} | |
| \setmonofont{Fira Code} | |
| \usepackage{newtxsf} | |
| \begin{document} | |
| \maketitle | |
| \end{document} | |
| %% Local Variables: | |
| %% TeX-engine: luatex | |
| %% End: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment