summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/stealcaps
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-01-24 21:52:41 +0000
committerKarl Berry <karl@freefriends.org>2018-01-24 21:52:41 +0000
commitedc1bff0e29e15bb668515373517b5e9710cd142 (patch)
tree9545b44dbd026193dedb84fdcd6993c26903a13d /Master/texmf-dist/doc/latex/stealcaps
parent162519496ac907f55274039075bcb7dc7f75cc8b (diff)
stealcaps (24jan18)
git-svn-id: svn://tug.org/texlive/trunk@46434 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/stealcaps')
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/README.md42
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdfbin0 -> 146839 bytes
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zipbin0 -> 2853713 bytes
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otfbin0 -> 15764 bytes
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdfbin0 -> 15452 bytes
-rw-r--r--Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.tex22
6 files changed, 64 insertions, 0 deletions
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=<font name>]{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
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/stealcaps/stealcaps.pdf
Binary files 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
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip
Binary files 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
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/stealcaps/testfile/brelaregular.otf
Binary files 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
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf
Binary files 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}