summaryrefslogtreecommitdiff
path: root/fonts/softmakerfreefont/softmakerfreefont
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /fonts/softmakerfreefont/softmakerfreefont
Initial commit
Diffstat (limited to 'fonts/softmakerfreefont/softmakerfreefont')
-rw-r--r--fonts/softmakerfreefont/softmakerfreefont/README8
-rw-r--r--fonts/softmakerfreefont/softmakerfreefont/doc/CHANGES5
-rw-r--r--fonts/softmakerfreefont/softmakerfreefont/doc/INSTALL17
-rw-r--r--fonts/softmakerfreefont/softmakerfreefont/doc/manifest.txt13
-rw-r--r--fonts/softmakerfreefont/softmakerfreefont/latex/softmakerfreefont.sty41
5 files changed, 84 insertions, 0 deletions
diff --git a/fonts/softmakerfreefont/softmakerfreefont/README b/fonts/softmakerfreefont/softmakerfreefont/README
new file mode 100644
index 0000000000..2013634828
--- /dev/null
+++ b/fonts/softmakerfreefont/softmakerfreefont/README
@@ -0,0 +1,8 @@
+This package defines commands needed by some
+of the softmakerfreefont packages
+
+License: LPPL
+
+Changes in v1.1:
+
+- added support for demibold and outlined fonts \ No newline at end of file
diff --git a/fonts/softmakerfreefont/softmakerfreefont/doc/CHANGES b/fonts/softmakerfreefont/softmakerfreefont/doc/CHANGES
new file mode 100644
index 0000000000..34b8169a94
--- /dev/null
+++ b/fonts/softmakerfreefont/softmakerfreefont/doc/CHANGES
@@ -0,0 +1,5 @@
+=== softmakerfreefont.sty ===
+
+2010/08/31 added support for demibold and outlined fonts
+
+2010/08/16 commands needed by some of the softmakerfreefont packages \ No newline at end of file
diff --git a/fonts/softmakerfreefont/softmakerfreefont/doc/INSTALL b/fonts/softmakerfreefont/softmakerfreefont/doc/INSTALL
new file mode 100644
index 0000000000..9bca408f50
--- /dev/null
+++ b/fonts/softmakerfreefont/softmakerfreefont/doc/INSTALL
@@ -0,0 +1,17 @@
+ softmakerfreefont.sty -- INSTALL
+====================================
+
+You should consider a installation of softmakerfreefont.tds.zip.
+For manual installation follow the instuctions below.
+
+All the files (not the documentation) have to be installed where
+TeX can find them. Please refer to your TeX distribution's manual
+for how to install additional packages.
+
+According to the TeX Directory Standard (TDS), the files should be
+installed in your local texmf/ tree as follows:
+
+-- *.sty -> localtexmf/tex/latex/softmakerfreefont/softmakerfreefont/
+-- *.* -> localtexmf/doc/fonts/softmakerfreefont/softmakerfreefont/
+
+Don't forget to update your FNDB (Filename database). \ No newline at end of file
diff --git a/fonts/softmakerfreefont/softmakerfreefont/doc/manifest.txt b/fonts/softmakerfreefont/softmakerfreefont/doc/manifest.txt
new file mode 100644
index 0000000000..91d348416b
--- /dev/null
+++ b/fonts/softmakerfreefont/softmakerfreefont/doc/manifest.txt
@@ -0,0 +1,13 @@
+This work consists of the following files:
+
+-- Styles --
+
+softmakerfreefont.sty
+
+
+-- Misc. Files --
+
+README
+manifest.txt
+INSTALL
+CHANGES \ No newline at end of file
diff --git a/fonts/softmakerfreefont/softmakerfreefont/latex/softmakerfreefont.sty b/fonts/softmakerfreefont/softmakerfreefont/latex/softmakerfreefont.sty
new file mode 100644
index 0000000000..269c6b0f72
--- /dev/null
+++ b/fonts/softmakerfreefont/softmakerfreefont/latex/softmakerfreefont.sty
@@ -0,0 +1,41 @@
+%%
+%% Copyright (C) 2010 by:
+%% Josef Kleber
+%% <josef.kleber@gmx.de>
+%%
+%% This file may be distributed and/or modified under the conditions of
+%% the LaTeX Project Public License, either version 1.3 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
+%% 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Josef Kleber.
+%%
+%% This work consists of all files listed in manifest.txt.
+%%
+%
+\ProvidesPackage{softmakerfreefont}[2010/08/31 softmakerfreefont.sty v1.1 - Josef Kleber (C) 2010]%
+%
+% definitions of \lseries and \textl (light)
+%
+\newcommand\ldefault{l}%
+\DeclareRobustCommand\lseries{\not@math@alphabet\lseries\mathl\fontseries\ldefault\selectfont}%
+\DeclareTextFontCommand{\textl}{\lseries}%
+%
+% definitions of \olseries and \textol (outline)
+%
+\newcommand\oldefault{ol}%
+\DeclareRobustCommand\olseries{\not@math@alphabet\olseries\mathol\fontseries\oldefault\selectfont}%
+\DeclareTextFontCommand{\textol}{\olseries}%
+%
+% definitions of \dbseries and \textdb
+%
+\newcommand\dbdefault{db}%
+\DeclareRobustCommand\dbseries{\not@math@alphabet\dbseries\mathdb\fontseries\dbdefault\selectfont}%
+\DeclareTextFontCommand{\textdb}{\dbseries}% \ No newline at end of file