Initial commit

This commit is contained in:
Sean O'Connor
2026-02-03 10:58:04 -05:00
commit 205bfa9eb3
24 changed files with 1116 additions and 0 deletions

15
thesis/images/speaker.tex Normal file
View File

@@ -0,0 +1,15 @@
\documentclass{article}
\usepackage{tikz}
\usepackage[margin=0.5in]{geometry}
\begin{document}
\pagestyle{empty}
\begin{center}
\begin{tikzpicture}
% Draw a speaker shape
\draw[thick] (0,0) -- (0,3) -- (1,4) -- (3,4) -- (3,0) -- cycle;
\draw[thick] (1,3) -- (1,1) -- (2,1) -- (2,3) -- cycle;
\draw[thick] (1.5,2) circle (0.3);
\node at (1.5,5) {Placeholder Speaker Image};
\end{tikzpicture}
\end{center}
\end{document}