summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/pandora-latex/pandora.tex
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/pandora-latex/pandora.tex
Initial commit
Diffstat (limited to 'macros/latex/contrib/pandora-latex/pandora.tex')
-rw-r--r--macros/latex/contrib/pandora-latex/pandora.tex92
1 files changed, 92 insertions, 0 deletions
diff --git a/macros/latex/contrib/pandora-latex/pandora.tex b/macros/latex/contrib/pandora-latex/pandora.tex
new file mode 100644
index 0000000000..b02fc2e227
--- /dev/null
+++ b/macros/latex/contrib/pandora-latex/pandora.tex
@@ -0,0 +1,92 @@
+\documentclass{article}
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage{listings}
+\title{The \texttt{pandora} package\medskip\\
+ \large\LaTeX\ support for the pandora fonts}
+\author{version 1.0 \today}
+\lstset{language=[latex]tex,breaklines=true}
+\date{Palle J\o rgensen}
+
+\begin{document}
+\maketitle
+\section{Introduction}
+\label{sec:introduction}
+The \texttt{pandora} package provides support for the pandora fonts.
+The pandora fonts are already installed on many systems, this is only
+support for using the pandora fonts with \LaTeX.
+
+The license of the pandora pcakage and the related files is GNU General
+Public License.
+
+\section{Using the pandora package}
+\label{sec:using-pandora-fonts}
+
+If you want some text typeset with the pandora roman fonts for a short
+text you can use one of the commands
+
+\begin{lstlisting}
+ \textpnrm{...}, \textpnbf{...}, \textpnsl{...}
+\end{lstlisting}
+which typesets the text with Pandora Roman, Pandora Roman Bold and
+Pandora Roman Slanted respektively.
+
+If you want some text typeset with the pandora sans serif fonts for a
+short text you can use one of the commands
+
+\begin{lstlisting}
+ \textpnsf{...}, \textpnsbf{...}, \textpnssl{...}
+\end{lstlisting}
+which typesets the text with Pandora Sans Serif, Pandora Sans Bold and
+Pandora Sans Slanted respektively.
+
+Furthermore you can acces the pandora typewriter font with
+\begin{lstlisting}
+ \textpntt{...}
+\end{lstlisting}
+which typesets the text with Pandora Typewriter Type.
+
+If you want to typeset longer passages of text with the pandora fonts,
+you can use the environments
+
+\begin{lstlisting}
+ pnrmfamily, pnsffamily, pnttfamily
+\end{lstlisting}
+Inside \texttt{pnrmfamily} and \texttt{pnssfamily} the normal \LaTeX\
+font switches \verb+\slshape+ and \verb+\bfseries+ works. Furthermore
+\verb+\emph+ works too.
+
+\clearpage
+It is possible to use the commands
+\begin{lstlisting}
+ \pnrmfamily, \pnsffamily, \pnttfamily
+\end{lstlisting}
+but these commands also changes the current fontencoding; use with
+caution\dots
+\appendix
+
+\section{Source of the files in the pandora bundle}
+\label{sec:source}
+
+\subsection{pandora.sty}
+\label{sec:pandora.sty}
+\lstinputlisting{pandora.sty}
+
+\subsection{ot1pnr.fd}
+\label{sec:ot1pnr.fd}
+\lstinputlisting{ot1pnr.fd}
+
+\subsection{ot1pnss.fd}
+\label{sec:ot1pnss.fd}
+\lstinputlisting{ot1pnss.fd}
+
+\subsection{ot1pntt.fd}
+\label{sec:ot1pntt.fd}
+\lstinputlisting{ot1pntt.fd}
+
+\end{document}
+
+%%% Local Variables:
+%%% mode: latex
+%%% TeX-master: t
+%%% End: