I need to increase the size of chapter numbers without altering the size of the title. Also, I'd like doing away with the label "chapter" preceding numbers.
Minimal example:
Code: Select all
\documentclass[10pt,a5paper,openany]{book}
\usepackage[top=1.5cm,headsep=4pt,outer=2cm,inner=1cm,nofoot,bottom=1.5cm]{geometry}
\usepackage{blindtext}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancypagestyle{plain}{%
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\renewcommand{\chaptermark}[1]{%
\markboth{\MakeUppercase{%
\thechapter.%
\ #1}}{}}
\fancyhead[RO]{\rightmark}
\fancyhead[LE]{\leftmark}
\fancyhead[RE]{\thepage}
\fancyhead[LO]{\thepage}
\usepackage[center,uppercase,tiny]{titlesec}
\titlespacing{\chapter}{0pt}{*0}{*1.5}
\begin{document}
\chapter{Introduction}
\blindtext
\chapter{Conclusion}
\blindtext
\end{document}