I use mwrep class in my document and try to customize section titles with titlesec. It works OK for sections and subsections but it has no effect for chapters.
Here I read that "The mwrep class uses a non-standard manner to format their sectioning commands".
Would be still possible to use titlesec to style the chapter? Or should I forget about it and find another solution?
My MWE:
\documentclass[12pt,a4paper,polish]{mwrep}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{titlesec}
\titleformat{\chapter}[hang]
{\LARGE\scshape\bfseries}
{\thechapter}
{2pc}
{}
\titleformat{\section}[hang]
{\large\scshape\rmfamily}
{\thesection.}
{1em}
{\MakeLowercase}
\titleformat{\subsection}[hang]
{\normalsize\itshape\rmfamily}
{\thesubsection.}
{1em}
{}
\begin{document}
\chapter{Lorem}
\section{Ipsum}
\subsection*{Dolor}
\end{document}


mwrepclass, if it doesn't suit you. – egreg Jul 04 '15 at 18:09reportclass adjusted according to Polish typographic standards so it does suit me a lot! I just have this one problem. – petru Jul 04 '15 at 18:19titlesecis not compatible with the class. There is some documentation of the class in the filemwcls.dtxthat you should have in your system, but it is written in Polish. You perhaps can understand it and guess what to modify. – egreg Jul 04 '15 at 19:22