I suggest that you redefine the chapter headings using the titlesec
package. It is very advanced, but it is easy to make your requested changes.
Alternatively, you can use the less advance secsty package, but maybe you will not achieve your goal.
Another possibility is to replace your report-class with scrreprt from the KOMA-script-bundle. KOMAscript is a drop-in replacement for the standard class, but with the possibility to change headings etc. easily.
And finally, you can redefine the report class definition. At Vincent Zoonekynd homepage, you will find necessary code, for titles, for chapters and for sections.
Here is a modification of Zoonekynd's code that (hopefully) remove the word Chapter, put the number and the heading at the same line with a quad space in between, and then centre the heading. You have to modify the font size and space above and below yourself.
\documentclass{report}
\makeatletter
\def\@makechapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@ \centering \reset@font
\par\nobreak
\vspace*{2\p@}%
{\Huge \bfseries \thechapter\quad #1\par\nobreak}
\par\nobreak
\vspace*{2\p@}%
%\vskip 40\p@
\vskip 100\p@
}}
\def\@makeschapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@ \centering \reset@font
\par\nobreak
\vspace*{2\p@}%
{\Huge \bfseries #1\par\nobreak}
\par\nobreak
\vspace*{2\p@}%
\vskip 100\p@
}}
\makeatother
\begin{document}
\chapter{Introduction}
Test test
\end{document}
memoirdefinitely beatsreporton customization, as long as you have time to read through its documentation. – Mike Renfro May 8 '12 at 14:04