Could anyone give a possible way to achieve this?
- Chapter number, followed by chapter title
- Quotations below the chapter title
- Drop cap on the first letter of the paragraph
I'm using standard \documentclass{book}.
Any help will be appreciated.
Could anyone give a possible way to achieve this?
I'm using standard \documentclass{book}.
Any help will be appreciated.
You ask too many questions in one submission. In answer to your quotations question:
%\documentclass...
\usepackage{epigraph}
% ...
\begin{document}
\chapter{A chapter}
\epigraph{The will ...}{Martin Luther}
% ...
\end{document}
lettrinepackage. For the quotation, see theepigraphpackage. Last, the chapter heading can be done throughtitlesec. – Bernard Oct 05 '19 at 13:28How to make it appeared like "Chapter 5 | Satan's Strategy" instead of "5 | Satan's Strategy"?
– Imanoff Oct 05 '19 at 17:27