I started learning LaTeX just today. I'm trying to write some of my notes in TeX form, but when I try to build this I'm getting a bunch of errors. Can you take a look at it and see what's wrong? Thanks.
\documentclass{article}
\begin{document}
\title{Foundations of CS, Lecture 1}
\author{Ryan}
\date{January 23, 2014}
\maketitle
\textbf{Proposition} - a declarative statement that is either True or False.
\begin{itemize}
\item Atomic proposition - basic proposition
\item Compound proposition - complex proposition that is built upon smaller ones
\begin{itemize}
\item Negation - \lnot p
\item Conjunction - p \land q
\item Dis-junction - p \lor q
\item Implication - p \rightarrow q
\item Bi-conditional - p \longleftrightarrow q
\end{itemize}
\end{itemize}
For a statement p -> q, there are several related statements:
\begin{itemize}
\item Converse: q \rightarrow p
\item Contrapositive: \lnot q \rightarrow \lnot p
\item Inverse: \lnot p \rightarrow \lnot q
\end{itemize}
\textbf{Logical Equivalency} - Two propositions are logically equivalent
if they have the same truth table.
\begin{itemize}
\item \textbf{Example: }Is p \rightarrow q equivalent to \lnot q \rightarrow \lnot p?
Truth table goes here
\end{itemize}
\textbf{Precedence of Logical Operators}
Table goes here
\begin{itemize}
\item Tautology - proposition that is always True
\item Contradiction - proposition that is always False
\item Contingency - proposition that is neither True or False
\begin{itemize}
\item For example, p
\end{itemize}
\end{itemize}
\end{document}

\begin{document}and\end{document}: they enclose all the things you hope to see printed on the page (roughly speaking). That is, (you could) put the first before the\maketitleline, and the second at the end of your.texfile (anything below\end{document}will be ignored by (La)TeX. I see that you have the\begin{document}, but without it's partner,\end{document}, you don't have a complete LaTeX file. – jon Jan 24 '14 at 05:37\lnot, but$\lnot$). – jon Jan 24 '14 at 05:42\implies(you'll need to include\usepackage{amsmath}in your preamble for this one) and\iffinstead of the arrows for implication and equivalence. That way your LaTeX will be easier to read :) – Snicksie Jan 24 '14 at 07:30\textbf{}a few times, consider defining a new macro containing the meaning (why do you want this to be bold).\newcommand{\attention}[1]{\textbf{#1}}. This way, you can change the appearance of your document at a later point with just one change. – Johannes_B Jan 24 '14 at 09:04