summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/quotmark/doc/sample.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/quotmark/doc/sample.tex')
-rw-r--r--macros/latex/contrib/quotmark/doc/sample.tex33
1 files changed, 33 insertions, 0 deletions
diff --git a/macros/latex/contrib/quotmark/doc/sample.tex b/macros/latex/contrib/quotmark/doc/sample.tex
new file mode 100644
index 0000000000..d87f984e92
--- /dev/null
+++ b/macros/latex/contrib/quotmark/doc/sample.tex
@@ -0,0 +1,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}