Hi,
the following code could be used as a starting point. Using the titlesec package, I defined the
\chapquot command with two mandatory arguments; its syntax is
Code: Select all
\chapquot{<chapter name>}{<quotation text>}
.
Usage: for a chapter with quotation, use the
\chapterquot command right before the corresponding
\chapter command and group these two commands (using braces, for example).
The example:
Code: Select all
\documentclass[twocolumn,a4paper,10pt]{book}
\usepackage[explicit]{titlesec}
\usepackage{lipsum}% just to generate some text
\newcommand\chapquote[2]{%
\titleformat{\chapter}[display]
{\normalfont\Huge\bfseries\filcenter}{\chaptertitlename\ \thechapter\vskip10pt#1}{0pt}
{\normalsize\parbox[t]{10cm}{\normalfont\itshape#2}}}
\titleformat{\chapter}[display]
{\normalfont\Huge\bfseries\filcenter}{\chaptertitlename\ \thechapter\vskip10pt#1}{0pt}
{\Huge}
\begin{document}
% a chapter with quotation
{\chapquote{Test chapter one}{\lipsum[1]}
\chapter{Test chapter one}}
\lipsum[1-2]
% a chapter without quotation
\chapter{Test chapter two}
\lipsum[1-3]
\end{document}
Of course, feel free to modify my example according to your needs. In particular, the modifications thst you made using
sectsty should be made now inside the
\titleformat command, without using commands from
sectsty.
1,1,2,3,5,8,13,21,34,55,89,144,233,...