diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/slantsc | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/slantsc')
-rw-r--r-- | Master/texmf-dist/doc/latex/slantsc/README | 47 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/slantsc/getversion.tex | 7 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/slantsc/testslantsc.tex | 31 |
3 files changed, 85 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/slantsc/README b/Master/texmf-dist/doc/latex/slantsc/README new file mode 100644 index 00000000000..e50aa0a8960 --- /dev/null +++ b/Master/texmf-dist/doc/latex/slantsc/README @@ -0,0 +1,47 @@ +slantsc.sty +=========== + +This package enables the use of small capitals in different font +shapes, e.g., slanted or bold slanted for all fonts that provide +appropriate font shapes. +The only prerequisite is that the corresponding |fd| file has to +define the font shapes |scsl| resp.\ |scit| for slanted resp.\ +italic small capitals. + + +Copyright 2003 Harald Harders + +This program can be redistributed and/or modified under the terms +of the LaTeX Project Public License Distributed from CTAN +archives in directory macros/latex/base/lppl.txt; either +version 1 of the License, or any later version. + + + +Installation: + +automatic: - run make + - run make install + or + - run make + - copy slantsc.sty to a place where LaTeX can find it + - run texhash or the corresponding command of your distribution + +by hand: - execute latex on slantsc.ins + - execute latex on slantsc.dtx (2x) + - copy slantsc.sty to a place LaTeX can find it + - run texhash or the corresponding command of your distribution + + + +Change log: +- 2.00 2003/09/17 The booleans caused problems when using \fontshape + explicitely, which, for instance, is performed by + \normalfont. Thus, the new version does not use them + at all and now works with \fontshape. +- 1.00 2003/09/10 Entirely new package + + +2003-09-17 +Harald Harders +h.harders@tu-bs.de diff --git a/Master/texmf-dist/doc/latex/slantsc/getversion.tex b/Master/texmf-dist/doc/latex/slantsc/getversion.tex new file mode 100644 index 00000000000..323e2779cba --- /dev/null +++ b/Master/texmf-dist/doc/latex/slantsc/getversion.tex @@ -0,0 +1,7 @@ +\documentclass[english]{ltxdoc} +\nofiles +\usepackage{slantsc} +\GetFileInfo{slantsc.sty} +\typeout{VERSION \fileversion} +\begin{document} +\end{document} diff --git a/Master/texmf-dist/doc/latex/slantsc/testslantsc.tex b/Master/texmf-dist/doc/latex/slantsc/testslantsc.tex new file mode 100644 index 00000000000..f6004d2236c --- /dev/null +++ b/Master/texmf-dist/doc/latex/slantsc/testslantsc.tex @@ -0,0 +1,31 @@ +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage{slantsc} +\usepackage{amsmath} +\parindent0mm +\def\ar#1{$\stackrel{\text{\normalfont #1}}{\Longrightarrow}$} +\def\test#1{% + {\normalfont#1:}\\ + \begingroup + \csname #1\endcsname% + {This Is Arbitrary Text \upshape\ar{upshape} This Is Arbitrary Text} \\ + {This Is Arbitrary Text \itshape\ar{itshape} This Is Arbitrary Text} \\ + {This Is Arbitrary Text \slshape\ar{slshape} This Is Arbitrary Text} \\ + {This Is Arbitrary Text \scshape\ar{scshape} This Is Arbitrary Text} \\ + {This Is Arbitrary Text \noscshape\ar{noscshape} This Is Arbitrary Text}% + \par\bigskip + \endgroup +} +\begin{document} + +non-small-caps shapes:\\ +\test{upshape} +\test{itshape} +\test{slshape} + +small-caps shapes:\\ +\scshape +\test{upshape} +\test{itshape} +\test{slshape} +\end{document} |