Continue work on Chapter 4.
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
% Cross references
|
% Cross references
|
||||||
%#region
|
%#region
|
||||||
%\newcommand{\sectionRef}[2]{\ref{#1:#2}: #2}
|
\newcommand{\refPart}[2][Part~]{#1\ref{pt:#2}}
|
||||||
\newcommand{\refChapter}[2][Chapter~]{#1\ref{ch:#2}}
|
\newcommand{\refChapter}[2][Chapter~]{#1\ref{ch:#2}}
|
||||||
\newcommand{\refAppendix}[2][Appendix~]{#1\ref{ch:#2}}
|
\newcommand{\refAppendix}[2][Appendix~]{#1\ref{ch:#2}}
|
||||||
\newcommand{\refSection}[2][Section~]{#1\ref{sec:#2}}
|
\newcommand{\refSection}[2][Section~]{#1\ref{sec:#2}}
|
||||||
@@ -21,6 +21,9 @@
|
|||||||
#3{#2}\label{#4:#1}
|
#3{#2}\label{#4:#1}
|
||||||
\fi
|
\fi
|
||||||
}
|
}
|
||||||
|
\newcommand{\lblPart}[2][]{
|
||||||
|
\lblGeneral[#1]{#2}{\part}{pt}
|
||||||
|
}
|
||||||
\newcommand{\lblChapter}[2][]{
|
\newcommand{\lblChapter}[2][]{
|
||||||
\lblGeneral[#1]{#2}{\chapter}{ch}
|
\lblGeneral[#1]{#2}{\chapter}{ch}
|
||||||
}
|
}
|
||||||
|
|||||||
44
Fonts.sty
44
Fonts.sty
@@ -4,29 +4,49 @@
|
|||||||
% Specify Fonts
|
% Specify Fonts
|
||||||
%#region
|
%#region
|
||||||
\RequirePackage{fontspec}
|
\RequirePackage{fontspec}
|
||||||
|
|
||||||
% Main font: Roboto Serif
|
% Main font: Roboto Serif
|
||||||
\setmainfont{RobotoSerif}[
|
\setmainfont{RobotoSerif}[
|
||||||
Path = ./fonts/RobotoSerif/,
|
Path = PrimeTeX/fonts/RobotoSerif/,
|
||||||
Extension = .ttf,
|
Extension = .ttf,
|
||||||
UprightFont = *-Light,
|
UprightFont = *-Light,
|
||||||
BoldFont = *-SemiBold,
|
BoldFont = *-SemiBold,
|
||||||
ItalicFont = *-LightItalic,
|
ItalicFont = *-LightItalic,
|
||||||
BoldItalicFont = *-SemiBoldItalic,
|
BoldItalicFont = *-SemiBoldItalic,
|
||||||
]
|
]
|
||||||
% Headings & Titles font: Roboto Slab
|
|
||||||
\setsansfont{RobotoSlab}[
|
% Sans serif font: Roboto
|
||||||
Path = ./fonts/RobotoSlab/,
|
\setsansfont{Roboto}[
|
||||||
Extension = .ttf,
|
Path = PrimeTeX/fonts/Roboto/,
|
||||||
UprightFont = *-SemiBold,
|
|
||||||
BoldFont = *-Black,
|
|
||||||
]
|
|
||||||
% Monospace font: Roboto Mono
|
|
||||||
\setmonofont{RobotoMono}[
|
|
||||||
Path = ./fonts/RobotoMono/,
|
|
||||||
Extension = .ttf,
|
Extension = .ttf,
|
||||||
UprightFont = *-Regular,
|
UprightFont = *-Regular,
|
||||||
BoldFont = *-Bold,
|
BoldFont = *-Bold,
|
||||||
ItalicFont = *-Italic,
|
ItalicFont = *-Italic,
|
||||||
BoldItalicFont = *-BoldItalic,
|
BoldItalicFont = *-BoldItalic,
|
||||||
]
|
]
|
||||||
%#endregion
|
|
||||||
|
% Monospace font: Roboto Mono
|
||||||
|
\setmonofont{RobotoMono}[
|
||||||
|
Path = PrimeTeX/fonts/RobotoMono/,
|
||||||
|
Extension = .ttf,
|
||||||
|
UprightFont = *-Regular,
|
||||||
|
BoldFont = *-Bold,
|
||||||
|
ItalicFont = *-Italic,
|
||||||
|
BoldItalicFont = *-BoldItalic,
|
||||||
|
]
|
||||||
|
|
||||||
|
% Headings & Titles font: Roboto Slab
|
||||||
|
\newfontfamily{\sbfamily}{RobotoSlab}[
|
||||||
|
Path = PrimeTeX/fonts/RobotoSlab/,
|
||||||
|
Extension = .ttf,
|
||||||
|
UprightFont = *-SemiBold,
|
||||||
|
BoldFont = *-Black,
|
||||||
|
]
|
||||||
|
%#endregion
|
||||||
|
|
||||||
|
\newcommand{\objref}[1]{\textsf{\textbf{#1}}}
|
||||||
|
|
||||||
|
\newcommand{\serif}[1]{\textrm{#1}}
|
||||||
|
\newcommand{\sans}[1]{\textsf{#1}}
|
||||||
|
\newcommand{\mono}[1]{\texttt{#1}}
|
||||||
|
\newcommand{\slab}[1]{{\sbfamily{}#1}}
|
||||||
21
Graphics.sty
21
Graphics.sty
@@ -13,21 +13,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\cfig}[4]{%
|
\newcommand{\cfig}[4]{%
|
||||||
\begin{figure}[ht]%
|
|
||||||
|
}
|
||||||
|
\newcommand{\centerfig}[4][]{
|
||||||
|
\begin{figure}[ht]%
|
||||||
\centering%
|
\centering%
|
||||||
#4{#1}%
|
\includegraphics[keepaspectratio,#1]{#2}%
|
||||||
\caption{#3}%
|
\caption{#4}%
|
||||||
\label{fig:#2}%
|
\label{fig:#3}%
|
||||||
\end{figure}%
|
\end{figure}%
|
||||||
}
|
}
|
||||||
\newcommand{\centerfig}[3]{\cfig{#1}{#2}{#3}{\includegraphics}}
|
|
||||||
\newcommand{\centerfigw}[4][\textwidth]{
|
|
||||||
\cfig{#2}{#3}{#4}{
|
|
||||||
\includegraphics[keepaspectratio,width=#1]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\bigfig}[4][\twoscreenshotmaxwidth]{%
|
\newcommand{\bigfig}[4][\bigfloatwidth]{%
|
||||||
\bigfloat[#1]{figure}{htp}{%
|
\bigfloat[#1]{figure}{htp}{%
|
||||||
\captionsetup{type=figure}%
|
\captionsetup{type=figure}%
|
||||||
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
||||||
@@ -36,7 +33,7 @@
|
|||||||
}%
|
}%
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\doublebigfig}[7][\twoscreenshotmaxwidth]{%
|
\newcommand{\doublebigfig}[7][\bigfloatwidth]{%
|
||||||
\bigfloat[#1]{figure}{p}{%
|
\bigfloat[#1]{figure}{p}{%
|
||||||
\captionsetup{type=figure}%
|
\captionsetup{type=figure}%
|
||||||
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
||||||
|
|||||||
44
Layout.sty
44
Layout.sty
@@ -22,6 +22,9 @@
|
|||||||
|
|
||||||
\RequirePackage{calc}
|
\RequirePackage{calc}
|
||||||
\RequirePackage[strict]{changepage}
|
\RequirePackage[strict]{changepage}
|
||||||
|
% \RequirePackage{caption}
|
||||||
|
% \RequirePackage{graphicx}
|
||||||
|
% \RequirePackage{PrimeTeX/Tables}
|
||||||
|
|
||||||
\newlength{\contentwidth}
|
\newlength{\contentwidth}
|
||||||
\setlength{\contentwidth}{\textwidth+\marginparsep+\marginparwidth}
|
\setlength{\contentwidth}{\textwidth+\marginparsep+\marginparwidth}
|
||||||
@@ -30,10 +33,10 @@
|
|||||||
\setlength{\bigfloatoffset}{0.25in}
|
\setlength{\bigfloatoffset}{0.25in}
|
||||||
|
|
||||||
% Maximum width adjustment to fit 2 16x9 screensots on one page.
|
% Maximum width adjustment to fit 2 16x9 screensots on one page.
|
||||||
\newlength{\twoscreenshotmaxwidth}
|
\newlength{\bigfloatwidth}
|
||||||
\setlength{\twoscreenshotmaxwidth}{0.81in}
|
\setlength{\bigfloatwidth}{0.81in}
|
||||||
|
|
||||||
\newcommand{\bigfloat}[4][\twoscreenshotmaxwidth]{%
|
\newcommand{\bigfloat}[4][\bigfloatwidth]{%
|
||||||
\begin{#2}[#3]%
|
\begin{#2}[#3]%
|
||||||
\begin{adjustwidth*}{-#1+\bigfloatoffset}{-#1-\bigfloatoffset}%
|
\begin{adjustwidth*}{-#1+\bigfloatoffset}{-#1-\bigfloatoffset}%
|
||||||
\begin{minipage}{#1 * 2 + \textwidth}%
|
\begin{minipage}{#1 * 2 + \textwidth}%
|
||||||
@@ -43,10 +46,37 @@
|
|||||||
\end{#2}%
|
\end{#2}%
|
||||||
}
|
}
|
||||||
|
|
||||||
% Title & Heading Options
|
\RequirePackage{wrapfig}
|
||||||
%#region
|
|
||||||
\RequirePackage[sf,raggedright]{titlesec}
|
% \newcommand{\boxout}[7][\bigfloatwidth]{
|
||||||
%#endregion
|
% \bigfloat[#1]{figure}{#2}{
|
||||||
|
% \captionlistentry[figure]{#6.}
|
||||||
|
% \label{fig:#5}
|
||||||
|
|
||||||
|
% \begin{tblrBoxout}{}
|
||||||
|
% \SetCell[c=2]{c}{\sbfamily\bfseries #6}\\
|
||||||
|
% \includegraphics[#4]{#3}
|
||||||
|
% & #7\\
|
||||||
|
% \end{tblrBoxout}
|
||||||
|
% }
|
||||||
|
% }
|
||||||
|
|
||||||
|
\newcommand{\boxout}[4][\bigfloatwidth]{%
|
||||||
|
\bigfloat[#1]{figure}{#2}{%
|
||||||
|
\fcolorbox{PrimeBlue}{PrimePaleBlue}{%
|
||||||
|
\begin{minipage}{\textwidth}%
|
||||||
|
\vspace{1em}%
|
||||||
|
{\centering\textbf{#3}%
|
||||||
|
\begin{minipage}{-2em + \textwidth}%
|
||||||
|
\medskip%
|
||||||
|
#4%
|
||||||
|
\end{minipage}
|
||||||
|
\par}%
|
||||||
|
\vspace{1em}%
|
||||||
|
\end{minipage}%
|
||||||
|
}%
|
||||||
|
}%
|
||||||
|
}
|
||||||
|
|
||||||
% Header & Footer Options
|
% Header & Footer Options
|
||||||
%#region
|
%#region
|
||||||
|
|||||||
@@ -48,4 +48,6 @@
|
|||||||
|
|
||||||
\RequirePackage{PrimeTeX/Tables}
|
\RequirePackage{PrimeTeX/Tables}
|
||||||
|
|
||||||
\RequirePackage{PrimeTeX/TitlePage}
|
\RequirePackage{PrimeTeX/TitlePage}
|
||||||
|
|
||||||
|
\RequirePackage{PrimeTeX/Titles}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
\index{\glsentryname{#2}}% Add a reference to this in the index.
|
\index{\glsentryname{#2}}% Add a reference to this in the index.
|
||||||
\textbf{#3{#2}}% This is the text that appears on the page.
|
\textbf{#3{#2}}% This is the text that appears on the page.
|
||||||
\marginnote{% Create the margin note.
|
\marginnote{% Create the margin note.
|
||||||
\textsf{\textbf{%
|
{\sbfamily\textbf{%
|
||||||
\Glsentryname{#2}:% Create the title of the margin note.
|
\Glsentryname{#2}:% Create the title of the margin note.
|
||||||
}}%
|
}}%
|
||||||
\glsdesc*{#2}% Create the text of the margin note.
|
\glsdesc*{#2}% Create the text of the margin note.
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
\RequirePackage{changepage}
|
\RequirePackage{changepage}
|
||||||
\RequirePackage{ifthen}
|
\RequirePackage{ifthen}
|
||||||
|
|
||||||
\newcommand{\mfig}[5][0pt]{%
|
\newcommand{\marginfig}[5][0pt]{%
|
||||||
% This strut ensures that the margin figure is counted as part of the
|
% This strut ensures that the margin figure is counted as part of the
|
||||||
% following paragraph and is vertically aligned with it.
|
% following paragraph and is vertically aligned with it.
|
||||||
\strut%
|
\strut%
|
||||||
@@ -57,15 +57,9 @@
|
|||||||
justification = raggedleft,%
|
justification = raggedleft,%
|
||||||
}%
|
}%
|
||||||
}%
|
}%
|
||||||
{\centering#5{#2}\par}%
|
{\centering\includegraphics[keepaspectratio,#3]{#2}\par}%
|
||||||
\captionof{figure}{#4}%
|
\captionof{figure}{#5}%
|
||||||
\label{fig:#3}%
|
\label{fig:#4}%
|
||||||
}[#1]%
|
}[#1]%
|
||||||
}
|
}
|
||||||
\newcommand{\marginfig}[4][0pt]{%
|
|
||||||
\mfig[#1]{#2}{#3}{#4}{\includegraphics}%
|
|
||||||
}
|
|
||||||
\newcommand{\marginfigw}[5][0pt]{%
|
|
||||||
\mfig[#1]{#2}{#3}{#4}{\includegraphics[keepaspectratio,width=#5]}%
|
|
||||||
}
|
|
||||||
%#endregion
|
%#endregion
|
||||||
30
Tables.sty
30
Tables.sty
@@ -2,7 +2,29 @@
|
|||||||
\ProvidesPackage{PrimeTeX/Tables}[2025-07-09]
|
\ProvidesPackage{PrimeTeX/Tables}[2025-07-09]
|
||||||
|
|
||||||
% Table formatting.
|
% Table formatting.
|
||||||
%#region
|
\RequirePackage{tabularray}
|
||||||
\RequirePackage{tabularray}
|
|
||||||
\RequirePackage{csvsimple-l3}
|
\NewTblrEnviron{tblrBoxout}
|
||||||
%#endregion
|
\SetTblrInner[tblrBoxout]{
|
||||||
|
colspec = {Q[c,h]X[1,m]},
|
||||||
|
hline{1,Z} = {0.6pt,PrimeBlue},
|
||||||
|
vline{1,Z} = {0.6pt,PrimeBlue},
|
||||||
|
hline{2} = {0.0pt,PrimePaleBlue},
|
||||||
|
vline{2} = {0.0pt,PrimePaleBlue},
|
||||||
|
vborder{Z} = {leftspace=12pt},
|
||||||
|
columns = {PrimePaleBlue},
|
||||||
|
}
|
||||||
|
|
||||||
|
\NewTblrEnviron{tblrBanded}
|
||||||
|
\SetTblrOuter[tblrBanded]{
|
||||||
|
tall,
|
||||||
|
}
|
||||||
|
\SetTblrInner[tblrBanded]{
|
||||||
|
rowhead = 1,
|
||||||
|
row{odd} = {paleGray},
|
||||||
|
row{1} = {bg=pageColor, font=\bfseries},
|
||||||
|
hline{1,Z} = {0.6pt},
|
||||||
|
hline{2} = {0.4pt},
|
||||||
|
}
|
||||||
|
|
||||||
|
\RequirePackage{csvsimple-l3}
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
%#region
|
%#region
|
||||||
\newcommand{\PrimeTitlePage}[1][]{
|
\newcommand{\PrimeTitlePage}[1][]{
|
||||||
\begin{titlepage}
|
\begin{titlepage}
|
||||||
\begin{sffamily}
|
\begin{sbfamily}
|
||||||
{\raggedright\noindent\large
|
{\raggedright\noindent\large
|
||||||
\vspace*{\stretch{1}}
|
\vspace*{\stretch{1}}
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
\sDate
|
\sDate
|
||||||
\vfill
|
\vfill
|
||||||
}
|
}
|
||||||
\end{sffamily}
|
\end{sbfamily}
|
||||||
\end{titlepage}
|
\end{titlepage}
|
||||||
}
|
}
|
||||||
%#endregion
|
%#endregion
|
||||||
22
Titles.sty
Normal file
22
Titles.sty
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
|
\ProvidesPackage{PrimeTeX/Titles}[2025-07-16]
|
||||||
|
|
||||||
|
\RequirePackage[raggedright]{titlesec}
|
||||||
|
|
||||||
|
\titleformat{\part}[display]{
|
||||||
|
\normalfont\sbfamily\huge\centering
|
||||||
|
}{
|
||||||
|
Part \arabic{part}
|
||||||
|
}{20pt}{\Huge}
|
||||||
|
|
||||||
|
\titleformat{\chapter}[display]{
|
||||||
|
\normalfont\sbfamily\huge
|
||||||
|
}{
|
||||||
|
\chaptertitlename{} \thechapter
|
||||||
|
}{20pt}{\Huge}
|
||||||
|
|
||||||
|
\titleformat*{\section}{\sbfamily\Large}
|
||||||
|
\titleformat*{\subsection}{\sbfamily\large}
|
||||||
|
\titleformat*{\subsubsection}{\sbfamily}
|
||||||
|
\titleformat*{\paragraph}{\sbfamily}
|
||||||
|
\titleformat*{\subparagraph}{\sbfamily}
|
||||||
BIN
fonts/Roboto/Roboto-Black.ttf
Normal file
BIN
fonts/Roboto/Roboto-Black.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-BlackItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Bold.ttf
Normal file
BIN
fonts/Roboto/Roboto-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-BoldItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-ExtraBold.ttf
Normal file
BIN
fonts/Roboto/Roboto-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-ExtraBoldItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-ExtraLight.ttf
Normal file
BIN
fonts/Roboto/Roboto-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-ExtraLightItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Italic.ttf
Normal file
BIN
fonts/Roboto/Roboto-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Light.ttf
Normal file
BIN
fonts/Roboto/Roboto-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-LightItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Medium.ttf
Normal file
BIN
fonts/Roboto/Roboto-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-MediumItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Regular.ttf
Normal file
BIN
fonts/Roboto/Roboto-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-SemiBold.ttf
Normal file
BIN
fonts/Roboto/Roboto-SemiBold.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-SemiBoldItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-Thin.ttf
Normal file
BIN
fonts/Roboto/Roboto-Thin.ttf
Normal file
Binary file not shown.
BIN
fonts/Roboto/Roboto-ThinItalic.ttf
Normal file
BIN
fonts/Roboto/Roboto-ThinItalic.ttf
Normal file
Binary file not shown.
91
fonts/RobotoMono/OFL.txt
Normal file
91
fonts/RobotoMono/OFL.txt
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
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.
|
||||||
77
fonts/RobotoMono/README.txt
Normal file
77
fonts/RobotoMono/README.txt
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
Roboto Mono Variable Font
|
||||||
|
=========================
|
||||||
|
|
||||||
|
This download contains Roboto Mono as both variable fonts and static fonts.
|
||||||
|
|
||||||
|
Roboto Mono is a variable font with this axis:
|
||||||
|
wght
|
||||||
|
|
||||||
|
This means all the styles are contained in these files:
|
||||||
|
Roboto_Mono/RobotoMono-VariableFont_wght.ttf
|
||||||
|
Roboto_Mono/RobotoMono-Italic-VariableFont_wght.ttf
|
||||||
|
|
||||||
|
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||||
|
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||||
|
in those cases you can use the static font files for Roboto Mono:
|
||||||
|
Roboto_Mono/static/RobotoMono-Thin.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-ExtraLight.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-Light.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-Regular.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-Medium.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-SemiBold.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-Bold.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-ThinItalic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-ExtraLightItalic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-LightItalic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-Italic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-MediumItalic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-SemiBoldItalic.ttf
|
||||||
|
Roboto_Mono/static/RobotoMono-BoldItalic.ttf
|
||||||
|
|
||||||
|
Get started
|
||||||
|
-----------
|
||||||
|
|
||||||
|
1. Install the font files you want to use
|
||||||
|
|
||||||
|
2. Use your app's font picker to view the font family and all the
|
||||||
|
available styles
|
||||||
|
|
||||||
|
Learn more about variable fonts
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||||
|
https://variablefonts.typenetwork.com
|
||||||
|
https://medium.com/variable-fonts
|
||||||
|
|
||||||
|
In desktop apps
|
||||||
|
|
||||||
|
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||||
|
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||||
|
|
||||||
|
Online
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/getting_started
|
||||||
|
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||||
|
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||||
|
|
||||||
|
Installing fonts
|
||||||
|
|
||||||
|
MacOS: https://support.apple.com/en-us/HT201749
|
||||||
|
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||||
|
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||||
|
|
||||||
|
Android Apps
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/android
|
||||||
|
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
Please read the full license text (OFL.txt) to understand the permissions,
|
||||||
|
restrictions and requirements for usage, redistribution, and modification.
|
||||||
|
|
||||||
|
You can use them in your products & projects – print or digital,
|
||||||
|
commercial or otherwise.
|
||||||
|
|
||||||
|
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||||
|
license for all details.
|
||||||
BIN
fonts/RobotoMono/RobotoMono-Bold.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-BoldItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-ExtraLight.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-ExtraLightItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Italic-VariableFont_wght.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Italic-VariableFont_wght.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Italic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Light.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-LightItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Medium.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-MediumItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Regular.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-SemiBold.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-SemiBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-SemiBoldItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-Thin.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-Thin.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-ThinItalic.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-ThinItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoMono/RobotoMono-VariableFont_wght.ttf
Normal file
BIN
fonts/RobotoMono/RobotoMono-VariableFont_wght.ttf
Normal file
Binary file not shown.
93
fonts/RobotoSerif/OFL.txt
Normal file
93
fonts/RobotoSerif/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright 2020 The Roboto Serif Project Authors (https://github.com/googlefonts/RobotoSerif)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
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.
|
||||||
156
fonts/RobotoSerif/README.txt
Normal file
156
fonts/RobotoSerif/README.txt
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
Roboto Serif Variable Font
|
||||||
|
==========================
|
||||||
|
|
||||||
|
This download contains Roboto Serif as both variable fonts and static fonts.
|
||||||
|
|
||||||
|
Roboto Serif is a variable font with these axes:
|
||||||
|
GRAD
|
||||||
|
opsz
|
||||||
|
wdth
|
||||||
|
wght
|
||||||
|
|
||||||
|
This means all the styles are contained in these files:
|
||||||
|
RobotoSerif-VariableFont_GRAD,opsz,wdth,wght.ttf
|
||||||
|
RobotoSerif-Italic-VariableFont_GRAD,opsz,wdth,wght.ttf
|
||||||
|
|
||||||
|
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||||
|
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||||
|
in those cases you can use the static font files for Roboto Serif:
|
||||||
|
static/RobotoSerif-Thin.ttf
|
||||||
|
static/RobotoSerif-ExtraLight.ttf
|
||||||
|
static/RobotoSerif-Light.ttf
|
||||||
|
static/RobotoSerif-Regular.ttf
|
||||||
|
static/RobotoSerif-Medium.ttf
|
||||||
|
static/RobotoSerif-SemiBold.ttf
|
||||||
|
static/RobotoSerif-Bold.ttf
|
||||||
|
static/RobotoSerif-ExtraBold.ttf
|
||||||
|
static/RobotoSerif-Black.ttf
|
||||||
|
static/RobotoSerif_28pt-Thin.ttf
|
||||||
|
static/RobotoSerif_28pt-ExtraLight.ttf
|
||||||
|
static/RobotoSerif_28pt-Light.ttf
|
||||||
|
static/RobotoSerif_28pt-Regular.ttf
|
||||||
|
static/RobotoSerif_28pt-Medium.ttf
|
||||||
|
static/RobotoSerif_28pt-SemiBold.ttf
|
||||||
|
static/RobotoSerif_28pt-Bold.ttf
|
||||||
|
static/RobotoSerif_28pt-ExtraBold.ttf
|
||||||
|
static/RobotoSerif_28pt-Black.ttf
|
||||||
|
static/RobotoSerif_36pt-Thin.ttf
|
||||||
|
static/RobotoSerif_36pt-ExtraLight.ttf
|
||||||
|
static/RobotoSerif_36pt-Light.ttf
|
||||||
|
static/RobotoSerif_36pt-Regular.ttf
|
||||||
|
static/RobotoSerif_36pt-Medium.ttf
|
||||||
|
static/RobotoSerif_36pt-SemiBold.ttf
|
||||||
|
static/RobotoSerif_36pt-Bold.ttf
|
||||||
|
static/RobotoSerif_36pt-ExtraBold.ttf
|
||||||
|
static/RobotoSerif_36pt-Black.ttf
|
||||||
|
static/RobotoSerif_72pt-Thin.ttf
|
||||||
|
static/RobotoSerif_72pt-ExtraLight.ttf
|
||||||
|
static/RobotoSerif_72pt-Light.ttf
|
||||||
|
static/RobotoSerif_72pt-Regular.ttf
|
||||||
|
static/RobotoSerif_72pt-Medium.ttf
|
||||||
|
static/RobotoSerif_72pt-SemiBold.ttf
|
||||||
|
static/RobotoSerif_72pt-Bold.ttf
|
||||||
|
static/RobotoSerif_72pt-ExtraBold.ttf
|
||||||
|
static/RobotoSerif_72pt-Black.ttf
|
||||||
|
static/RobotoSerif_120pt-Thin.ttf
|
||||||
|
static/RobotoSerif_120pt-ExtraLight.ttf
|
||||||
|
static/RobotoSerif_120pt-Light.ttf
|
||||||
|
static/RobotoSerif_120pt-Regular.ttf
|
||||||
|
static/RobotoSerif_120pt-Medium.ttf
|
||||||
|
static/RobotoSerif_120pt-SemiBold.ttf
|
||||||
|
static/RobotoSerif_120pt-Bold.ttf
|
||||||
|
static/RobotoSerif_120pt-ExtraBold.ttf
|
||||||
|
static/RobotoSerif_120pt-Black.ttf
|
||||||
|
static/RobotoSerif-ThinItalic.ttf
|
||||||
|
static/RobotoSerif-ExtraLightItalic.ttf
|
||||||
|
static/RobotoSerif-LightItalic.ttf
|
||||||
|
static/RobotoSerif-Italic.ttf
|
||||||
|
static/RobotoSerif-MediumItalic.ttf
|
||||||
|
static/RobotoSerif-SemiBoldItalic.ttf
|
||||||
|
static/RobotoSerif-BoldItalic.ttf
|
||||||
|
static/RobotoSerif-ExtraBoldItalic.ttf
|
||||||
|
static/RobotoSerif-BlackItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-ThinItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-ExtraLightItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-LightItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-Italic.ttf
|
||||||
|
static/RobotoSerif_28pt-MediumItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-SemiBoldItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-BoldItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-ExtraBoldItalic.ttf
|
||||||
|
static/RobotoSerif_28pt-BlackItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-ThinItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-ExtraLightItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-LightItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-Italic.ttf
|
||||||
|
static/RobotoSerif_36pt-MediumItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-SemiBoldItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-BoldItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-ExtraBoldItalic.ttf
|
||||||
|
static/RobotoSerif_36pt-BlackItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-ThinItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-ExtraLightItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-LightItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-Italic.ttf
|
||||||
|
static/RobotoSerif_72pt-MediumItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-SemiBoldItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-BoldItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-ExtraBoldItalic.ttf
|
||||||
|
static/RobotoSerif_72pt-BlackItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-ThinItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-ExtraLightItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-LightItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-Italic.ttf
|
||||||
|
static/RobotoSerif_120pt-MediumItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-SemiBoldItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-BoldItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-ExtraBoldItalic.ttf
|
||||||
|
static/RobotoSerif_120pt-BlackItalic.ttf
|
||||||
|
|
||||||
|
Get started
|
||||||
|
-----------
|
||||||
|
|
||||||
|
1. Install the font files you want to use
|
||||||
|
|
||||||
|
2. Use your app's font picker to view the font family and all the
|
||||||
|
available styles
|
||||||
|
|
||||||
|
Learn more about variable fonts
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||||
|
https://variablefonts.typenetwork.com
|
||||||
|
https://medium.com/variable-fonts
|
||||||
|
|
||||||
|
In desktop apps
|
||||||
|
|
||||||
|
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||||
|
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||||
|
|
||||||
|
Online
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/getting_started
|
||||||
|
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||||
|
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||||
|
|
||||||
|
Installing fonts
|
||||||
|
|
||||||
|
MacOS: https://support.apple.com/en-us/HT201749
|
||||||
|
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||||
|
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||||
|
|
||||||
|
Android Apps
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/android
|
||||||
|
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
Please read the full license text (OFL.txt) to understand the permissions,
|
||||||
|
restrictions and requirements for usage, redistribution, and modification.
|
||||||
|
|
||||||
|
You can use them in your products & projects – print or digital,
|
||||||
|
commercial or otherwise.
|
||||||
|
|
||||||
|
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||||
|
license for all details.
|
||||||
BIN
fonts/RobotoSerif/RobotoSerif-Black.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Black.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-BlackItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Bold.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-BoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-ExtraBold.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-ExtraBoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-ExtraLight.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-ExtraLightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-ExtraLightItalic.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Italic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Light.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-LightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Medium.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-MediumItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Regular.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-SemiBold.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-SemiBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-SemiBoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-Thin.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-Thin.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/RobotoSerif-ThinItalic.ttf
Normal file
BIN
fonts/RobotoSerif/RobotoSerif-ThinItalic.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Black.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Black.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-BlackItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Bold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-BoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraBold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraBoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraLight.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraLightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Italic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Light.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-LightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Medium.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-MediumItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Regular.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-SemiBold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-SemiBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-SemiBoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Thin.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-Thin.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ThinItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_120pt-ThinItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Black.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Black.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-BlackItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Bold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-BoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraBold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraBoldItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraLight.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraLightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Italic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Light.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-LightItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Medium.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-MediumItalic.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Regular.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-SemiBold.ttf
Normal file
BIN
fonts/RobotoSerif/static/RobotoSerif_28pt-SemiBold.ttf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user