I am getting the following error:
Code: Select all
Runaway argument?
{\contentsline {table}{\numberline {1}{\ignorespaces \textit {Simulat\ETC.
! File ended while scanning use of \@writefile.
<inserted text>
\par
l.32 \begin{document}
?
I also tried to remove ALL body from the document, and I still get this error! This is how my code looks like:
Code: Select all
% Don't mess with this unless you really want to be a LaTeX expert:
\documentclass[11pt]{article}
% These are the packages with the extra commands that I use most often:
\usepackage{fullpage}
\usepackage{multirow}
\usepackage{amsmath, amsfonts, amssymb, amsthm}
\usepackage{bm}
%\usepackage[dvips]{graphicx}
\usepackage{graphicx}
%\usepackage{algorithm, algorithmic}
\usepackage{enumerate}
%\usepackage{epstopdf}
% Here's how to define new commands:
\newcommand{\io}{\:\text{i.o.}}
\newcommand{\Exp}{\mathbb{E}}
\newcommand{\Var}{\text{Var}}
\newcommand{\Cov}{\text{Cov}}
\newcommand{\MSE}{\text{MSE}}
\newcommand{\Prob}{\mathbb{P}}
\newcommand{\Nor}{\mathcal{N}}
\newcommand{\argmax}{\operatornamewithlimits{argmax}}
\newcommand{\argmin}{\operatornamewithlimits{argmin}}
\newcommand{\tr}{\text{tr}}
\newcommand{\nequiv}{\not\equiv}
\newcommand{\hwheader}[2]{\begin{flushright}#1\\STAT 531 Quiz #2\end{flushright}}
\newtheorem{prop} {Proposition}[section]
\newtheorem{claim}{Claim}
\begin{document}
\blah
\end{document}
I have also attached a .log file for this....
Thank you so much,
Asaf