I want to put chapter number and chapter title in one line and i found this code that works well: (Chapter number and chapter title in one line)
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[hang]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter:}{1em}{}
\begin{document}
\chapter{A chapter}
\section{A section}
\end{document}
However it uses the titlesec package that is incompatible with memoir class that use in my book. It is possible to achieve the same result in another not-titlesec depended way?
