From 4e8e45bc8a6341b3a517442199843da7c40b62df Mon Sep 17 00:00:00 2001 From: Kevin Harrington Date: Wed, 15 Nov 2023 08:49:15 -0500 Subject: [PATCH] adding stubs --- .gitignore | 4 ++++ README.md | 12 +----------- keywordsList.tex | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+), 11 deletions(-) create mode 100644 keywordsList.tex diff --git a/.gitignore b/.gitignore index b52ae1f..83d1e31 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ .DS_Store BancroftRobodogsNotebook.pdf +*.gz +*.aux +*.log +*.pdf diff --git a/README.md b/README.md index 9899c41..15e220c 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,3 @@ -# Example Documentation Repo +# Arduino Class Courseware - -# Members - -Kevin Harrington - -![Kevin Harrington](image/kh_profile.jpeg) - -Elisa Heinricher - -![Elisa as cat](image/elisa.jpg) diff --git a/keywordsList.tex b/keywordsList.tex new file mode 100644 index 0000000..a2bb129 --- /dev/null +++ b/keywordsList.tex @@ -0,0 +1,23 @@ +\documentclass{article} +\usepackage{enumitem,amssymb} +\newlist{todolist}{itemize}{2} +\setlist[todolist]{label=$\square$} +\begin{document} +My ToDo list + +\begin{itemize} + \item Immediate plan of action. + + \begin{todolist} + \item List item 1 goes here. + \item List item 2 goes here. + \begin{todolist} + \item Sublist item 1 goes here. + \item Sublist item 2 goes here. + \end{todolist} + \item List item 3 goes here + \item List item 4 goes here. + \end{todolist} + +\end{itemize} +\end{document}