diff options
author | Norbert Preining <preining@logic.at> | 2007-11-23 21:07:33 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-11-23 21:07:33 +0000 |
commit | 8f6167f42702168bb34922019a441a8c73974f61 (patch) | |
tree | d69ed707dbd3a8c1295f77a0c68b2e64a9d015c4 /Master/texmf-dist/doc/latex | |
parent | 5653ce628aa53a3e9e43cc96795c69275605411e (diff) |
duerer-latex new package
git-svn-id: svn://tug.org/texlive/trunk@5582 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r-- | Master/texmf-dist/doc/latex/duerer-latex/README | 26 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/duerer-latex/duerer.pdf | bin | 0 -> 157504 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/duerer-latex/duerer.tex | 89 |
3 files changed, 115 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/duerer-latex/README b/Master/texmf-dist/doc/latex/duerer-latex/README new file mode 100644 index 00000000000..2282c9d6958 --- /dev/null +++ b/Master/texmf-dist/doc/latex/duerer-latex/README @@ -0,0 +1,26 @@ +This is a small package that provides some (poor) LaTeX support for +the duerer fonts. The duerer fonts are part of many tex installations, +and is found on the TeX Live distribution. + +*Installation* + +Unpack the archive, and move the files into their proper directories + +The files + +duerer.sty +ot1cdin.fd +ot1cdr.fd +ot1cdss.fd +ot1cdtt.fd + +should be placed in +TEXMF/tex/latex/duerer + +duerer.pdf + +should be placed in +TEXMF/doc/latex/duerer + +duerer.tex is the source of duerer.pdf and no installation of it is +required. It can be deleted at will... diff --git a/Master/texmf-dist/doc/latex/duerer-latex/duerer.pdf b/Master/texmf-dist/doc/latex/duerer-latex/duerer.pdf Binary files differnew file mode 100644 index 00000000000..e3fb8446ee9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/duerer-latex/duerer.pdf diff --git a/Master/texmf-dist/doc/latex/duerer-latex/duerer.tex b/Master/texmf-dist/doc/latex/duerer-latex/duerer.tex new file mode 100644 index 00000000000..f5f84228cd7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/duerer-latex/duerer.tex @@ -0,0 +1,89 @@ +\documentclass{article} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{duerer,listings,multicol} +\title{The \texttt{duerer} package\medskip\\ + \large\LaTeX\ support for the duerer fonts} +\author{version 1.1 \today} +\lstset{language=[latex]tex,breaklines=true} +\date{Palle J\o rgensen} + +\begin{document} +\maketitle + +\section{Introduction} +\label{sec:introduction} + +The \texttt{duerer} package provides support for the duerer (Dürer) +fonts. The duerer fonts are already installed on many systems, this is +only support for using the duerer fonts with \LaTeX. + +Please note that the duerer fonts only provides uppercase characters. + +The license of the duerer pcakage and the related files is GNU General +Public License. + +\section{Using the duerer package} +\label{sec:using-duerer-fonts} + +If you want some text typeset with the duerer fonts for a short text +you can use one of the commands + +\begin{lstlisting} + \textdurm{...}, \textdubf{...}, \textdusl{...} +\end{lstlisting} +which typesets the text with Dürer Roman, Dürer Roman Bold and Dürer +Roman Slanted respektively. + +Furthermore there are three other duerer font families available +\begin{lstlisting} + \textdutt{...}, \textdusf{...}, \textduin{...} +\end{lstlisting} +which typesets the text with Dürer Typewriter Type, Dürer Sans Serif, +Dürer Informal respectively. + +If you want to typeset longer passages of text with the duerer fonts, +you can use the environments + +\begin{lstlisting} + durmfamily, dusffamily, duttfamily, duinfamily +\end{lstlisting} +Inside durmfamily the normal \LaTeX\ font switches \verb+\slshape+ and +\verb+\bfseries+ works. Furthermore \verb+\emph+ works too. + +It is possible to use the commands +\begin{lstlisting} + \durmfamily, \dusffamily, \duttfamily, \duinfamily +\end{lstlisting} +but these commands also changes the current fontencoding; use with +caution\dots \clearpage +\appendix + +\section{Source of the files in the duerer bundle} +\label{sec:source} + +\subsection{duerer.sty} +\label{sec:duerer.sty} +\lstinputlisting{duerer.sty} + +\subsection{ot1cdr.fd} +\label{sec:ot1cdr.fd} +\lstinputlisting{ot1cdr.fd} + +\subsection{ot1cdss.fd} +\label{sec:ot1cdss.fd} +\lstinputlisting{ot1cdss.fd} + +\subsection{ot1cdtt.fd} +\label{sec:ot1cdtt.fd} +\lstinputlisting{ot1cdtt.fd} + +\subsection{ot1cdin.fd} +\label{sec:ot1cdin.fd} +\lstinputlisting{ot1cdin.fd} +\end{document} + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% End: |