GeneralHow to get nice quotation layout in book class

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
chr4004
Posts: 4
Joined: Sun Sep 21, 2008 6:16 pm

How to get nice quotation layout in book class

Post by chr4004 »

I know about \quote and \quotation. What I want though is something nice before the actual introduction, not sure yet if even before the toc. I'm using a modified book class called wissdoc.cls.

Any ideas how to get something like an inscription?
Thx

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

balf
Posts: 158
Joined: Sat Jan 12, 2008 1:11 am

How to get nice quotation layout in book class

Post by balf »

I'm not sure of what you want exactly – but the epigraph package might do what you want.hh

B.A.
chr4004
Posts: 4
Joined: Sun Sep 21, 2008 6:16 pm

Re: How to get nice quotation layout in book class

Post by chr4004 »

Thanks, will look into this.
I thought of something more outstanding like /quotation. Like centering not only horizontally but also vertically. Or does /quotation comes with additionally attributes?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

How to get nice quotation layout in book class

Post by gmedina »

Hi,

you can create your own quotation environment; in the example below I designed a simple myquote environment:

Code: Select all

\documentclass{report}
\usepackage{lipsum}%just to generate some text

\newenvironment{myquote}
  {\thispagestyle{empty}\vspace*{\fill}
   \begin{quotation}\noindent\hrulefill\par}
  {\par\noindent\hrulefill\end{quotation}\vspace*{\fill}\newpage}

\begin{document}

\begin{myquote}
  \lipsum[1]
\end{myquote}

\lipsum[1-8]
\end{document} 
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply