Last active
September 7, 2023 01:03
-
-
Save marethyu/b52f0fa8a0f38c14ebcef96916146727 to your computer and use it in GitHub Desktop.
LaTeX template for homework 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, a4paper]{article} | |
| \usepackage{fancyhdr} | |
| \usepackage[left=4cm, right=4cm, top=4cm, bottom=4cm]{geometry} | |
| \usepackage[utf8]{inputenc} | |
| \newcommand{\doctitle}{Sample title} | |
| \newcommand{\name}{Foo Bar} | |
| \newcommand{\studentno}{123456789} | |
| \newcommand{\todaydate}{Jan. 1, 20XX} | |
| \pagestyle{fancy} | |
| \lhead{\textbf{\doctitle}} | |
| \chead{\name} | |
| \rhead{\todaydate} | |
| \begin{document} | |
| \begin{flushright} | |
| \name \\ | |
| \studentno \\ | |
| \todaydate | |
| \end{flushright} | |
| \begin{center} | |
| \Large | |
| \bfseries | |
| \doctitle | |
| \end{center} | |
| % suppress the fancy header on the first page only | |
| \thispagestyle{plain} | |
| \noindent | |
| This is a sample text. | |
| \section*{Section 1} | |
| I love penises. | |
| \newpage | |
| \thispagestyle{fancy} | |
| \section*{Section 2} | |
| I love balls. | |
| \newpage | |
| \section*{Section 3} | |
| I am gay. | |
| \end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment