summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/sourcesanspro/sourcesanspro.sty
blob: 8616ff555218cefd2a00e290e7d47dad27f31626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
% Source Sans Pro for LaTeX
% 
% Silke Hofstra, silke@slxh.nl
%
% This file selects either the OTF or the TYPE1 package based on your engine.
%
% Licenced under the LPPL
%
\NeedsTeXFormat{LaTeX2e}[1994/12/01]
\ProvidesPackage{sourcesanspro}[2012/11/04 v1.02 Adobe's Source Sans Pro typeface]
%
\RequirePackage{ifxetex,ifluatex}
\ifxetex
	\edef\sourcesanspro@pack{otf}
\else
	\ifluatex
		\edef\sourcesanspro@pack{otf}
	\else
		\edef\sourcesanspro@pack{type1}
	\fi
\fi
%
\DeclareOption*{
  \PassOptionsToPackage{\CurrentOption}{sourcesanspro-\sourcesanspro@pack}%
}
\ProcessOptions\relax
%
\RequirePackage{sourcesanspro-\sourcesanspro@pack}
\endinput