I am using Kile in Linux with a PDFLaTeX compiler to make a report. I use an altered version of the documentclass "book". The alterations are not causing any problems and are not the reason for this post.
I was wondering if it is possible to interchange the chapter label and text within the book enviroment using the titlesec package.
Code: Select all
\documentclass{book}
\usepackage[noindentafter]{titlesec}
\def\titlefont{\rmfamily}
\def\titleshape{\scshape}
\def\titlestyle{\titlefont\titleshape\bfseries}
\definecolor{cyan}{cmyk}{1,0,0,0}
\colorlet{title}{cyan}
\titleformat{\chapter}
{\flushright\titlestyle}
{\fontsize{96pt}{96pt}\selectfont\bfseries\thechapter}
{0pt}
{\Huge\color{title}}
\begin{document}
\chapter{Introduction}
\end{document}
Thanks in advance for the help!