[Tex/LaTex] Chapter number and chapter title in one line

chapterssectioning

This is what I want:

Chapter 1 : Introduction

but I always get:

Chapter 1

Introduction

How do I do this?

Best Answer

If you use a KOMA-class you will not need the package titlesec:

\documentclass[chapterprefix=false]{scrreprt}
\makeatletter
\renewcommand*{\chapterformat}{%
  \mbox{\chapapp~\thechapter\autodot:\enskip}%
}
\makeatother
\begin{document}
\chapter{A chapter}
\section{A section}
\end{document}
Related Question