From edc1bff0e29e15bb668515373517b5e9710cd142 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Wed, 24 Jan 2018 21:52:41 +0000 Subject: stealcaps (24jan18) git-svn-id: svn://tug.org/texlive/trunk@46434 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/stealcaps/README.md | 42 +++++++++++++++++++++ .../texmf-dist/doc/latex/stealcaps/stealcaps.pdf | Bin 0 -> 146839 bytes .../latex/stealcaps/testfile/EBGaramond.ttf.zip | Bin 0 -> 2853713 bytes .../doc/latex/stealcaps/testfile/brelaregular.otf | Bin 0 -> 15764 bytes .../stealcaps/testfile/stealcapitals-test.pdf | Bin 0 -> 15452 bytes .../stealcaps/testfile/stealcapitals-test.tex | 22 +++++++++++ 6 files changed, 64 insertions(+) create mode 100644 Master/texmf-dist/doc/latex/stealcaps/README.md create mode 100644 Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdf create mode 100644 Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip create mode 100644 Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otf create mode 100644 Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf create mode 100644 Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.tex (limited to 'Master/texmf-dist/doc/latex') diff --git a/Master/texmf-dist/doc/latex/stealcaps/README.md b/Master/texmf-dist/doc/latex/stealcaps/README.md new file mode 100644 index 00000000000..28c939d8d7c --- /dev/null +++ b/Master/texmf-dist/doc/latex/stealcaps/README.md @@ -0,0 +1,42 @@ +# The `stealcaps` package + +This package enables you to borrow small capitals +from another font than the main document font. +For that simply load the package and specify the replacement font +vie the key-value-option 'from', i.e. + + \usepackage[from=]{stealcaps}. + +In case you use pdfLaTeX the font name has to be NFSS compliant. +With XeLaTeX or LuaLaTeX, correpsondingly, +it has to be `fontspec` compliant. + +Package dependencies: `pgfopts`, `iftex`, `fontspec`. + +This is version 1.0 of the package. + +Copyright (C) 2018 by Ruben Giannotti + +--- + +This work may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either +version 1.3c of this license or (at your option) any +later version. The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.3 or later is part of all distributions +of LaTeX version 2005/12/01 or later. + +This work has the LPPL maintenance status `maintained'. + +The Current Maintainer of this work is Ruben Giannotti. + +This work consists of the files + stealcaps.dtx, + stealcaps.ins +and the derived file stealcaps.sty. + +To install the package + + 1. run `latex stealcaps.ins` + 2. move 'stealcaps.sty' to locations where LaTeX will find it diff --git a/Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdf b/Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdf new file mode 100644 index 00000000000..f4ebdd4cc3d Binary files /dev/null and b/Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdf differ diff --git a/Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip b/Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip new file mode 100644 index 00000000000..738fbdd2785 Binary files /dev/null and b/Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip differ diff --git a/Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otf b/Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otf new file mode 100644 index 00000000000..74457a50858 Binary files /dev/null and b/Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otf differ diff --git a/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf b/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf new file mode 100644 index 00000000000..7e9d85b23d8 Binary files /dev/null and b/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf differ diff --git a/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.tex b/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.tex new file mode 100644 index 00000000000..996106df7f1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.tex @@ -0,0 +1,22 @@ +% arara: xelatex +\documentclass{article} +\usepackage{lipsum} +\usepackage{iftex} +\ifPDFTeX + \usepackage[from=ppl]{stealcaps} +\else + \usepackage{fontspec} + \setmainfont{Brela} + \usepackage[from={EB Garamond}]{stealcaps} +\fi + +\providecommand*\pkg{\textsc} + +\title{Testing the \pkg{stealcaps} package} +\author{Ruben Giannotti} +\date{\today} + +\begin{document} +\maketitle +\lipsum +\end{document} -- cgit v1.2.3