I'm trying to chage the style of \part to prevent a new part to take all a page and align it on right, like the attached picture
Can someone help me please ?
Thanks very much in advance !!
I'm trying to chage the style of \part to prevent a new part to take all a page and align it on right, like the attached picture
Can someone help me please ?
Thanks very much in advance !!
I've finally made it with package titlesec and this post:Styling the \part page
Here is MWE:
\documentclass[]{report}
\usepackage{blindtext}
\usepackage{titlesec}
\titleclass{\part}{top} % make part like a chapter
\titleformat{\part}
[display]
{\raggedleft\normalfont\large\bfseries}
{\vspace{3pt}\MakeUppercase{\partname} \thepart}
{0pt}
{\vspace{1pc}\huge\MakeUppercase}
%
\titlespacing*{\part}{0pt}{0pt}{20pt}
%
\begin{document}
\part{Test part title}
\section{Test section azeazr}
\blindtext
\end{document}