Graphics, Figures & Tables ⇒ graphic in chapter title
Re: graphic in chapter title
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
graphic in chapter title
The following schematic code illustrates this:
Code: Select all
\documentclass{memoir}
\usepackage{titlesec}
\begin{document}
\chapter{Chapter with standard heading}
(chapter contents...)
{% by grouping you can keep the heading change local
\titleformat{\chapter}[hang]
{}{\fontsize{62pt}{132pt}\selectfont\thechapter}
{20pt}{}
\titlespacing*{\chapter}
{0pt}{20pt}{0pt}
\chapter{A chapter with modified heading}
(chapter contents...)
\chapter{Another chapter with modified heading}
(chapter contents...)
}
\chapter{Another chapter with standard heading}
(chapter contents...)
\end{document}