blob: d87f984e92646d98ec7a4ecb21b14da19355cd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
\documentclass{article}
\usepackage{quotmark}
\begin{document}
First quote uses an environment:
\begin{qt}This is a quote.\end{qt} This isn't a quote.
The next quote uses a text-block command:
\tqt{This is a quote.} This isn't a quote.
Now for some nested quotes:
\tqt{Did she say \tqt{I am here}?} he asked.
\tqt{She said \tqt{where am I?}\,} he replied.
\tqt{He said to me \tqt{I am Harry \tqt{Mad} Hatter},} I said.
Paragraphs within the quotes are dealt with automatically:
\begin{qt}Dear Sir/Madam,
I am writing to inform you that I would like you to quote this
letter in your so-called \tqt{funny} article, which I don't find
the least bit amusing.
Yours etc\end{qt}
Back to unquoted text.
\end{document}
|