[Tex/LaTex] IEEETran section heading all uppercase letters

ieee-styleieeetransectioning

How can I make the section heading look like this (centered, small caps and Roman numerals):

enter image description here

I am preparing a paper for IEEE Percom conference (http://www.percom.org/?q=home). I am using

\documentclass[conference, compsoc]{IEEEtran} 

and

\section{Introduction}. 

It produces:

  1. Introduction

Also, am I using the right document class for the IEEE conference?

Best Answer

To get centered/small-caps/Roman-numbered section headers, you need to fix one of the \documentclass options: The option needs to be given as comsoc, not compsoc. Aside: It's maybe a bit unfortunate/confusing that the "IEEE Communications Society" (aka comsoc) and the "IEEE Computer Society" (aka compsoc) have very similar abbreviated names. :-(

A small MWE (minimum working example):

\documentclass[comsoc,conference]{IEEEtran} 
\usepackage{lipsum} % filler text
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{newtxtext}
\usepackage[cmintegrals]{newtxmath}
\usepackage{bm} 
\begin{document}
\section{Introduction}
\lipsum[2] % filler text
\end{document}