ACM SenSys 2007 templates - Full papers

Page limit: 14 pages. Page format: letter.

LaTeX templates (preferred)

Note that the ACM category, subject descriptions, general terms and keywords must be included in all papers. The following sections are mandatory:

  • Categories & Subject Descriptors (See the ACM Computing Classification Scheme: http://www.acm.org/class/1998/)
  • General Terms: This section is limited to the following 16 terms: Algorithms, Management, Measurement, Documentation, Performance, Design, Economics, Reliability, Experimentation, Security, Human Factors, Standardization, Languages, Theory, Legal Aspects, Verification.
  • Keywords: This section is your choice of terms you would like to be indexed by.
These are created with the following LaTeX commands:
% A category with the three required fields
\category{H.4}{Information Systems Applications}{Miscellaneous}
% A category including the fourth, optional field follows...
\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]
\terms{Delphi theory}
\keywords{ACM proceedings, \LaTeX, text tagging}

MS Word template

Copyright text to appear on the first page

The templates above includes a text to appear on the bottom left of the front page of each paper. LaTeX papers need to include the following lines before the \begin{document} command:

\conferenceinfo{SenSys'07,} {November 6--9, 2007, Sydney, Australia.}
\CopyrightYear{2007}
\crdata{1-59593-763-6/07/0011}

SenSys 2007 templates - Poster and demo abstracts

Page limit: 2 pages. Page format: letter.

LaTeX templates (preferred)

Note that the ACM category, subject descriptions, general terms and keywords must be included in all papers. The following sections are mandatory:

  • Categories & Subject Descriptors (See the ACM Computing Classification Scheme: http://www.acm.org/class/1998/)
  • General Terms: This section is limited to the following 16 terms: Algorithms, Management, Measurement, Documentation, Performance, Design, Economics, Reliability, Experimentation, Security, Human Factors, Standardization, Languages, Theory, Legal Aspects, Verification.
  • Keywords: This section is your choice of terms you would like to be indexed by.
These are created with the following LaTeX commands:
% A category with the three required fields
\category{H.4}{Information Systems Applications}{Miscellaneous}
% A category including the fourth, optional field follows...
\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]
\terms{Delphi theory}
\keywords{ACM proceedings, \LaTeX, text tagging}

MS Word template

Copyright text to appear on the first page

The templates above includes a text to appear on the bottom left of the front page of each paper. LaTeX papers need to include the following lines before the \begin{document} command:

\permission{Copyright is held by the author/owner(s).}
\conferenceinfo{SenSys'07,} {November 6--9, 2007, Sydney, Australia.}
\CopyrightYear{2007}
\crdata{1-59593-763-6/07/0011}

FAQ

Q: Can I group multiple affiliations in a single \sharedaffiliation command?

A: The default templates do not define a \sharedaffiliation command. Instead, define it in your .tex file, before the \author{} block, like this:

\def\sharedaffiliation{%
\end{tabular}
\begin{tabular}{c}}

Use it like this:

\numberofauthors{3}
% Three authors sharing the same affiliation.
    \author{
      \alignauthor A Sensor\\      
      \email{sens@sics.se}
%
      \alignauthor B Embedded\\     
      \email{embed@sics.se}
%
      \alignauthor C System\\    
      \email{syst@sics.se}
%
      \sharedaffiliation
      \affaddr{Swedish Institute of Computer Science}  \\
      \affaddr{Box 1263, SE-164 29 Kista, Sweden}
    }

Adam Dunkels <adam@sics.se>