-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.tex
More file actions
40 lines (34 loc) · 946 Bytes
/
template.tex
File metadata and controls
40 lines (34 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
\documentclass[a4paper,15pt]{article}
% Packages
\usepackage{amsmath, amssymb} % Math symbols
\usepackage{graphicx} % For images
\usepackage{tikz} % For drawings
\usepackage{geometry} % Page layout
\usepackage{fancyhdr} % Headers and footers
\usepackage{datetime2} % Date and time
% Page Layout
\geometry{margin=1in}
\pagestyle{fancy}
\fancyhf{}
\lhead{\DTMnow} % Current date and time
\cfoot{\thepage}
% Custom Commands
\newcounter{lecture}
\setcounter{lecture}{1}
\newcommand{\lecture}[1]{
\section*{Lecture \thelecture: #1}
\addtocounter{lecture}{1}
\noindent\textbf{Date:} \today \quad \textbf{Time:} \DTMcurrenttime
\vspace{0.5cm}
\hrule
\vspace{0.5cm}
}
% Important Note Environment
\newcommand{\important}[1]{
\vspace{0.3cm}
\noindent\textbf{\underline{Important:}} #1
\vspace{0.3cm}
}
\begin{document}
\lecture{Sample title}
\end{document}