\documentclass[12pt]{amsart}

\usepackage{amsmath, amssymb, amsthm}

\DeclareMathOperator{\dom}{Dom}

\begin{document}

\begin{center}
\large
Symbols for Term Papers
\end{center}

The pdf will be just the typeset symbols, so you'll have to look at the tex file to get the commands.  If it's not in here and you need it, it is probably done via the standard keyboard symbol (possibly in math mode; that is, enclosed by dollar signs).

\bigskip

\section{Letters}

\begin{itemize}
\item Greek: $\chi$, $\chi_A$, $\lambda$, $\eta$, $\beta$, $\alpha$, $\varphi$, $\varphi_e^X$

\item Roman and modified Roman: $W_{e,s}$, $\mathbb{N}$ (also: $\mathbb{Z}, \mathbb{Q}, \mathbb{R}, \mathbb{C}$), $\overline{A}$, $a^{n_1}$

\item Letter-like: $\emptyset$, $\forall$, $\exists$
\end{itemize}

\bigskip

\section{Relations and Operations}

\begin{itemize}
\item $\in$, $\notin$, $\setminus$, $\searrow$, $\cap$, $\cup$, $\subset$, $\subseteq$, $\subsetneq$; likewise with ``sup'' instead of ``sub'', e.g.\ $\supseteq$

\item $\cdot$, $\leq$, $\geq$, $\neq$, $\leq_T$, $\vert_T$, $\equiv_T$ 
\end{itemize}

\bigskip

\section{Other Symbols}

\begin{itemize}
\item $\uparrow$, $\downarrow$, $\to$, $\rightarrow$, $\longrightarrow$, $\mapsto$

\item $\langle$, $\rangle$, $\{$, $\}$

\item $\sum$, $\sum_{n=0}^{\infty}$, $\displaystyle{\sum_{n=0}^{\infty}}$
\end{itemize}

Symbols without built-in negations may be negated by prefacing with the ``not'' command: $\not\subseteq$.  Symbols may be boldfaced with ``boldsymbol'': $\boldsymbol{d}, \boldsymbol{\lambda}$.

You may create your own math operators like ``cos'' and ``min'' (many are built-in and used by prefacing with a backslash) with ``DeclareMathOperator''.  It goes in the header (before the ``begin document'' command); see example in this document.  This allows it to be in math mode typeset non-italic and with correct spacing: $\dom(f)$.

\end{document}