summaryrefslogtreecommitdiff
path: root/texmf-dist/doc/fonts
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2017-05-01 18:13:00 +0900
committerNorbert Preining <norbert@preining.info>2017-05-01 18:13:00 +0900
commitcecdeeb800ac1dfa76a7eca719a5225b74a24868 (patch)
tree1109560df80f177027faad100fd1c7714c46e507 /texmf-dist/doc/fonts
parente529718d869974ab7487bfc0822235ec4175acb6 (diff)
add gandhi
Diffstat (limited to 'texmf-dist/doc/fonts')
-rw-r--r--texmf-dist/doc/fonts/gandhi/License.pdfbin0 -> 16397 bytes
-rw-r--r--texmf-dist/doc/fonts/gandhi/README60
-rw-r--r--texmf-dist/doc/fonts/gandhi/gandhi-samples.pdfbin0 -> 62180 bytes
-rw-r--r--texmf-dist/doc/fonts/gandhi/gandhi-samples.tex74
4 files changed, 134 insertions, 0 deletions
diff --git a/texmf-dist/doc/fonts/gandhi/License.pdf b/texmf-dist/doc/fonts/gandhi/License.pdf
new file mode 100644
index 00000000..05a767b6
--- /dev/null
+++ b/texmf-dist/doc/fonts/gandhi/License.pdf
Binary files differ
diff --git a/texmf-dist/doc/fonts/gandhi/README b/texmf-dist/doc/fonts/gandhi/README
new file mode 100644
index 00000000..3729d9f8
--- /dev/null
+++ b/texmf-dist/doc/fonts/gandhi/README
@@ -0,0 +1,60 @@
+This is the README for gandhi, version 2017-02-26.
+
+This package provides support for use of the GandhiSerif and
+GandhiSans families of fonts with LaTeX.
+
+To install this package on a TDS-compliant
+TeX system download the file
+"tex-archive"/install/fonts/gandhi.tds.zip, where the
+preferred URL for "tex-archive" is http://mirror.ctan.org.
+Unzip the archive at the root of an appropriate texmf tree,
+likely a personal or local tree. If necessary, update
+the file-name database (e.g., texhash texmf). Update the
+font-map files by enabling the Map file gandhi.map.
+
+For most purposes, simply add
+
+\usepackage{gandhi}
+
+to the preamble of your document. This will activate
+GandhiSerif as the main (serifed) text font and GandhiSans
+as the sans font. It is recommended that the font encoding
+be set to T1 or LY1, but the default OT1 encoding is also
+supported. Available shapes in all series include italic and
+small caps. Slanted variants are not supported; the designed
+italic variants will be automatically substituted.
+
+To activate GandhiSerif without GandhiSans, use the
+rm option. Similarly, to activate GandhiSans without
+GandhiSerif, use the sf option. To use GandhiSans as the
+main text font (as well as the sans font), use the option
+sfdefault.
+
+The following options may be used to select number styles:
+
+lf lining
+p proportional
+t tabular
+osf oldstyle
+
+The default is oldstyle proportional. The sans font may
+be scaled by using the scale or scaled options. The type1
+option may be used if the type1 fonts are preferred or
+fontspec is to be avoided.
+
+The original opentype fonts were downloaded from
+
+http://www.tipografiagandhi.com/
+
+and are licensed under a liberal but not entirely free
+license. You may not modify the fonts in a font editor or
+sell or rent out the fonts. For details look into the doc
+directory.
+
+The type 1 fonts were created using cfftot1. The support
+files were created using autoinst. The support files are
+licensed under the terms of the LaTeX Project Public
+License.
+
+The maintainer of this package is Bob Tennent (rdt at
+cs.queensu.ca)
diff --git a/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf b/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf
new file mode 100644
index 00000000..3d715be3
--- /dev/null
+++ b/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf
Binary files differ
diff --git a/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex b/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex
new file mode 100644
index 00000000..1cecb987
--- /dev/null
+++ b/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex
@@ -0,0 +1,74 @@
+\documentclass{article}
+\usepackage[T1]{fontenc}
+\usepackage{gandhi}
+\usepackage{lipsum}
+\begin{document}
+
+\section{GandhiSerif}
+\subsection*{Regular}
+\lipsum[1]
+
+\subsection*{Italic}
+\textit{\lipsum[2]}
+
+
+\subsection*{Bold}
+\textbf{\lipsum[3]}
+
+\subsection*{Bold Italic}
+
+\textbf{\textit{\lipsum[4]}}
+
+
+\subsection*{Regular Small Caps}
+\textsc{\lipsum[1]}
+
+\subsection*{Italic Small Caps}
+\textsc{\textit{\lipsum[2]}}
+
+
+\subsection*{Bold Small Caps}
+\textsc{\textbf{\lipsum[3]}}
+
+\subsection*{Bold Italic Small Caps}
+
+\textsc{\textbf{\textit{\lipsum[4]}}}
+
+\subsection*{Numbers}
+
+0123456789
+
+\section{GandhiSans}\sf
+
+\subsection*{Regular}
+\lipsum[1]
+
+\subsection*{Italic}
+\textit{\lipsum[2]}
+
+\subsection*{Bold}
+\textbf{\lipsum[3]}
+
+\subsection*{Bold Italic}
+
+\textbf{\textit{\lipsum[4]}}
+
+\subsection*{Regular Small Caps}
+\textsc{\lipsum[1]}
+
+\subsection*{Italic Small Caps}
+\textsc{\textit{\lipsum[2]}}
+
+
+\subsection*{Bold Small Caps}
+\textsc{\textbf{\lipsum[3]}}
+
+\subsection*{Bold Italic Small Caps}
+
+\textsc{\textbf{\textit{\lipsum[4]}}}
+
+\subsection*{Numbers}
+
+0123456789
+
+\end{document}