Last active
July 5, 2024 14:42
-
-
Save Michael0x2a/e46e12a66b7dc604db5e to your computer and use it in GitHub Desktop.
Minimal LaTeX template
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{article} | |
% General document formatting | |
\usepackage[margin=0.7in]{geometry} | |
\usepackage[parfill]{parskip} | |
\usepackage[utf8]{inputenc} | |
% Related to math | |
\usepackage{amsmath,amssymb,amsfonts,amsthm} | |
\begin{document} | |
Name, date, Exercise X | |
\section*{Part a} | |
Put your answer to part a here | |
\section*{Part b} | |
etc | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment