diff options
author | Karl Berry <karl@freefriends.org> | 2016-04-18 21:50:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-04-18 21:50:25 +0000 |
commit | 55b4e991da3e70208862ba32c31d2c7822541d28 (patch) | |
tree | 1e02b1081cb1d899767cca280a8157875b3fab42 | |
parent | 30b1e2a8178411f40c511d5ab6673929a59d8d85 (diff) |
sourceserifpro (18apr16)
git-svn-id: svn://tug.org/texlive/trunk@40598 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf | bin | 68475 -> 68754 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.tex | 7 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/sourceserifpro/sourceserifpro.sty | 26 |
3 files changed, 25 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf b/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf Binary files differindex ae8cd863e85..6e6c4355e16 100644 --- a/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf +++ b/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf diff --git a/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.tex b/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.tex index 404e111b291..ccb219a9c87 100644 --- a/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.tex +++ b/Master/texmf-dist/doc/latex/sourceserifpro/sourceserifpro.tex @@ -18,7 +18,7 @@ } \author{Silke Hofstra, \href{mailto:tex@slxh.nl}{tex@slxh.nl}} -\date{Documentation for sourceserifpro v1.1.\\ \today} +\date{Documentation for sourceserifpro v1.2.\\ \today} \begin{document} \maketitle @@ -93,6 +93,11 @@ The following Type1 font families are included: With series ‘el’, ‘l’, ‘m’, ‘sb’, ‘b’, ‘k’ and shape ‘n’. \section{Version history} +\subsection*{1.2} +\begin{itemize*} + \item Fixed unimplemented weights (Github issue \#1) +\end{itemize*} + \subsection*{1.1} \begin{itemize*} \item Updated package with fonts 1.017 diff --git a/Master/texmf-dist/tex/latex/sourceserifpro/sourceserifpro.sty b/Master/texmf-dist/tex/latex/sourceserifpro/sourceserifpro.sty index f0519ba3edd..1a31d79a86b 100644 --- a/Master/texmf-dist/tex/latex/sourceserifpro/sourceserifpro.sty +++ b/Master/texmf-dist/tex/latex/sourceserifpro/sourceserifpro.sty @@ -8,7 +8,7 @@ % Licenced under the LPPL v1.3 or higher. % \NeedsTeXFormat{LaTeX2e}[1994/12/01] -\ProvidesPackage{sourceserifpro}[2015/01/11 v1.1 Adobe's Source Serif Pro typeface] +\ProvidesPackage{sourceserifpro}[2016/04/08 v1.2 Adobe's Source Serif Pro typeface] \RequirePackage{ifxetex,ifluatex,xkeyval} @@ -165,15 +165,27 @@ \def\sourceserifpro@figurealign{} \fi - % Semibold/Bold - \ifsourceserifpro@semibold - \def\bfseries@rm{sb} + % Black/Semibold/Bold + \ifsourceserifpro@black + \def\bfseries@rm{k} \else - \def\bfseries@rm{b} + \ifsourceserifpro@semibold + \def\bfseries@rm{sb} + \else + \def\bfseries@rm{b} + \fi \fi - % Regular - \def\mdseries@rm{m} + % Light/ExtraLight/Regular + \ifsourceserifpro@light + \def\mdseries@rm{l} + \else + \ifsourceserifpro@extralight + \def\mdseries@rm{el} + \else + \def\mdseries@rm{m} + \fi + \fi % Sans serif font \ifsourceserifpro@rmdefault |