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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
\documentclass{tufte-book}
\usepackage{tikz}
\usepackage[super]{nth}
% \usepackage{parskip}
\usepackage{listings}
\hypersetup{colorlinks,linkcolor=blue}
\usetikzlibrary{automata,positioning,shapes,arrows}
\topmargin=-0.45in
\evensidemargin=0in
\oddsidemargin=0in
\textheight=9.0in
\headsep=0.25in
\linespread{1.6}
\frenchspacing
\tikzstyle{decision} = [diamond, draw, fill=blue!20,
text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt]
\tikzstyle{block} = [rectangle, draw, fill=blue!20,
text width=5em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\tikzstyle{cloud} = [draw, ellipse,fill=red!20, node distance=3cm,
minimum height=2em]
\titleformat{\section}{\scshape\Large}{\thesection}{1em}{}
\newenvironment{logEntry}[2]{ % Date, heading
\noindent\textbf{#2}\marginnote{#1}\par}{\vspace{0.5cm}
}
\def\?#1{}
\newcommand{\writetitle}{0}
\newcommand{\mytitle}[2]{
\ifthenelse{\writetitle=1}{\normalfont{#2:} \textbf{#1}}{}
}
\newcommand{\co}{Computer Organisation}
\newcommand{\gp}{General Psychology}
\newcommand{\da}{Digital Art: Photoshop}
\newcommand{\dd}{Documentation Development}
\newcommand{\hmwkTitle}{Documentation Log Assignment}
\newcommand{\hmwkDueDate}{March 10, 2023}
\newcommand{\hmwkClass}{Documentation Development}
\newcommand{\hmwkClassTime}{Section 01}
\newcommand{\hmwkClassInstructor}{Professor Jessica Scott}
\newcommand{\hmwkAuthorName}{\textbf{Zoltan Szabatin}}
\newread\mysource
\begin{document}
|