Code: Select all
\documentclass[11pt,titlepage,draft]{report}
\parindent=0cm
\usepackage{amsmath, amsthm, amssymb,latexsym,amsfonts}
\usepackage{showkeys}
\newtheorem{theorem}{Theorem }[section]
\newtheorem{definition}[theorem]{Definition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{example}[theorem]{Example}
\newtheorem{remark}[theorem]{Remark}
\newtheorem*{comment}{Comment}
\newcommand{\ud}{\mathrm{d}}
\newcommand{\defeq}{\triangleq}
\numberwithin{equation}{section}
\begin{document}
\tableofcontents
\newpage
\abstract{aaa}
\chapter*{Notation Glossary}
aaaa
%\addcontentsline{toc}{chapter}{Notation Glossary}
\addtocontents{toc}{\bf{Notation Glossary}}
\chapter{Introduction}
bbbb
\chapter{Next}
aaa
\appendix
\chapter{A}
aaaaa
\end{document}
Code: Select all
! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.2 ...e {chapter}{\numberline {1}Introduction}{3}
Code: Select all
\bf {Notation Glossary}
\contentsline {chapter}{\numberline {1}Introduction}{3}
\contentsline {chapter}{\numberline {2}Next}{4}
\contentsline {chapter}{\numberline {A}A}{5}
Thanks.