summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/lualatex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-02-09 00:21:15 +0000
committerKarl Berry <karl@freefriends.org>2018-02-09 00:21:15 +0000
commit203d6f91268ed5afcbded04f7210fc164d9cdfa6 (patch)
treee54f8e9f1e20764a3cd037abeb5cf9a184924c8a /Master/texmf-dist/doc/lualatex
parent51c6c8daf762add842306ed585e3a83e865ce5b9 (diff)
typewriter (8feb18)
git-svn-id: svn://tug.org/texlive/trunk@46574 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/lualatex')
-rw-r--r--Master/texmf-dist/doc/lualatex/typewriter/README.md10
-rw-r--r--Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdfbin0 -> 65084 bytes
-rw-r--r--Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.tex101
3 files changed, 111 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/lualatex/typewriter/README.md b/Master/texmf-dist/doc/lualatex/typewriter/README.md
new file mode 100644
index 00000000000..a2e1fc38812
--- /dev/null
+++ b/Master/texmf-dist/doc/lualatex/typewriter/README.md
@@ -0,0 +1,10 @@
+The typewriter package for LaTeX
+
+Typeset with a randomly variable monospace font.
+
+Requires LuaLaTeX and the Computer Modern Unicode OpenType fonts.
+
+David Carlisle
+
+Licence: LPPL
+https://www.latex-project.org/lppl/ \ No newline at end of file
diff --git a/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdf b/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdf
new file mode 100644
index 00000000000..8209cedcdf4
--- /dev/null
+++ b/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.tex b/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.tex
new file mode 100644
index 00000000000..36080fe1d24
--- /dev/null
+++ b/Master/texmf-dist/doc/lualatex/typewriter/typewriter-guide.tex
@@ -0,0 +1,101 @@
+\documentclass{article}
+\usepackage{amsmath}
+\usepackage{typewriter}
+
+\begin{document}
+\title{The Typewriter Package for LaTeX}
+\author{David Carlisle \thanks{https://github.com/davidcarlisle/dpctex/}}
+\date{2018-02-07}
+
+\maketitle
+
+\section{Introduction}
+The typewriter Package uses the OpenType Computer Modern Unicode
+Typewriter font, together with a LuaTeX virtual font setup that
+introduces random variability in grey level and angle of each
+character. It was originally an answer to a question on stackexchange,
+http://tex.stackexchange.com/questions/344214/use-latex-to-simulate-old-typewriter-written-texts
+
+
+\hrule
+
+Currently there are no options to the package, it just does what it does,
+Possibly later versions might document how to modify the amount of random distortion that is applied.
+
+
+There is random variability in each letter as you can see by repeating
+a letter repeatededly:
+
+OOOOOOOOOOOOONNNNNNNNNNNNNNEEEEEEEEEE
+
+TTTTTTTTTTTTooooooooooooooooowwwwwwwwwwwwwwwwwwww
+
+
+
+
+
+\subsection{Text}
+
+one two three
+
+\textbf{one two three}
+
+[some greek text θ]
+
+a rule: \rule{3cm}{1pt}
+
+\subsection{Math}
+
+$\alpha^2=0$ and bold {\boldmath $\alpha^2=0$}
+
+
+
+more math $x^2-\cos θ$
+
+
+display math:
+\[\left(\frac{x^2}{\sqrt{1+y}}\right)\]
+and
+\[\int_{x=0}^n f(x) dx = \sum_0^m q(y)\]
+
+and alignments:
+\begin{align}
+A &\rightarrow B\\
+\mupGamma &\Rightarrow C
+\end{align}
+
+
+\subsection{Lists}
+
+\begin{enumerate}
+\item red yellow blue green
+\item black blue purple
+\end{enumerate}
+
+\begin{itemize}
+\item this
+\item that
+\item and the other
+\end{itemize}
+
+
+\subsection{Tables}
+
+
+
+\begin{center}
+
+\begin{tabular}{|l|l|l|}
+\cline{1-3}
+one & two & three\\
+$\alpha$ & $\beta$ & $\gamma$\\
+\cline{1-3}
+\end{tabular}
+
+\end{center}
+
+\subsection{Colophon}
+\raggedleft
+typeset by egreg design services
+
+\end{document}