LaTex Tips

First of all, certainly a must-read latex note from Prof. Kohler

Insert dummy texts so you have a lot

\usepackage{lipsum}
\lipsum[1-3]

Useful input macros for cs conferences

Create a file called macro.tex with the template file macro.tex.

Then in normal texts, use anonymous to change the author:

\iftoggle{anonymous}{
  \author{
    \alignauthor Anonymous for submission\\
    % \affaddr{...}\\
    % \email{...}\\
  }
}{ %else
  \numberofauthors{1}
  \author{
    \alignauthor Ben Zhang \\
    \affaddr{UC Berkeley EECS} \\
    \email{benzh@cs.berkeley.edu}
  }
}

Another place to anonymize is typically the acknowledgement:

\iftoggle{anonymous}{
  % no acks in anonymous submission
}{
  \section{Acknowledgments}
  This work was supported in part by XXX.
}