diff options
author | Karl Berry <karl@freefriends.org> | 2015-07-03 22:04:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-07-03 22:04:02 +0000 |
commit | be23614d2a6893dde069ce369010cd1b1bbfadb4 (patch) | |
tree | f1c585dc79fc38cc3c46d24abc23ffda6e5bf515 | |
parent | 0387fcbab1b308d7304f2b05939d9f87f8f3fbc9 (diff) |
comicneue (3jul15)
git-svn-id: svn://tug.org/texlive/trunk@37744 c570f23f-e606-0410-a88d-b1316a301751
241 files changed, 1237 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/comicneue/SIL-License.txt b/Master/texmf-dist/doc/latex/comicneue/SIL-License.txt new file mode 100644 index 00000000000..6cbde89319e --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/SIL-License.txt @@ -0,0 +1,89 @@ +SIL OPEN FONT LICENSE + +Version 1.1 - 26 February 2007 + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting — in part or in whole — any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + +© 2003-2014 SIL International, all rights reserved, unless otherwise noted elsewhere on this page. +Provided by SIL's Non-Roman Script Initiative. Contact us here: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=support
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.pdf b/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.pdf Binary files differnew file mode 100644 index 00000000000..447d4b94af2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.pdf diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.tex b/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.tex new file mode 100644 index 00000000000..4aabbe7976d --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.tex @@ -0,0 +1,40 @@ +\documentclass[varwidth]{standalone} +\usepackage{array} +\usepackage[default,opentype]{comicneue} + +\newcommand*\spA{abcde} +\newcommand*\spB{01469} +\newcommand*\spr[1][\spA]{& #1 & #1 & #1 \\} +\begin{document} +Normal +\begin{tabular}{ + >{}l + >{\comicneuelight}c + >{\comicneue}c + >{\comicneue\bfseries}c } + & Light & Regular & Bold \\ + normal \spr + italic \spr[\itshape\spA] + capitals \spr[\MakeUppercase\spA] + italic capitals \spr[\itshape\MakeUppercase\spA] + numbers \spr[\spB] + italic numbers \spr[\itshape\spB] +\end{tabular} + +\comicneueangular +Angular +\begin{tabular}{ + >{}l + >{\comicneueangularlight}c + >{\comicneueangular}c + >{\comicneueangular\bfseries}c } + & Light & Regular & Bold \\ + normal \spr + italic \spr[\itshape\spA] + capitals \spr[\MakeUppercase\spA] + italic capitals \spr[\itshape\MakeUppercase\spA] + numbers \spr[\spB] + italic numbers \spr[\itshape\spB] +\end{tabular} + +\end{document}
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.pdf b/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.pdf Binary files differnew file mode 100644 index 00000000000..127bfcc413b --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.pdf diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.tex b/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.tex new file mode 100644 index 00000000000..ce870256df6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.tex @@ -0,0 +1,39 @@ +\documentclass[varwidth]{standalone} +\usepackage{array} +\usepackage[default,type1]{comicneue} + +\newcommand*\spA{abcde} +\newcommand*\spB{01469} +\newcommand*\spr[1][\spA]{& #1 & #1 & #1 \\} +\begin{document} +Normal +\begin{tabular}{ + >{}l + >{\comicneuelight}c + >{\comicneue}c + >{\comicneue\bfseries}c } + & Light & Regular & Bold \\ + normal \spr + italic \spr[\itshape\spA] + capitals \spr[\MakeUppercase\spA] + italic capitals \spr[\itshape\MakeUppercase\spA] + numbers \spr[\spB] + italic numbers \spr[\itshape\spB] +\end{tabular} + +\comicneueangular +Angular +\begin{tabular}{ + >{}l + >{\comicneueangularlight}c + >{\comicneueangular}c + >{\comicneueangular\bfseries}c } + & Light & Regular & Bold \\ + normal \spr + italic \spr[\itshape\spA] + capitals \spr[\MakeUppercase\spA] + italic capitals \spr[\itshape\MakeUppercase\spA] + numbers \spr[\spB] + italic numbers \spr[\itshape\spB] +\end{tabular} +\end{document}
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue.pdf b/Master/texmf-dist/doc/latex/comicneue/comicneue.pdf Binary files differnew file mode 100644 index 00000000000..efa6c968841 --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue.pdf diff --git a/Master/texmf-dist/doc/latex/comicneue/comicneue.tex b/Master/texmf-dist/doc/latex/comicneue/comicneue.tex new file mode 100644 index 00000000000..cb2eae8d320 --- /dev/null +++ b/Master/texmf-dist/doc/latex/comicneue/comicneue.tex @@ -0,0 +1,95 @@ +\documentclass[10pt,a4paper,english]{article} +\usepackage{geometry,metalogo,hyperref,babel,mdwlist,multicol,parskip} +\usepackage[default]{comicneue} +\usepackage[scaled=.9]{sourcecodepro} + +\hypersetup{colorlinks,citecolor=blue,filecolor=blue,linkcolor=blue,urlcolor=blue} +\NewDocumentCommand\file{m}{\href{run:#1.pdf}{#1}} +\NewDocumentCommand\cmd{m}{\texttt{\bfseries \textbackslash #1}} + +\title{% + \vspace{-4em} + \comicneuelight + \resizebox{\linewidth}{!}{comicneue}\\ + \resizebox{\linewidth}{!}{Craig Rozynski's Comic Neue fonts for \LaTeX} +} + +\author{Silke Hofstra, \href{mailto:tex@slxh.nl}{tex@slxh.nl}} +\date{Documentation for comicneue v1.0.\\ \today} +\listfiles +\begin{document} +\maketitle +\begin{multicols}{2} +This package provides the Comic Neue fonts in an easy to use way. +For \XeLaTeX\ and \LuaLaTeX\ users the original OpenType fonts are used. +The entire font family is included. + +Comic Neue is a redesign of the infamous Comic Sans font. +More information about this redesign can be found on \href{http://comicneue.com/}{comicneue.com}. + +This package is also available on \href{https://github.com/silkeh/latex-comicneue}{GitHub}. + +\section{Options} +The package has the following options: +\begin{itemize*} + \item \textbf{light}: use the light weight by default. + \item \textbf{regular}: use the regular weight by default. + \item \textbf{angular}: Use the angular variant instead of the normal one. + \item \textbf{scale}: Change the scaling with a factor. For example: \texttt{scale=.5} + \item \textbf{default}: Sans-serif is set as default font family. + \item \textbf{sfdefault}: Comic Neue is set as sans-serif family. + \item \textbf{nosfdefault}: Comic Neue is not set as sans-serif family. + \item \textbf{type1, t1}: Override automatic detection and use the Type 1 fonts. + \item \textbf{opentype, otf}: Override automatic detection and use OpenType fonts. +\end{itemize*} +The following options are enabled by default: sfdefault, regular. + +\section{Commands} +Commands for all weights and styles are also provided: +\begin{itemize*} + \item \cmd{comicneue} + -- the regular and bold weights. + \item \cmd{comicneuelight} + -- the light and bold weights. + \item \cmd{comicneueangular} + -- the regular and bold weights in the angular style. + \item \cmd{comicneuelight} + -- the light and bold weights in the angular style. +\end{itemize*} + +\section{Licence} +The Comic Neue fonts are available under the \href{http://scripts.sil.org/OFL}{SIL Open Font License}.\\ +All \LaTeX\ code is available under the \href{http://www.latex-project.org/lppl/}{\LaTeX\ project public license} v1.3 or later. + +\section{Specimen} +Simple specimen are included on page \pageref{sec:specimen}. + +\section{Version history} + +\subsection*{1.0} +\begin{itemize*} + \item Initial release with v2.2 of the fonts. +\end{itemize*} + +\end{multicols} + +\clearpage + +\section{Specimen} +\label{sec:specimen} +\subsection{OpenType} +\begin{figure}[ht] + \centering + \includegraphics[width=.7\textwidth]{comicneue-otf-specimen} +\end{figure} +This table can also be found in \file{comicneue-otf-specimen}. + +\subsection{Type1} +\begin{figure}[ht] + \centering + \includegraphics[width=.7\textwidth]{comicneue-type1-specimen} +\end{figure} +This table can also be found in \file{comicneue-type1-specimen}. + +\end{document} + diff --git a/Master/texmf-dist/fonts/enc/dvips/comicneue/a_bs6yxn.enc b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_bs6yxn.enc new file mode 100644 index 00000000000..8039b375b2f --- /dev/null +++ b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_bs6yxn.enc @@ -0,0 +1,66 @@ +% THIS FILE WAS AUTOMATICALLY GENERATED -- DO NOT EDIT + +%%AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b +% Encoding created by otftotfm on Fri Jul 3 14:24:40 2015 +% Command line follows encoding +/AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b [ +%00 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%10 + /.notdef /.notdef /grave /acute /caron /breve /macron /.notdef + /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash +%20 + /space /exclam /quotedblright /numbersign /dollar /percent /ampersand /quoteright + /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash +%30 + /zero /one /two /three /four /five /six /seven + /eight /nine /colon /semicolon /exclamdown /equal /questiondown /question +%40 + /at /A /B /C /D /E /F /G + /H /I /J /K /L /M /N /O +%50 + /P /Q /R /S /T /U /V /W + /X /Y /Z /bracketleft /quotedblleft /bracketright /.notdef /dotaccent +%60 + /quoteleft /a /b /c /d /e /f /g + /h /i /j /k /l /m /n /o +%70 + /p /q /r /s /t /u /v /w + /x /y /z /endash /emdash /hungarumlaut /.notdef /dieresis +%80 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%90 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%A0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%B0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%C0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%D0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%E0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%F0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +] def +% Command line: 'otftotfm --automatic --encoding=fontools_ot1 +% --tfm-directory=fonts/tfm/rozynski/comicneue +% --vf-directory=fonts/vf/rozynski/comicneue +% --type1-directory=fonts/type1/rozynski/comicneue +% --truetype-directory=fonts/truetype/rozynski/comicneue +% --encoding-directory=fonts/enc/dvips/comicneue +% --map-file=fonts/map/dvips/comicneue/ComicNeueAngular.map --no-updmap +% --coding-scheme=TEX TEXT --feature=kern --ligkern=f i =: fi --ligkern=f l +% =: fl --ligkern=f f =: ff --ligkern=ff i =: ffi --ligkern=ff l =: ffl +% fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf +% ComicNeueAngular-BoldOblique-tlf-ot1' diff --git a/Master/texmf-dist/fonts/enc/dvips/comicneue/a_lfux4u.enc b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_lfux4u.enc new file mode 100644 index 00000000000..8510a5cbceb --- /dev/null +++ b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_lfux4u.enc @@ -0,0 +1,67 @@ +% THIS FILE WAS AUTOMATICALLY GENERATED -- DO NOT EDIT + +%%AutoEnc_lfux4uwsguci35a7dzjrzwsj7f +% Encoding created by otftotfm on Fri Jul 3 14:24:41 2015 +% Command line follows encoding +/AutoEnc_lfux4uwsguci35a7dzjrzwsj7f [ +%00 + /.notdef /Euro /.notdef /.notdef /.notdef /dotaccent /hungarumlaut /ogonek + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%10 + /.notdef /.notdef /grave /acute /caron /breve /macron /.notdef + /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash +%20 + /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright + /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash +%30 + /zero /one /two /three /four /five /six /seven + /eight /nine /colon /semicolon /less /equal /greater /question +%40 + /at /A /B /C /D /E /F /G + /H /I /J /K /L /M /N /O +%50 + /P /Q /R /S /T /U /V /W + /X /Y /Z /bracketleft /backslash /bracketright /.notdef /underscore +%60 + /quoteleft /a /b /c /d /e /f /g + /h /i /j /k /l /m /n /o +%70 + /p /q /r /s /t /u /v /w + /x /y /z /braceleft /bar /braceright /.notdef /dieresis +%80 + /Lslash /quotesingle /.notdef /.notdef /.notdef /ellipsis /.notdef /.notdef + /.notdef /.notdef /Scaron /guilsinglleft /OE /Zcaron /asciicircum /.notdef +%90 + /lslash /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash + /.notdef /trademark /scaron /guilsinglright /oe /zcaron /asciitilde /Ydieresis +%A0 + /.notdef /exclamdown /cent /sterling /currency /yen /.notdef /section + /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /uni00AD /registered /macron +%B0 + /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered + /cedilla /onesuperior /ordmasculine /guillemotright /.notdef /.notdef /.notdef /questiondown +%C0 + /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla + /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis +%D0 + /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply + /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls +%E0 + /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla + /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis +%F0 + /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide + /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis +] def +% Command line: 'otftotfm --automatic --encoding=fontools_ly1 +% --tfm-directory=fonts/tfm/rozynski/comicneue +% --vf-directory=fonts/vf/rozynski/comicneue +% --type1-directory=fonts/type1/rozynski/comicneue +% --truetype-directory=fonts/truetype/rozynski/comicneue +% --encoding-directory=fonts/enc/dvips/comicneue +% --map-file=fonts/map/dvips/comicneue/ComicNeueAngular.map --no-updmap +% --coding-scheme=TEX TYPEWRITER AND WINDOWS ANSI --feature=kern --ligkern=f +% i =: fi --ligkern=f l =: fl --ligkern=f f =: ff --ligkern=ff i =: ffi +% --ligkern=ff l =: ffl +% fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf +% ComicNeueAngular-BoldOblique-tlf-ly1' diff --git a/Master/texmf-dist/fonts/enc/dvips/comicneue/a_t3s7zg.enc b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_t3s7zg.enc new file mode 100644 index 00000000000..322a3f9edb0 --- /dev/null +++ b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_t3s7zg.enc @@ -0,0 +1,67 @@ +% THIS FILE WAS AUTOMATICALLY GENERATED -- DO NOT EDIT + +%%AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa +% Encoding created by otftotfm on Fri Jul 3 14:24:41 2015 +% Command line follows encoding +/AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa [ +%00 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /cedilla /ogonek /.notdef /C /bar +%10 + /exclam /asterisk /.notdef /question /questiondown /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /exclamdown /.notdef +%20 + /.notdef /endash /.notdef /.notdef /dollar /.notdef /.notdef /quotesingle + /.notdef /.notdef /.notdef /.notdef /comma /.notdef /period /.notdef +%30 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%40 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%50 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%60 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%70 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%80 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /bullet /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%90 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /trademark + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%A0 + /.notdef /.notdef /cent /sterling /currency /yen /.notdef /section + /.notdef /copyright /ordfeminine /.notdef /logicalnot /.notdef /registered /.notdef +%B0 + /degree /plusminus /twosuperior /threesuperior /.notdef /mu /paragraph /periodcentered + /.notdef /onesuperior /ordmasculine /.notdef /.notdef /.notdef /.notdef /Euro +%C0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%D0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /multiply /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%E0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%F0 + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /divide /.notdef + /.notdef /.notdef /.notdef /.notdef /l /.notdef /i /f +] def +% Command line: 'otftotfm --automatic --encoding=fontools_ts1 +% --tfm-directory=fonts/tfm/rozynski/comicneue +% --vf-directory=fonts/vf/rozynski/comicneue +% --type1-directory=fonts/type1/rozynski/comicneue +% --truetype-directory=fonts/truetype/rozynski/comicneue +% --encoding-directory=fonts/enc/dvips/comicneue +% --map-file=fonts/map/dvips/comicneue/ComicNeueAngular.map --no-updmap +% --coding-scheme=TEX TEXT COMPANION SYMBOLS 1---TS1 --ligkern=f i =: fi +% --ligkern=f l =: fl --ligkern=f f =: ff --ligkern=ff i =: ffi --ligkern=ff +% l =: ffl +% fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf +% ComicNeueAngular-BoldOblique-tlf-ts1' diff --git a/Master/texmf-dist/fonts/enc/dvips/comicneue/a_yvpaqy.enc b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_yvpaqy.enc new file mode 100644 index 00000000000..c0d2184df26 --- /dev/null +++ b/Master/texmf-dist/fonts/enc/dvips/comicneue/a_yvpaqy.enc @@ -0,0 +1,67 @@ +% THIS FILE WAS AUTOMATICALLY GENERATED -- DO NOT EDIT + +%%AutoEnc_yvpaqytm43lwmc7qvl6djen2cf +% Encoding created by otftotfm on Fri Jul 3 14:24:41 2015 +% Command line follows encoding +/AutoEnc_yvpaqytm43lwmc7qvl6djen2cf [ +%00 + /grave /acute /.notdef /.notdef /dieresis /hungarumlaut /.notdef /caron + /breve /macron /dotaccent /cedilla /ogonek /.notdef /guilsinglleft /guilsinglright +%10 + /quotedblleft /quotedblright /.notdef /guillemotleft /guillemotright /endash /emdash /.notdef + /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef +%20 + /.notdef /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright + /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash +%30 + /zero /one /two /three /four /five /six /seven + /eight /nine /colon /semicolon /less /equal /greater /question +%40 + /at /A /B /C /D /E /F /G + /H /I /J /K /L /M /N /O +%50 + /P /Q /R /S /T /U /V /W + /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore +%60 + /quoteleft /a /b /c /d /e /f /g + /h /i /j /k /l /m /n /o +%70 + /p /q /r /s /t /u /v /w + /x /y /z /braceleft /bar /braceright /asciitilde /hyphen +%80 + /Abreve /Aogonek /Cacute /Ccaron /Dcaron /Ecaron /Eogonek /.notdef + /Lacute /Lcaron /Lslash /Nacute /Ncaron /.notdef /Ohungarumlaut /Racute +%90 + /Rcaron /Sacute /Scaron /Scedilla /Tcaron /uni0162 /Uhungarumlaut /Uring + /Ydieresis /Zacute /Zcaron /Zdotaccent /.notdef /.notdef /dcroat /section +%A0 + /abreve /aogonek /cacute /ccaron /dcaron /ecaron /eogonek /.notdef + /lacute /lcaron /lslash /nacute /ncaron /.notdef /ohungarumlaut /racute +%B0 + /rcaron /sacute /scaron /scedilla /tcaron /uni0163 /uhungarumlaut /uring + /ydieresis /zacute /zcaron /zdotaccent /.notdef /exclamdown /questiondown /sterling +%C0 + /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla + /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis +%D0 + /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /OE + /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /.notdef +%E0 + /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla + /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis +%F0 + /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /oe + /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /germandbls +] def +% Command line: 'otftotfm --automatic --encoding=fontools_t1 +% --tfm-directory=fonts/tfm/rozynski/comicneue +% --vf-directory=fonts/vf/rozynski/comicneue +% --type1-directory=fonts/type1/rozynski/comicneue +% --truetype-directory=fonts/truetype/rozynski/comicneue +% --encoding-directory=fonts/enc/dvips/comicneue +% --map-file=fonts/map/dvips/comicneue/ComicNeueAngular.map --no-updmap +% --coding-scheme=EXTENDED TEX FONT ENCODING - LATIN --feature=kern +% --ligkern=f i =: fi --ligkern=f l =: fl --ligkern=f f =: ff --ligkern=ff i +% =: ffi --ligkern=ff l =: ffl +% fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf +% ComicNeueAngular-BoldOblique-tlf-t1' diff --git a/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeue.map b/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeue.map new file mode 100644 index 00000000000..5b16df6c6ea --- /dev/null +++ b/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeue.map @@ -0,0 +1,44 @@ +% Automatically maintained by otftotfm or other programs. Do not edit. + +ComicNeue-BoldOblique-tlf-ot1--lcdfj ComicNeue-BoldObliqueLCDFJ "" <ComicNeue-BoldObliqueLCDFJ.pfb +ComicNeue-BoldOblique-tlf-ot1--base ComicNeue-BoldOblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue-BoldOblique.pfb +ComicNeue-BoldOblique-tlf-t1--lcdfj ComicNeue-BoldObliqueLCDFJ "" <ComicNeue-BoldObliqueLCDFJ.pfb +ComicNeue-BoldOblique-tlf-t1--base ComicNeue-BoldOblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue-BoldOblique.pfb +ComicNeue-BoldOblique-tlf-ly1--lcdfj ComicNeue-BoldObliqueLCDFJ "" <ComicNeue-BoldObliqueLCDFJ.pfb +ComicNeue-BoldOblique-tlf-ly1--base ComicNeue-BoldOblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue-BoldOblique.pfb +ComicNeue-BoldOblique-tlf-ts1--base ComicNeue-BoldOblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue-BoldOblique.pfb +ComicNeue-Bold-tlf-ot1--lcdfj ComicNeue-BoldLCDFJ "" <ComicNeue-BoldLCDFJ.pfb +ComicNeue-Bold-tlf-ot1--base ComicNeue-Bold "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue-Bold.pfb +ComicNeue-Bold-tlf-t1--lcdfj ComicNeue-BoldLCDFJ "" <ComicNeue-BoldLCDFJ.pfb +ComicNeue-Bold-tlf-t1--base ComicNeue-Bold "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue-Bold.pfb +ComicNeue-Bold-tlf-ly1--lcdfj ComicNeue-BoldLCDFJ "" <ComicNeue-BoldLCDFJ.pfb +ComicNeue-Bold-tlf-ly1--base ComicNeue-Bold "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue-Bold.pfb +ComicNeue-Bold-tlf-ts1--base ComicNeue-Bold "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue-Bold.pfb +ComicNeue-LightOblique-tlf-ot1--lcdfj ComicNeue-LightObliqueLCDFJ "" <ComicNeue-LightObliqueLCDFJ.pfb +ComicNeue-LightOblique-tlf-ot1--base ComicNeue-LightOblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue-LightOblique.pfb +ComicNeue-LightOblique-tlf-t1--lcdfj ComicNeue-LightObliqueLCDFJ "" <ComicNeue-LightObliqueLCDFJ.pfb +ComicNeue-LightOblique-tlf-t1--base ComicNeue-LightOblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue-LightOblique.pfb +ComicNeue-LightOblique-tlf-ly1--lcdfj ComicNeue-LightObliqueLCDFJ "" <ComicNeue-LightObliqueLCDFJ.pfb +ComicNeue-LightOblique-tlf-ly1--base ComicNeue-LightOblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue-LightOblique.pfb +ComicNeue-LightOblique-tlf-ts1--base ComicNeue-LightOblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue-LightOblique.pfb +ComicNeue-Light-tlf-ot1--lcdfj ComicNeue-LightLCDFJ "" <ComicNeue-LightLCDFJ.pfb +ComicNeue-Light-tlf-ot1--base ComicNeue-Light "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue-Light.pfb +ComicNeue-Light-tlf-t1--lcdfj ComicNeue-LightLCDFJ "" <ComicNeue-LightLCDFJ.pfb +ComicNeue-Light-tlf-t1--base ComicNeue-Light "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue-Light.pfb +ComicNeue-Light-tlf-ly1--lcdfj ComicNeue-LightLCDFJ "" <ComicNeue-LightLCDFJ.pfb +ComicNeue-Light-tlf-ly1--base ComicNeue-Light "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue-Light.pfb +ComicNeue-Light-tlf-ts1--base ComicNeue-Light "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue-Light.pfb +ComicNeue-Oblique-tlf-ot1--lcdfj ComicNeue-ObliqueLCDFJ "" <ComicNeue-ObliqueLCDFJ.pfb +ComicNeue-Oblique-tlf-ot1--base ComicNeue-Oblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue-Oblique.pfb +ComicNeue-Oblique-tlf-t1--lcdfj ComicNeue-ObliqueLCDFJ "" <ComicNeue-ObliqueLCDFJ.pfb +ComicNeue-Oblique-tlf-t1--base ComicNeue-Oblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue-Oblique.pfb +ComicNeue-Oblique-tlf-ly1--lcdfj ComicNeue-ObliqueLCDFJ "" <ComicNeue-ObliqueLCDFJ.pfb +ComicNeue-Oblique-tlf-ly1--base ComicNeue-Oblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue-Oblique.pfb +ComicNeue-Oblique-tlf-ts1--base ComicNeue-Oblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue-Oblique.pfb +ComicNeue-tlf-ot1--lcdfj ComicNeueLCDFJ "" <ComicNeueLCDFJ.pfb +ComicNeue-tlf-ot1--base ComicNeue "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeue.pfb +ComicNeue-tlf-t1--lcdfj ComicNeueLCDFJ "" <ComicNeueLCDFJ.pfb +ComicNeue-tlf-t1--base ComicNeue "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeue.pfb +ComicNeue-tlf-ly1--lcdfj ComicNeueLCDFJ "" <ComicNeueLCDFJ.pfb +ComicNeue-tlf-ly1--base ComicNeue "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeue.pfb +ComicNeue-tlf-ts1--base ComicNeue "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeue.pfb diff --git a/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeueAngular.map b/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeueAngular.map new file mode 100644 index 00000000000..b9db86503fc --- /dev/null +++ b/Master/texmf-dist/fonts/map/dvips/comicneue/ComicNeueAngular.map @@ -0,0 +1,44 @@ +% Automatically maintained by otftotfm or other programs. Do not edit. + +ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj ComicNeueAngular-BoldObliqueLCDFJ "" <ComicNeueAngular-BoldObliqueLCDFJ.pfb +ComicNeueAngular-BoldOblique-tlf-ot1--base ComicNeueAngular-BoldOblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular-BoldOblique.pfb +ComicNeueAngular-BoldOblique-tlf-t1--lcdfj ComicNeueAngular-BoldObliqueLCDFJ "" <ComicNeueAngular-BoldObliqueLCDFJ.pfb +ComicNeueAngular-BoldOblique-tlf-t1--base ComicNeueAngular-BoldOblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular-BoldOblique.pfb +ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj ComicNeueAngular-BoldObliqueLCDFJ "" <ComicNeueAngular-BoldObliqueLCDFJ.pfb +ComicNeueAngular-BoldOblique-tlf-ly1--base ComicNeueAngular-BoldOblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular-BoldOblique.pfb +ComicNeueAngular-BoldOblique-tlf-ts1--base ComicNeueAngular-BoldOblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular-BoldOblique.pfb +ComicNeueAngular-Bold-tlf-ot1--lcdfj ComicNeueAngular-BoldLCDFJ "" <ComicNeueAngular-BoldLCDFJ.pfb +ComicNeueAngular-Bold-tlf-ot1--base ComicNeueAngular-Bold "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular-Bold.pfb +ComicNeueAngular-Bold-tlf-t1--lcdfj ComicNeueAngular-BoldLCDFJ "" <ComicNeueAngular-BoldLCDFJ.pfb +ComicNeueAngular-Bold-tlf-t1--base ComicNeueAngular-Bold "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular-Bold.pfb +ComicNeueAngular-Bold-tlf-ly1--lcdfj ComicNeueAngular-BoldLCDFJ "" <ComicNeueAngular-BoldLCDFJ.pfb +ComicNeueAngular-Bold-tlf-ly1--base ComicNeueAngular-Bold "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular-Bold.pfb +ComicNeueAngular-Bold-tlf-ts1--base ComicNeueAngular-Bold "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular-Bold.pfb +ComicNeueAngular-LightOblique-tlf-ot1--lcdfj ComicNeueAngular-LightObliqueLCDFJ "" <ComicNeueAngular-LightObliqueLCDFJ.pfb +ComicNeueAngular-LightOblique-tlf-ot1--base ComicNeueAngular-LightOblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular-LightOblique.pfb +ComicNeueAngular-LightOblique-tlf-t1--lcdfj ComicNeueAngular-LightObliqueLCDFJ "" <ComicNeueAngular-LightObliqueLCDFJ.pfb +ComicNeueAngular-LightOblique-tlf-t1--base ComicNeueAngular-LightOblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular-LightOblique.pfb +ComicNeueAngular-LightOblique-tlf-ly1--lcdfj ComicNeueAngular-LightObliqueLCDFJ "" <ComicNeueAngular-LightObliqueLCDFJ.pfb +ComicNeueAngular-LightOblique-tlf-ly1--base ComicNeueAngular-LightOblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular-LightOblique.pfb +ComicNeueAngular-LightOblique-tlf-ts1--base ComicNeueAngular-LightOblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular-LightOblique.pfb +ComicNeueAngular-Light-tlf-ot1--lcdfj ComicNeueAngular-LightLCDFJ "" <ComicNeueAngular-LightLCDFJ.pfb +ComicNeueAngular-Light-tlf-ot1--base ComicNeueAngular-Light "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular-Light.pfb +ComicNeueAngular-Light-tlf-t1--lcdfj ComicNeueAngular-LightLCDFJ "" <ComicNeueAngular-LightLCDFJ.pfb +ComicNeueAngular-Light-tlf-t1--base ComicNeueAngular-Light "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular-Light.pfb +ComicNeueAngular-Light-tlf-ly1--lcdfj ComicNeueAngular-LightLCDFJ "" <ComicNeueAngular-LightLCDFJ.pfb +ComicNeueAngular-Light-tlf-ly1--base ComicNeueAngular-Light "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular-Light.pfb +ComicNeueAngular-Light-tlf-ts1--base ComicNeueAngular-Light "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular-Light.pfb +ComicNeueAngular-Oblique-tlf-ot1--lcdfj ComicNeueAngular-ObliqueLCDFJ "" <ComicNeueAngular-ObliqueLCDFJ.pfb +ComicNeueAngular-Oblique-tlf-ot1--base ComicNeueAngular-Oblique "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular-Oblique.pfb +ComicNeueAngular-Oblique-tlf-t1--lcdfj ComicNeueAngular-ObliqueLCDFJ "" <ComicNeueAngular-ObliqueLCDFJ.pfb +ComicNeueAngular-Oblique-tlf-t1--base ComicNeueAngular-Oblique "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular-Oblique.pfb +ComicNeueAngular-Oblique-tlf-ly1--lcdfj ComicNeueAngular-ObliqueLCDFJ "" <ComicNeueAngular-ObliqueLCDFJ.pfb +ComicNeueAngular-Oblique-tlf-ly1--base ComicNeueAngular-Oblique "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular-Oblique.pfb +ComicNeueAngular-Oblique-tlf-ts1--base ComicNeueAngular-Oblique "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular-Oblique.pfb +ComicNeueAngular-tlf-ot1--lcdfj ComicNeueAngularLCDFJ "" <ComicNeueAngularLCDFJ.pfb +ComicNeueAngular-tlf-ot1--base ComicNeueAngular "AutoEnc_bs6yxn4oxbo2ozbp2nwmptu46b ReEncodeFont" <[a_bs6yxn.enc <ComicNeueAngular.pfb +ComicNeueAngular-tlf-t1--lcdfj ComicNeueAngularLCDFJ "" <ComicNeueAngularLCDFJ.pfb +ComicNeueAngular-tlf-t1--base ComicNeueAngular "AutoEnc_yvpaqytm43lwmc7qvl6djen2cf ReEncodeFont" <[a_yvpaqy.enc <ComicNeueAngular.pfb +ComicNeueAngular-tlf-ly1--lcdfj ComicNeueAngularLCDFJ "" <ComicNeueAngularLCDFJ.pfb +ComicNeueAngular-tlf-ly1--base ComicNeueAngular "AutoEnc_lfux4uwsguci35a7dzjrzwsj7f ReEncodeFont" <[a_lfux4u.enc <ComicNeueAngular.pfb +ComicNeueAngular-tlf-ts1--base ComicNeueAngular "AutoEnc_t3s7zgsp6rmucn3jpovtr4z7aa ReEncodeFont" <[a_t3s7zg.enc <ComicNeueAngular.pfb diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold.otf Binary files differnew file mode 100644 index 00000000000..fe9a34b8df0 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf Binary files differnew file mode 100644 index 00000000000..1302b40691f --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light.otf Binary files differnew file mode 100644 index 00000000000..06472075ac9 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light_Oblique.otf Binary files differnew file mode 100644 index 00000000000..e3933953f29 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light_Oblique.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular.otf Binary files differnew file mode 100644 index 00000000000..2796499edec --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular_Oblique.otf Binary files differnew file mode 100644 index 00000000000..8e02b888bcc --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular_Oblique.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold.otf Binary files differnew file mode 100644 index 00000000000..4632833f494 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold_Oblique.otf Binary files differnew file mode 100644 index 00000000000..9af707437e1 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Bold_Oblique.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light.otf Binary files differnew file mode 100644 index 00000000000..5c933490d62 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light_Oblique.otf Binary files differnew file mode 100644 index 00000000000..6533f5bffa4 --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Light_Oblique.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular.otf Binary files differnew file mode 100644 index 00000000000..ae201f1a39c --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular.otf diff --git a/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular_Oblique.otf b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular_Oblique.otf Binary files differnew file mode 100644 index 00000000000..9da52ad701b --- /dev/null +++ b/Master/texmf-dist/fonts/opentype/rozynski/comicneue/ComicNeue_Regular_Oblique.otf diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..77ef9515483 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..c3fb6d5ef6d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..e92db6f31a9 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..03a9ae25f89 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..c3fb6d5ef6d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..2894a6ecd8e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..4699e13018e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..c3fb6d5ef6d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..abb31a7f718 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..953edc71d1a --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..bdf4d0a4217 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..ccb1d87e791 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d77c138b426 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..4e9c8923ed5 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..0fdecf05da3 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d77c138b426 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..ed17f857478 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..efaf3c558b6 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d77c138b426 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..f42ab5b5b72 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..85c25b2f8a8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..3124713c2be --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..c9a0d73fcba --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..70204cbf687 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..78595a73552 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..81e40109484 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..70204cbf687 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..8f008a21250 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..525ccb339fd --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..70204cbf687 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..aca4841cb99 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..10c021c1662 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..9487a367130 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..7fa058cf880 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e79a923487b --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..1cb3c22111c --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..6f9f32853ca --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e79a923487b --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..97616af6a70 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..b08d6b5a39a --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e79a923487b --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..de5d7a79d7d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..73456f016ce --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..b564f91c77e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..3f1942b6333 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..bc06eb1548d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..84f543fbe60 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..b095d23fb3b --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..bc06eb1548d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..635e79e2b87 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..53a3e028664 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..bc06eb1548d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..15e1f4b8dc8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..0c737779075 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..39aff2d2612 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..37cec4d1da7 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d76de67d2b8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..845f6a45226 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..3867c18eb37 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d76de67d2b8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..d7b316a9f22 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..dbaaa1b808f --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..d76de67d2b8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..2e3f6d10ef8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..098aa9beb39 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..abe48014c2a --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..69ed1e6eaee --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..54e86f9f7a6 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..bb300392ac1 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..d6b3eefa94f --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..54e86f9f7a6 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..1cb0e60bc13 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..2d27e743c40 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..54e86f9f7a6 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..1f10addc9da --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..47e54f20420 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..c104061b9c7 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..eed9467110a --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..6f56952c669 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..29d3199cffa --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..9244e3cab16 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..6f56952c669 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..c6527ace0a2 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..99d262f0675 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..6f56952c669 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..6be8f4821b2 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..36ac0c953e2 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..0f5b1a90b8a --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..a0359c76986 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..ada43eeb04c --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..a68c1b15017 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..b0fa840ae8b --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..ada43eeb04c --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..095941d4d87 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..1b9a3b433fd --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..ada43eeb04c --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..c3137702faf --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..77805243588 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..f626ad7cb71 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..b71bab996ce --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..650b5d4140e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..7f056465388 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..cbf50ca41be --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..650b5d4140e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..b16ad654a5f --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..1aa9e488178 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..650b5d4140e --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..bba904e7e42 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..df6be16f1e4 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..936d7561b69 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..2d9228971ac --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e2e8dd63435 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..d98f682fafc --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..f56ea8c026d --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e2e8dd63435 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..ee419db05bb --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..404c57224a4 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..e2e8dd63435 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..9c6d215d2a1 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..b8cebab06b8 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..17ab47683f2 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--base.tfm Binary files differnew file mode 100644 index 00000000000..752df94eb03 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..f08d0234879 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1.tfm Binary files differnew file mode 100644 index 00000000000..c34f2f80e56 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--base.tfm Binary files differnew file mode 100644 index 00000000000..d689ce61ba2 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..f08d0234879 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1.tfm Binary files differnew file mode 100644 index 00000000000..97c1360d085 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--base.tfm Binary files differnew file mode 100644 index 00000000000..70ea18c4fac --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--lcdfj.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--lcdfj.tfm Binary files differnew file mode 100644 index 00000000000..f08d0234879 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--lcdfj.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1.tfm Binary files differnew file mode 100644 index 00000000000..9a7318783c5 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1--base.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1--base.tfm Binary files differnew file mode 100644 index 00000000000..1dead42df82 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1--base.tfm diff --git a/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1.tfm b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1.tfm Binary files differnew file mode 100644 index 00000000000..04252ff6110 --- /dev/null +++ b/Master/texmf-dist/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1.tfm diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb Binary files differnew file mode 100644 index 00000000000..8d229dd155f --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..f0ba0594098 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldOblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldOblique.pfb Binary files differnew file mode 100644 index 00000000000..6f43817a491 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldOblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..3f16a422fc5 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-BoldObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb Binary files differnew file mode 100644 index 00000000000..b4fc18528da --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..9c5152ab300 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightOblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightOblique.pfb Binary files differnew file mode 100644 index 00000000000..e6da66d9197 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightOblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..74fef3be512 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-LightObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Oblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Oblique.pfb Binary files differnew file mode 100644 index 00000000000..3bb4665ba79 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-Oblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-ObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-ObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..9484c3b0f9a --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue-ObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue.pfb Binary files differnew file mode 100644 index 00000000000..3dde13e6564 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeue.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb Binary files differnew file mode 100644 index 00000000000..13945f19df0 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..6d71ae37606 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldOblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldOblique.pfb Binary files differnew file mode 100644 index 00000000000..5254be4dd10 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldOblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..4cf5f9b4c20 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb Binary files differnew file mode 100644 index 00000000000..f1900c598c2 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..cfb26557f54 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightOblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightOblique.pfb Binary files differnew file mode 100644 index 00000000000..6946e11033a --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightOblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..5bafc30c553 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Oblique.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Oblique.pfb Binary files differnew file mode 100644 index 00000000000..62fd0365033 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-Oblique.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-ObliqueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-ObliqueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..7e439b512bd --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular-ObliqueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular.pfb Binary files differnew file mode 100644 index 00000000000..16ea85cb3a2 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngular.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngularLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngularLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..c20148e6543 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueAngularLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueLCDFJ.pfb b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueLCDFJ.pfb Binary files differnew file mode 100644 index 00000000000..a9908f28b19 --- /dev/null +++ b/Master/texmf-dist/fonts/type1/rozynski/comicneue/ComicNeueLCDFJ.pfb diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..c411b5b7e02 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..9180bb9e01e --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..f54265dcdf5 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..5920bb36ed0 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..483f6a7144c --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..152b882dc8e --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..09c3c8a3047 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..b37330b3137 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..1086a1284bd --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..68bd4eb98fd --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..ffe3be85525 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..2537aec4267 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..2f6f8f31d7e --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..0e98bb85a5e --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..0a859ce4e1d --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..a05ff5b5094 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..0b531befca6 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..1e04cc98906 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..e8d218f5103 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..b97f5915c62 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..734c1351d68 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..9eba1fc1bd1 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..7575d968727 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..7aa66608a55 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..7673f4b9131 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..e5974fdee94 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..036166e479a --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..4a3ba293e3c --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..5673007c13d --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..f693e6e3b83 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..a681ebbfa9a --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..3b0234bac88 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..0288cf6e5d9 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..65cfd63f9b2 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..7bdd927892f --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..5c0ec5f544f --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..3332702219d --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..2445c1e29a0 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..a62860abb2c --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..cfcbf2ca885 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..5fc7c980551 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..d0137353def --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..7864abeccee --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..5c39b229757 --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ly1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ly1.vf Binary files differnew file mode 100644 index 00000000000..1f18d10850e --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ly1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ot1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ot1.vf Binary files differnew file mode 100644 index 00000000000..f4ce6c3532b --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ot1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-t1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-t1.vf Binary files differnew file mode 100644 index 00000000000..4a171896dff --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-t1.vf diff --git a/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ts1.vf b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ts1.vf Binary files differnew file mode 100644 index 00000000000..e9e1bb68e6a --- /dev/null +++ b/Master/texmf-dist/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ts1.vf diff --git a/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeue-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeue-TLF.fd new file mode 100644 index 00000000000..e7793229950 --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeue-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{LY1ComicNeue-TLF.fd} + [2015/07/03 (autoinst) Font definitions for LY1/ComicNeue-TLF.] + +\expandafter\ifx\csname ComicNeue@scale\endcsname\relax + \let\ComicNeue@@scale\@empty +\else + \edef\ComicNeue@@scale{s*[\csname ComicNeue@scale\endcsname]}% +\fi + +\DeclareFontFamily{LY1}{ComicNeue-TLF}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{l}{sl}{ + <-> \ComicNeue@@scale ComicNeue-LightOblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{l}{n}{ + <-> \ComicNeue@@scale ComicNeue-Light-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{l}{it}{ + <-> ssub * ComicNeue-TLF/l/sl +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{b}{n}{ + <-> \ComicNeue@@scale ComicNeue-Bold-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{b}{sl}{ + <-> \ComicNeue@@scale ComicNeue-BoldOblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{b}{it}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{m}{sl}{ + <-> \ComicNeue@@scale ComicNeue-Oblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{m}{n}{ + <-> \ComicNeue@@scale ComicNeue-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{m}{it}{ + <-> ssub * ComicNeue-TLF/m/sl +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{bx}{sl}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{bx}{n}{ + <-> ssub * ComicNeue-TLF/b/n +}{} + +\DeclareFontShape{LY1}{ComicNeue-TLF}{bx}{it}{ + <-> ssub * ComicNeue-TLF/b/it +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd new file mode 100644 index 00000000000..42caa1c96ae --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{LY1ComicNeueAngular-TLF.fd} + [2015/07/03 (autoinst) Font definitions for LY1/ComicNeueAngular-TLF.] + +\expandafter\ifx\csname ComicNeueAngular@scale\endcsname\relax + \let\ComicNeueAngular@@scale\@empty +\else + \edef\ComicNeueAngular@@scale{s*[\csname ComicNeueAngular@scale\endcsname]}% +\fi + +\DeclareFontFamily{LY1}{ComicNeueAngular-TLF}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{l}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Light-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{l}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-LightOblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{l}{it}{ + <-> ssub * ComicNeueAngular-TLF/l/sl +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{b}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-BoldOblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{b}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Bold-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{b}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{m}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Oblique-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{m}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-tlf-ly1 +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{m}{it}{ + <-> ssub * ComicNeueAngular-TLF/m/sl +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{bx}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/it +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{bx}{sl}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{LY1}{ComicNeueAngular-TLF}{bx}{n}{ + <-> ssub * ComicNeueAngular-TLF/b/n +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeue-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeue-TLF.fd new file mode 100644 index 00000000000..9db4e1b572a --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeue-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{OT1ComicNeue-TLF.fd} + [2015/07/03 (autoinst) Font definitions for OT1/ComicNeue-TLF.] + +\expandafter\ifx\csname ComicNeue@scale\endcsname\relax + \let\ComicNeue@@scale\@empty +\else + \edef\ComicNeue@@scale{s*[\csname ComicNeue@scale\endcsname]}% +\fi + +\DeclareFontFamily{OT1}{ComicNeue-TLF}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{l}{n}{ + <-> \ComicNeue@@scale ComicNeue-Light-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{l}{sl}{ + <-> \ComicNeue@@scale ComicNeue-LightOblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{l}{it}{ + <-> ssub * ComicNeue-TLF/l/sl +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{b}{n}{ + <-> \ComicNeue@@scale ComicNeue-Bold-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{b}{sl}{ + <-> \ComicNeue@@scale ComicNeue-BoldOblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{b}{it}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{m}{sl}{ + <-> \ComicNeue@@scale ComicNeue-Oblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{m}{n}{ + <-> \ComicNeue@@scale ComicNeue-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{m}{it}{ + <-> ssub * ComicNeue-TLF/m/sl +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{bx}{it}{ + <-> ssub * ComicNeue-TLF/b/it +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{bx}{n}{ + <-> ssub * ComicNeue-TLF/b/n +}{} + +\DeclareFontShape{OT1}{ComicNeue-TLF}{bx}{sl}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeueAngular-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeueAngular-TLF.fd new file mode 100644 index 00000000000..ab37d51ef4b --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/OT1ComicNeueAngular-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{OT1ComicNeueAngular-TLF.fd} + [2015/07/03 (autoinst) Font definitions for OT1/ComicNeueAngular-TLF.] + +\expandafter\ifx\csname ComicNeueAngular@scale\endcsname\relax + \let\ComicNeueAngular@@scale\@empty +\else + \edef\ComicNeueAngular@@scale{s*[\csname ComicNeueAngular@scale\endcsname]}% +\fi + +\DeclareFontFamily{OT1}{ComicNeueAngular-TLF}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{l}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-LightOblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{l}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Light-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{l}{it}{ + <-> ssub * ComicNeueAngular-TLF/l/sl +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{m}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Oblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{m}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{m}{it}{ + <-> ssub * ComicNeueAngular-TLF/m/sl +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{b}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Bold-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{b}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-BoldOblique-tlf-ot1 +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{b}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{bx}{n}{ + <-> ssub * ComicNeueAngular-TLF/b/n +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{bx}{sl}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{OT1}{ComicNeueAngular-TLF}{bx}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/it +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/T1ComicNeue-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/T1ComicNeue-TLF.fd new file mode 100644 index 00000000000..a10da227991 --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/T1ComicNeue-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{T1ComicNeue-TLF.fd} + [2015/07/03 (autoinst) Font definitions for T1/ComicNeue-TLF.] + +\expandafter\ifx\csname ComicNeue@scale\endcsname\relax + \let\ComicNeue@@scale\@empty +\else + \edef\ComicNeue@@scale{s*[\csname ComicNeue@scale\endcsname]}% +\fi + +\DeclareFontFamily{T1}{ComicNeue-TLF}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{l}{sl}{ + <-> \ComicNeue@@scale ComicNeue-LightOblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{l}{n}{ + <-> \ComicNeue@@scale ComicNeue-Light-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{l}{it}{ + <-> ssub * ComicNeue-TLF/l/sl +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{b}{n}{ + <-> \ComicNeue@@scale ComicNeue-Bold-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{b}{sl}{ + <-> \ComicNeue@@scale ComicNeue-BoldOblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{b}{it}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{m}{n}{ + <-> \ComicNeue@@scale ComicNeue-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{m}{sl}{ + <-> \ComicNeue@@scale ComicNeue-Oblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{m}{it}{ + <-> ssub * ComicNeue-TLF/m/sl +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{bx}{it}{ + <-> ssub * ComicNeue-TLF/b/it +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{bx}{sl}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{T1}{ComicNeue-TLF}{bx}{n}{ + <-> ssub * ComicNeue-TLF/b/n +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/T1ComicNeueAngular-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/T1ComicNeueAngular-TLF.fd new file mode 100644 index 00000000000..072f09962cf --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/T1ComicNeueAngular-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{T1ComicNeueAngular-TLF.fd} + [2015/07/03 (autoinst) Font definitions for T1/ComicNeueAngular-TLF.] + +\expandafter\ifx\csname ComicNeueAngular@scale\endcsname\relax + \let\ComicNeueAngular@@scale\@empty +\else + \edef\ComicNeueAngular@@scale{s*[\csname ComicNeueAngular@scale\endcsname]}% +\fi + +\DeclareFontFamily{T1}{ComicNeueAngular-TLF}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{m}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Oblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{m}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{m}{it}{ + <-> ssub * ComicNeueAngular-TLF/m/sl +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{b}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-BoldOblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{b}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Bold-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{b}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{l}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Light-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{l}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-LightOblique-tlf-t1 +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{l}{it}{ + <-> ssub * ComicNeueAngular-TLF/l/sl +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{bx}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/it +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{bx}{sl}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{T1}{ComicNeueAngular-TLF}{bx}{n}{ + <-> ssub * ComicNeueAngular-TLF/b/n +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeue-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeue-TLF.fd new file mode 100644 index 00000000000..32eb9a23b3e --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeue-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{TS1ComicNeue-TLF.fd} + [2015/07/03 (autoinst) Font definitions for TS1/ComicNeue-TLF.] + +\expandafter\ifx\csname ComicNeue@scale\endcsname\relax + \let\ComicNeue@@scale\@empty +\else + \edef\ComicNeue@@scale{s*[\csname ComicNeue@scale\endcsname]}% +\fi + +\DeclareFontFamily{TS1}{ComicNeue-TLF}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{l}{sl}{ + <-> \ComicNeue@@scale ComicNeue-LightOblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{l}{n}{ + <-> \ComicNeue@@scale ComicNeue-Light-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{l}{it}{ + <-> ssub * ComicNeue-TLF/l/sl +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{m}{sl}{ + <-> \ComicNeue@@scale ComicNeue-Oblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{m}{n}{ + <-> \ComicNeue@@scale ComicNeue-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{m}{it}{ + <-> ssub * ComicNeue-TLF/m/sl +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{b}{sl}{ + <-> \ComicNeue@@scale ComicNeue-BoldOblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{b}{n}{ + <-> \ComicNeue@@scale ComicNeue-Bold-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{b}{it}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{bx}{it}{ + <-> ssub * ComicNeue-TLF/b/it +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{bx}{sl}{ + <-> ssub * ComicNeue-TLF/b/sl +}{} + +\DeclareFontShape{TS1}{ComicNeue-TLF}{bx}{n}{ + <-> ssub * ComicNeue-TLF/b/n +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd b/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd new file mode 100644 index 00000000000..f2ff1bc5059 --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd @@ -0,0 +1,62 @@ +%% Generated by autoinst on 2015/07/03 +%% +\ProvidesFile{TS1ComicNeueAngular-TLF.fd} + [2015/07/03 (autoinst) Font definitions for TS1/ComicNeueAngular-TLF.] + +\expandafter\ifx\csname ComicNeueAngular@scale\endcsname\relax + \let\ComicNeueAngular@@scale\@empty +\else + \edef\ComicNeueAngular@@scale{s*[\csname ComicNeueAngular@scale\endcsname]}% +\fi + +\DeclareFontFamily{TS1}{ComicNeueAngular-TLF}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{l}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Light-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{l}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-LightOblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{l}{it}{ + <-> ssub * ComicNeueAngular-TLF/l/sl +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{m}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Oblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{m}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{m}{it}{ + <-> ssub * ComicNeueAngular-TLF/m/sl +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{b}{n}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-Bold-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{b}{sl}{ + <-> \ComicNeueAngular@@scale ComicNeueAngular-BoldOblique-tlf-ts1 +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{b}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{bx}{sl}{ + <-> ssub * ComicNeueAngular-TLF/b/sl +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{bx}{n}{ + <-> ssub * ComicNeueAngular-TLF/b/n +}{} + +\DeclareFontShape{TS1}{ComicNeueAngular-TLF}{bx}{it}{ + <-> ssub * ComicNeueAngular-TLF/b/it +}{} + +\endinput diff --git a/Master/texmf-dist/tex/latex/comicneue/comicneue.sty b/Master/texmf-dist/tex/latex/comicneue/comicneue.sty new file mode 100644 index 00000000000..c28914ce8ba --- /dev/null +++ b/Master/texmf-dist/tex/latex/comicneue/comicneue.sty @@ -0,0 +1,118 @@ +% Comic Neue for LaTeX +% +% Silke Hofstra, tex@slxh.nl +% +% This file selects either the OTF or the TYPE1 fonts based on +% the LaTeX engine used. +% +% Licenced under the LPPL v1.3 or higher. +% +\RequirePackage{ l3keys2e, xparse } +\ProvidesExplClass + {comicneue} + {2015/07/03} + {1.0} + {Craig Rozynski's Comic Neue fonts} + +\pdftex_if_engine:F{ \bool_set_true:N \comicneue_otf } + +\tl_set:Nn \comicneue_scale {1} + +\keys_define:nn{ comicneue_options }{ + default .bool_set:N = \comicneue_default, + sfdefault .bool_set:N = \comicneue_sfdefault, + nosfdefault .bool_set_inverse:N = \comicneue_sfdefault, + light .bool_set:N = \comicneue_light, + regular .bool_set_inverse:N = \comicneue_light, + angular .bool_set:N = \comicneue_angular, + scale .tl_set:N = \comicneue_scale, + opentype .bool_set:N = \comicneue_otf, + type1 .bool_set_inverse:N = \comicneue_otf, + scaled .meta:n = scale, + otf .meta:n = opentype, + t1 .meta:n = type1, +} + +\keys_set:nn{ comicneue_options }{ sfdefault, regular } +\ProcessKeysOptions{ comicneue_options } + +\bool_if:NTF \comicneue_otf { + \RequirePackage{ fontspec } + + \bool_if:NTF \comicneue_light + { \tl_set:Nn \comicneue_regstyle {Light} } + { \tl_set:Nn \comicneue_regstyle {Regular} } + + \bool_if:NTF \comicneue_angular + { \tl_set:Nn \comicneue_style {-Angular} } + { \tl_set:Nn \comicneue_style {} } + + \defaultfontfeatures { + Ligatures = TeX, + Scale = \comicneue_scale, + Extension = .otf, + BoldFont = *_Bold, + BoldItalicFont = *_Bold_Oblique } + + \bool_if:NT \comicneue_sfdefault { + \setsansfont + [ UprightFont = *_\comicneue_regstyle, + ItalicFont = *_\comicneue_regstyle _Oblique ] + {ComicNeue\comicneue_style} + } + + \newfontfamily \comicneue + [ UprightFont = *_Regular, + ItalicFont = *_Regular_Oblique ] + {ComicNeue} + + \newfontfamily \comicneuelight + [ UprightFont = *_Light, + ItalicFont = *_Light_Oblique ] + {ComicNeue} + + \newfontfamily \comicneueangular + [ UprightFont = *_Regular, + ItalicFont = *_Regular_Oblique ] + {ComicNeue-Angular} + + \newfontfamily \comicneueangularlight + [ UprightFont = *_Light, + ItalicFont = *_Light_Oblique ] + {ComicNeue-Angular} + + \defaultfontfeatures{} +}{ + \RequirePackage[ OT1, LY1, T1 ]{ fontenc } + \RequirePackage{ mweights } + + \bool_if:NTF \comicneue_light + { \tl_set:Nn \mdseries@sf {l} } + { \tl_set:Nn \mdseries@sf {m} } + + \bool_if:NTF \comicneue_angular + { \tl_set:Nn \comicneue_style {Angular} } + { \tl_set:Nn \comicneue_style {} } + + \bool_if:NT \comicneue_sfdefault + { \tl_set:Nn \sfdefault {ComicNeue\comicneue_style-TLF} } + + \bool_if:NT \comicneue_default + { \tl_set:Nx \seriesdefault{\mdseries@sf} } + + \NewDocumentCommand \comicneue {} + { \fontfamily{ComicNeue-TLF}\selectfont } + + \NewDocumentCommand \comicneuelight {} + { \fontfamily{ComicNeue-TLF}\fontseries{l}\selectfont } + + \NewDocumentCommand \comicneueangular {} + { \fontfamily{ComicNeueAngular-TLF}\selectfont } + + \NewDocumentCommand \comicneueangularlight {} + { \fontfamily{ComicNeueAngular-TLF}\fontseries{l}\selectfont } +} + +\bool_if:NT \comicneue_default { + \tl_set:Nn \familydefault {\sfdefault} +} diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index c1744c60219..24d3b7ad134 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -136,7 +136,8 @@ my @TLP_working = qw( codedoc codepage codesection codicefiscaleitaliano collcell collectbox collref colordoc colorinfo colorsep colorspace colortab colortbl colorwav colorweb colourchange - combelow combine combinedgraphics comfortaa comma commado commath comment + combelow combine combinedgraphics comfortaa comicneue + comma commado commath comment compactbib complexity components-of-TeX comprehensive computational-complexity concepts concmath concmath-fonts concprog concrete confproc constants conteq diff --git a/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc index 7daf80e9941..4eea5d5a50e 100644 --- a/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc @@ -62,6 +62,7 @@ depend cmll depend cmpica depend cmtiup depend comfortaa +depend comicneue depend concmath-fonts depend cookingsymbols depend countriesofeurope diff --git a/Master/tlpkg/tlpsrc/comicneue.tlpsrc b/Master/tlpkg/tlpsrc/comicneue.tlpsrc new file mode 100644 index 00000000000..d226d8ef378 --- /dev/null +++ b/Master/tlpkg/tlpsrc/comicneue.tlpsrc @@ -0,0 +1,2 @@ +execute addMap ComicNeue.map +execute addMap ComicNeueAngular.map |