diff options
-rw-r--r-- | Master/texmf-dist/doc/fonts/dantelogo/Changes | 6 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/dantelogo/README | 5 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf | bin | 70805 -> 71634 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.tex | 9 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/dantelogo/dantelogo.sty | 11 |
5 files changed, 21 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/fonts/dantelogo/Changes b/Master/texmf-dist/doc/fonts/dantelogo/Changes index 49a1b79679a..240bf1916b6 100644 --- a/Master/texmf-dist/doc/fonts/dantelogo/Changes +++ b/Master/texmf-dist/doc/fonts/dantelogo/Changes @@ -1,2 +1,4 @@ -dtk.cls ----- -0.01 2014-09-02 - first CTAN version +dantelogo.sty ----- +0.02 2014-10-01 - use \providecommand instead of \newcommand +0.01 2014-09-22 - first CTAN version + diff --git a/Master/texmf-dist/doc/fonts/dantelogo/README b/Master/texmf-dist/doc/fonts/dantelogo/README index 4eab3e04dd6..f011007dd24 100644 --- a/Master/texmf-dist/doc/fonts/dantelogo/README +++ b/Master/texmf-dist/doc/fonts/dantelogo/README @@ -1,5 +1,8 @@ dantelogo.sty provides an interface for LuaLaTeX/XeLaTeX/pdfLaTeX -for using the DANTE font for DANE's logo +for using the DANTE font for DANTE's logo. +http://www.dante.de, the german speaking TeX user group +The fonts are under the SIL Open Font License and +the package is under the LPPL. diff --git a/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf b/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf Binary files differindex 1d346d29235..7615d97ba1b 100644 --- a/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf +++ b/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf diff --git a/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.tex b/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.tex index daf46bd2394..c1468c7f805 100644 --- a/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.tex +++ b/Master/texmf-dist/doc/fonts/dantelogo/dantelogo-doc.tex @@ -1,4 +1,4 @@ -% $Id: dantelogo-doc.tex 99 2014-09-02 11:41:01Z herbert $ +% $Id: dantelogo-doc.tex 127 2014-10-01 15:17:09Z herbert $ \documentclass{article} \usepackage{iftex} \ifPDFTeX @@ -26,7 +26,7 @@ \maketitle \verb|\dantelogo[<size>]| which gives \dantelogo, can be used with all current \TeX\ engines. There are Type1 and OTF versions -of the font which includes only the five characters dante. The \verb|<size>| is an optional parameter. The package itself tries +of the font which includes only the five characters d-a-n-t-e. The \verb|<size>| is an optional parameter. The package itself tries to detect the running machine (\texttt{pdflatex}, \texttt{xelatex}, or \texttt{lualatex}) and then loads by default package \verb|fontenc| for \texttt{pdflatex} or package \texttt{fontspec}, otherwise. @@ -50,6 +50,11 @@ package \verb|fontenc| for \texttt{pdflatex} or package \texttt{fontspec}, other \bfseries\itshape\dantelogo\Huge\dantelogo \end{LTXexample} +\subsection*{License} +The fonts are under the SIL Open Font License (http://scripts.sil.org/OFL) and +the package is under the LPPL. + + \subsection*{The code} \lstinputlisting{dantelogo.sty} diff --git a/Master/texmf-dist/tex/latex/dantelogo/dantelogo.sty b/Master/texmf-dist/tex/latex/dantelogo/dantelogo.sty index c740037f00f..275c53f4cb1 100644 --- a/Master/texmf-dist/tex/latex/dantelogo/dantelogo.sty +++ b/Master/texmf-dist/tex/latex/dantelogo/dantelogo.sty @@ -1,4 +1,4 @@ -% $Id: .sty 51 2014-07-26 18:36:44Z herbert $ +% $Id: dantelogo.sty 127 2014-10-01 15:17:09Z herbert $ %% %% This is file `dantelogo.sty'. %% @@ -12,8 +12,8 @@ %% Either version 1.0 or, at your option, any later version. %% % -\def\fileversion{0.01} -\def\filedate{2014/09/02} +\def\fileversion{0.02} +\def\filedate{2014/10/01} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{dantelogo}[\filedate\space v\fileversion] \message{`dantelogo' v\fileversion, \filedate\space macro for DANTE's logo (hv)} @@ -39,9 +39,10 @@ BoldItalicFont=*-Bold-Italic] \fi % -\newcommand\dantelogo[1][]{{% +\providecommand\dantelogo{}% to be sure that it is defined +\renewcommand\dantelogo[1][]{{% \dante@font - \ifx\relax#1\relax\else\fontsize{#1}{#1}\fi\selectfont DANTE}} + \ifx\relax#1\relax\else\fontsize{#1}{#1}\selectfont\fi DANTE}} % % \endinput |