I'm trying to change the format of a single section in my document.
The section is the introduction of my document, and therefore, I don't want it to be numbered.
I tried to define a new command
\newcommand{\ssection}[1]{%
\section[#1]{\centering\normalfont\scshape #1}}
it works, however, I can't suppress the numbering.


\section*? – barbara beeton Jun 2 '12 at 14:35\section*with\addcontentslineshould be all you need. – egreg Jun 5 '12 at 9:12