General ⇒ How to get nice quotation layout in book class
How to get nice quotation layout in book class
Any ideas how to get something like an inscription?
Thx
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
How to get nice quotation layout in book class
B.A.
Re: How to get nice quotation layout in book class
I thought of something more outstanding like /quotation. Like centering not only horizontally but also vertically. Or does /quotation comes with additionally attributes?
How to get nice quotation layout in book class
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}