summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/quotmark/doc
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/quotmark/doc
Initial commit
Diffstat (limited to 'macros/latex/contrib/quotmark/doc')
-rw-r--r--macros/latex/contrib/quotmark/doc/CHANGES3
-rw-r--r--macros/latex/contrib/quotmark/doc/quotmark.pdfbin0 -> 184032 bytes
-rw-r--r--macros/latex/contrib/quotmark/doc/sample.tex33
3 files changed, 36 insertions, 0 deletions
diff --git a/macros/latex/contrib/quotmark/doc/CHANGES b/macros/latex/contrib/quotmark/doc/CHANGES
new file mode 100644
index 0000000000..e9b22e7a06
--- /dev/null
+++ b/macros/latex/contrib/quotmark/doc/CHANGES
@@ -0,0 +1,3 @@
+Change log for quotmark.sty:
+
+v1.0: Initial release.
diff --git a/macros/latex/contrib/quotmark/doc/quotmark.pdf b/macros/latex/contrib/quotmark/doc/quotmark.pdf
new file mode 100644
index 0000000000..f90e1d1b87
--- /dev/null
+++ b/macros/latex/contrib/quotmark/doc/quotmark.pdf
Binary files differ
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}