Skip to content

Commit c4e80f3

Browse files
authored
Add some more math fonts (#20)
1 parent fe6cad9 commit c4e80f3

10 files changed

Lines changed: 67 additions & 6 deletions

NOTICE

Lines changed: 60 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ THE SOFTWARE.
5353
================================================================================
5454
The SIL Open Font License Version 1.1 applies to:
5555

56-
* IBM Plex fonts in files/fonts/IBMPlex*.ttf
56+
* IBM Plex fonts in files/fonts/IBMPlex*.{otf,ttf}
5757
Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
5858
(https://github.com/IBM/plex)
5959

@@ -65,10 +65,6 @@ The SIL Open Font License Version 1.1 applies to:
6565
Copyright (c) 2010, ParaType Ltd. (http://www.paratype.com/public),
6666
with Reserved Font Names "PT Sans" and "ParaType".
6767

68-
* Fira Math fonts in files/fonts/FiraMath*.otf
69-
Copyright (C) 2018--2021 by Xiangdong Zeng <[email protected]>
70-
(https://github.com/firamath/firamath)
71-
7268
* Inria fonts in files/fonts/Inria*.ttf
7369
Copyright 2017 The Inria Sans Project Authors
7470
(https://github.com/BlackFoundryCom/InriaFonts)
@@ -102,6 +98,28 @@ The SIL Open Font License Version 1.1 applies to:
10298
Copyright (c) 2019 - Present, Microsoft Corporation,
10399
with Reserved Font Name Cascadia Code.
104100

101+
* Libertinus fonts in files/fonts/Libertinus*.otf
102+
Copyright © 2012-2024 The Libertinus Project Authors,
103+
with Reserved Font Name "Linux Libertine", "Biolinum", "STIX Fonts".
104+
105+
* Asana Math font in files/fonts/Asana-Math.otf
106+
Copyright (c) 2007-2025, Apostolos Syropoulos (<[email protected]),
107+
with Reserved Font Name Asana Math.
108+
Copyright (c) 2000 Young Ryu,
109+
with Reserved Font Name pxfonts.
110+
Copyright (c) 1997, 1999 Claudio Beccari,
111+
with Reserved Font Name gsmn1000.
112+
113+
* Pennstander fonts in files/fonts/Pennstander*.otf
114+
Copyright 2020 The Grandstander Project Authors
115+
(https://github.com/Etcetera-Type-Co/Grandstander)
116+
Copyright 2024 Julius Ross
117+
118+
* Concrete Math font in files/fonts/Concrete-Math.otf
119+
Copyright 2022-2025 Daniel Flipo
120+
121+
* Garamond Math font in files/fonts/Garamond-Math.otf
122+
105123
-----------------------------------------------------------
106124
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
107125
-----------------------------------------------------------
@@ -942,3 +960,40 @@ the source note.
942960

943961
URL: http://www.govdata.de/dl-de/by-2-0
944962
================================================================================
963+
964+
================================================================================
965+
The GUST Font License applies to:
966+
967+
* TeX Gyre Math fonts in files/fonts/texgyre*-math.otf
968+
Copyright 2013-2014 for TeX Gyre math extensions by B. Jackowski,
969+
P. Strzelczyk and P. Pianowski (on behalf of TeX Users Groups).
970+
971+
% This is version 1.0, dated 22 June 2009, of the GUST Font License.
972+
% (GUST is the Polish TeX Users Group, https://www.gust.org.pl)
973+
%
974+
% For the most recent version of this license see
975+
% https://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt
976+
% or
977+
% https://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt
978+
%
979+
% This work may be distributed and/or modified under the conditions
980+
% of the LaTeX Project Public License, either version 1.3c of this
981+
% license or (at your option) any later version.
982+
%
983+
% Please also observe the following clause:
984+
% 1) it is requested, but not legally required, that derived works be
985+
% distributed only after changing the names of the fonts comprising this
986+
% work and given in an accompanying "manifest", and that the
987+
% files comprising the Work, as listed in the manifest, also be given
988+
% new names. Any exceptions to this request are also given in the
989+
% manifest.
990+
%
991+
% We recommend the manifest be given in a separate file named
992+
% MANIFEST-<fontid>.txt, where <fontid> is some unique identification
993+
% of the font family. If a separate "readme" file accompanies the Work,
994+
% we recommend a name of the form README-<fontid>.txt.
995+
%
996+
% The latest version of the LaTeX Project Public License is in
997+
% https://www.latex-project.org/lppl.txt and version 1.3c or later
998+
% is part of all distributions of LaTeX version 2006/05/20 or later.
999+
================================================================================

files/fonts/Asana-Math.otf

426 KB
Binary file not shown.

files/fonts/Concrete-Math.otf

378 KB
Binary file not shown.

files/fonts/FiraMath-Regular.otf

-176 KB
Binary file not shown.

files/fonts/Garamond-Math.otf

805 KB
Binary file not shown.
730 KB
Binary file not shown.
575 KB
Binary file not shown.
835 KB
Binary file not shown.

files/fonts/texgyrebonum-math.otf

515 KB
Binary file not shown.

src/lib.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ files! {
6565
"data/yaml-types.yaml",
6666
"data/zoo.csv",
6767
"data/zoo.json",
68+
"fonts/Asana-Math.otf",
6869
"fonts/CascadiaCode-Regular.ttf",
69-
"fonts/FiraMath-Regular.otf",
70+
"fonts/Concrete-Math.otf",
71+
"fonts/Garamond-Math.otf",
72+
"fonts/IBMPlexMath-Regular.otf",
7073
"fonts/IBMPlexSans-Bold.ttf",
7174
"fonts/IBMPlexSans-Light.ttf",
7275
"fonts/IBMPlexSans-Medium.ttf",
@@ -78,6 +81,7 @@ files! {
7881
"fonts/InriaSerif-BoldItalic.ttf",
7982
"fonts/InriaSerif-Italic.ttf",
8083
"fonts/InriaSerif-Regular.ttf",
84+
"fonts/LibertinusMath-Regular.otf",
8185
"fonts/NotoColorEmoji-Regular-COLR.subset.ttf",
8286
"fonts/NotoSansArabic-Regular.ttf",
8387
"fonts/NotoSansMath-Regular.ttf",
@@ -92,12 +96,14 @@ files! {
9296
"fonts/NotoSerifHebrew-Bold.ttf",
9397
"fonts/NotoSerifHebrew-Regular.ttf",
9498
"fonts/PTSans-Regular.ttf",
99+
"fonts/PennstanderMath-Regular.otf",
95100
"fonts/Roboto-Regular.ttf",
96101
"fonts/STIXTwoMath-Regular.otf",
97102
"fonts/SourceSerif4-Regular.otf",
98103
"fonts/TwitterColorEmoji.ttf",
99104
"fonts/Ubuntu-Regular.ttf",
100105
"fonts/XITSMath-Regular.otf",
106+
"fonts/texgyrebonum-math.otf",
101107
"images/bad.svg",
102108
"images/base14-fonts.pdf",
103109
"images/chart-bad-deuteranopia.png",

0 commit comments

Comments
 (0)