Skip to content

Instantly share code, notes, and snippets.

@marethyu
Last active September 7, 2023 01:03
Show Gist options
  • Select an option

  • Save marethyu/b52f0fa8a0f38c14ebcef96916146727 to your computer and use it in GitHub Desktop.

Select an option

Save marethyu/b52f0fa8a0f38c14ebcef96916146727 to your computer and use it in GitHub Desktop.
LaTeX template for homework assignments
\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