diff options
author | Karl Berry <karl@freefriends.org> | 2017-02-27 22:36:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-02-27 22:36:24 +0000 |
commit | 4cb4a7ab4b3ee2eaa4ca41f3f510c8a2d5be016a (patch) | |
tree | b96b03a47556cddb785a7e221df39f066dbf5f3b /Master/texmf-dist/doc/fonts | |
parent | 18feaec48bcb97ad02e19b9939b3975ad48ffdea (diff) |
gandhi (27feb17)
git-svn-id: svn://tug.org/texlive/trunk@43348 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts')
-rw-r--r-- | Master/texmf-dist/doc/fonts/gandhi/License.pdf | bin | 0 -> 16397 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/gandhi/README | 60 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf | bin | 0 -> 62180 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex | 74 |
4 files changed, 134 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/gandhi/License.pdf b/Master/texmf-dist/doc/fonts/gandhi/License.pdf Binary files differnew file mode 100644 index 00000000000..05a767b64d7 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/gandhi/License.pdf diff --git a/Master/texmf-dist/doc/fonts/gandhi/README b/Master/texmf-dist/doc/fonts/gandhi/README new file mode 100644 index 00000000000..3729d9f8c14 --- /dev/null +++ b/Master/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/Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf b/Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf Binary files differnew file mode 100644 index 00000000000..3d715be3a7d --- /dev/null +++ b/Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.pdf diff --git a/Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex b/Master/texmf-dist/doc/fonts/gandhi/gandhi-samples.tex new file mode 100644 index 00000000000..1cecb987d45 --- /dev/null +++ b/Master/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} |