diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-05 22:27:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-05 22:27:18 +0000 |
commit | 9a0afbd2401137d391ff1a4688db2c174587cdbb (patch) | |
tree | 6b20c65dc13c55f5abc2499a4a13080ddc943510 /Master/texmf-dist/doc/fonts | |
parent | e1edadb492845c4b7206da9fb634dc4013826a45 (diff) |
atkinson (5feb21)
git-svn-id: svn://tug.org/texlive/trunk@57624 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts')
-rw-r--r-- | Master/texmf-dist/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf | bin | 0 -> 56016 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf | bin | 0 -> 670623 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/atkinson/README | 57 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.pdf | bin | 0 -> 20149 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.tex | 33 |
5 files changed, 90 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf b/Master/texmf-dist/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf Binary files differnew file mode 100644 index 00000000000..afe27dc7c03 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf diff --git a/Master/texmf-dist/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf b/Master/texmf-dist/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf Binary files differnew file mode 100644 index 00000000000..e59ae366fb1 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf diff --git a/Master/texmf-dist/doc/fonts/atkinson/README b/Master/texmf-dist/doc/fonts/atkinson/README new file mode 100644 index 00000000000..82a191492c6 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/atkinson/README @@ -0,0 +1,57 @@ +This is the README for the atkinson package, version +2021-02-05. + +This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +support for the Atkinson Hyperlegible family of fonts, +named after Braille Institute founder, J. Robert Atkinson. +What makes it different from traditional typography design +is that it focuses on letterform distinction to increase +character recognition, ultimately improving readability. + +To install this package on a TDS-compliant +TeX system download the file +"tex-archive"/install/fonts/atkinson.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). Update the font-map +files by enabling the Map file atkinson.map. + +To use, add + +\usepackage{atkinson} + +to the preamble of your document. This makes Atkinson Hyperlegible the +default sans family. To also set Atkinson Hyperlegible as the main text +font, use + +\usepackage[sfdefault]{atkinson} + +LuaLaTeX and xeLaTeX users who might prefer type1 fonts or +who wish to avoid fontspec may use the type1 option. + +Options scaled=<number> or scale=<number> may be used to +adjust the sans fontsizes to match a serifed font. + +The default figure style is proportional-lining but the +following option may be used to get tabular figures: + +tabular (or t) + +The following allow for localized use of non-default figure +styles: + +\atkinsonLF{...} (proportional lining) +\atkinsonTLF{...} (tabular lining) + +Font encodings supported are OT1, T1, TS1, and LY1. + +The original opentype fonts are available at +https://brailleinstitute.org/freefont and are licensed under +the Atkinson Hyperlegible Font License; the text may be +found in the doc directory. The type1 versions were created +using cfftot1 and named in accordance with the Reserved +Typeface Name condition. The support files were created +using autoinst and 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/atkinson/atkinson-samples.pdf b/Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.pdf Binary files differnew file mode 100644 index 00000000000..c49d2aa8d48 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.pdf diff --git a/Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.tex b/Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.tex new file mode 100644 index 00000000000..ff4f60b9321 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/atkinson/atkinson-samples.tex @@ -0,0 +1,33 @@ +\documentclass{article} +\usepackage[T1]{fontenc} +\usepackage[sfdefault]{atkinson} +\usepackage{lipsum} +\begin{document} + +\begin{center}\huge\bf Atkinson Hyperlegible +\end{center} + + +\section*{Regular} +\lipsum[1] + +\section*{Italic} +\textit{\lipsum[2]} + +\section*{Bold} + +\textbf{\lipsum[3]} + +\section*{Bold Italic} + +\textbf{\textit{\lipsum[4]}} + +\section*{Default Numbers} + +1234567890 + +\section*{Tabular Numbers} + +\atkinsonTLF{1234567890} + +\end{document} |