2012-08-16 11:23:39 +00:00
|
|
|
##########################################################################
|
|
|
|
#
|
|
|
|
# LaTeX fonts natively supported by LyX.
|
|
|
|
#
|
|
|
|
# Syntax:
|
|
|
|
#
|
|
|
|
# Font <name>
|
|
|
|
# GuiName "<Gui Name>"
|
2012-09-22 15:44:00 +00:00
|
|
|
# Family <rm|sf|tt|math>
|
2018-04-22 17:06:46 +00:00
|
|
|
# FontEncoding <font encoding>
|
2012-08-16 11:23:39 +00:00
|
|
|
# SwitchDefault <0|1>
|
|
|
|
# Package <LaTeX package to be loaded>
|
|
|
|
# Requires <LaTeX package to test for>
|
2012-09-22 08:59:53 +00:00
|
|
|
# AltFonts <alternative fonts (comma-separated)>
|
|
|
|
# OT1Font <alternative font specifically for OT1 encoding>
|
|
|
|
# CompleteFont <alternative package for the complete family>
|
2012-09-22 15:44:00 +00:00
|
|
|
# NoMathFont <alternative font that does not change math>
|
2012-08-18 11:10:34 +00:00
|
|
|
# PackageOptions <general options to be passed to the package>
|
2012-08-16 11:23:39 +00:00
|
|
|
# OsfOption <option for oldstyle figure support>
|
2012-09-22 08:59:53 +00:00
|
|
|
# OsfFont <extra font for oldstyle figures>
|
2012-09-19 15:46:55 +00:00
|
|
|
# OsfDefault <0|1>
|
2020-07-09 09:39:43 +00:00
|
|
|
# OsfFontOnly <0|1>
|
2012-08-16 11:23:39 +00:00
|
|
|
# ScOption <option for true smallcaps support>
|
|
|
|
# OsfScOption <option for combined osf and true smallcaps support>
|
|
|
|
# ScaleOption <option for font scaling>
|
2020-07-09 09:41:21 +00:00
|
|
|
# ScaleCommand <command sequence to set scale value of the font>
|
2019-07-11 18:28:34 +00:00
|
|
|
# MoreOptions <0|1>
|
2012-09-19 13:46:19 +00:00
|
|
|
# Provides <features provided by the font packages (comma-separated)>
|
2013-02-09 10:00:42 +00:00
|
|
|
# Preamble
|
|
|
|
# <some arbitrary LaTeX code to be issued in the preamble>
|
|
|
|
# EndPreamble
|
2012-08-16 11:23:39 +00:00
|
|
|
# EndFont
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# NOTES:
|
|
|
|
#
|
|
|
|
# * Adding a new font results in a FILE FORMAT CHANGE. So if a new font
|
|
|
|
# is added for the LyX distribution, the according changes need to be
|
|
|
|
# done.
|
2018-04-22 17:06:46 +00:00
|
|
|
# * If FontEncoding is not specified, T1 is assumed.
|
2012-08-16 11:23:39 +00:00
|
|
|
# * "SwitchDefault 1" makes the font to be loaded by switching the default
|
|
|
|
# family to <name> (e.g., \renewcommand{\rmdefault}{cmr}), whereas
|
2012-08-18 11:10:34 +00:00
|
|
|
# Package <package> loads it via \usepackage{package}. Only one of these
|
|
|
|
# options is used per font (SwitchDefault takes precendende). Note that
|
|
|
|
# SwitchDefault uses the font name.
|
2012-09-22 08:59:53 +00:00
|
|
|
# * In addition to normal fonts, you can also define alternative fonts
|
|
|
|
# using the AltFont...EndFont tags. These alternative fonts will not
|
|
|
|
# be added to the GUI, but LyX will fall back on them under specific
|
|
|
|
# circumstances (e.g. if the main font is not available; see below).
|
|
|
|
# * If AltFonts are defined, LyX will try to load them in the defined
|
2012-08-16 11:23:39 +00:00
|
|
|
# order if the main package is not available. So
|
|
|
|
# Package mathptmx
|
2012-09-22 08:59:53 +00:00
|
|
|
# AltFonts mathptm,times
|
2012-08-16 11:23:39 +00:00
|
|
|
# will try to load mathptm if mathptmx is not available and then times
|
|
|
|
# if mathptm is not available either.
|
2012-09-22 08:59:53 +00:00
|
|
|
# AltFonts need to be defined separately using AltFont ... EndFont tags.
|
2012-08-16 11:23:39 +00:00
|
|
|
# * If Requires is set, LyX will check for this. If not, it will check
|
2012-09-22 08:59:53 +00:00
|
|
|
# for Package and AltFonts.
|
|
|
|
# * OT1Font will load the defined font if the font encoding is OT1. This is
|
|
|
|
# necessary since some newer font packages do not support this encoding.
|
2012-09-22 15:44:00 +00:00
|
|
|
# The value "none" tells LyX not to load any font in OT1 encoding.
|
2012-09-22 08:59:53 +00:00
|
|
|
# OT1Fonts need to be defined separately using AltFont ... EndFont tags.
|
|
|
|
# * The CompleteFont is loaded if the current font is selected as rm and
|
2013-02-09 10:00:42 +00:00
|
|
|
# both sf and tt are set to "default" (this allows for instance to load
|
|
|
|
# "bera" as opposed to "beraserif").
|
2012-09-22 08:59:53 +00:00
|
|
|
# CompleteFonts need to be defined separately using AltFont ... EndFont
|
|
|
|
# tags.
|
|
|
|
# * OsfFont is a font that is loaded additionally in and that provides
|
|
|
|
# Old Style Figures for a given font (e.g. eco).
|
2020-07-09 09:39:43 +00:00
|
|
|
# * If OsfFontOnly is true, then the OsfFont will replace the non-OsF
|
|
|
|
# one (only OsfFont is loaded if osf is true). Otherwise it will
|
|
|
|
# complement the non-osf font.
|
2012-08-16 11:23:39 +00:00
|
|
|
# * OsfScOption overrides any OsfOption and ScOption if both features
|
|
|
|
# are selected.
|
2019-07-14 10:08:53 +00:00
|
|
|
# * ScOption and OsfScOption are currently only supported for rm fonts.
|
2012-09-19 15:46:55 +00:00
|
|
|
# * Set OsfDefault to true for fonts which have Old Style Figures by
|
|
|
|
# default and provide an option for lining figures. Pass this option
|
|
|
|
# to OsfOption.
|
2020-07-09 09:41:21 +00:00
|
|
|
# * ScaleOption and ScaleCommand support the placeholder $$val for the
|
|
|
|
# scale value.
|
2019-07-11 18:28:34 +00:00
|
|
|
# * If MoreOptions is true, then the user can insert additional options to
|
|
|
|
# the font package via the Document Settings.
|
2013-02-09 10:00:42 +00:00
|
|
|
# * The Preamble code is output immediately after the respective font
|
|
|
|
# loading command.
|
2012-08-16 11:23:39 +00:00
|
|
|
#
|
|
|
|
##########################################################################
|
|
|
|
|
2013-02-09 10:00:42 +00:00
|
|
|
|
2012-08-16 11:23:39 +00:00
|
|
|
#
|
2012-08-16 16:04:02 +00:00
|
|
|
# ROMAN FONTS
|
2012-08-16 11:23:39 +00:00
|
|
|
#
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font ae
|
|
|
|
GuiName "AE (Almost European)"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
Package "ae,aecompl"
|
2012-09-22 08:59:53 +00:00
|
|
|
OT1Font none
|
2012-08-16 16:04:02 +00:00
|
|
|
Requires ae
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font beraserif
|
|
|
|
GuiName "Bera Serif"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
Package beraserif
|
2012-09-22 08:59:53 +00:00
|
|
|
CompleteFont bera
|
2012-08-16 16:04:02 +00:00
|
|
|
Requires bera
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-22 08:59:53 +00:00
|
|
|
AltFont bera
|
|
|
|
GuiName "Bera Serif"
|
|
|
|
Family rm
|
|
|
|
Package bera
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font bookman
|
|
|
|
GuiName "Bookman"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
Package bookman
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font ccfonts
|
|
|
|
GuiName "Concrete Roman"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
Package ccfonts
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font chancery
|
|
|
|
GuiName "Zapf Chancery"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
Package chancery
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font charter
|
2012-08-18 12:45:41 +00:00
|
|
|
GuiName "Bitstream Charter (PSNFSS)"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
|
|
|
Package charter
|
|
|
|
EndFont
|
|
|
|
|
2016-12-29 15:45:19 +00:00
|
|
|
Font cochineal
|
|
|
|
GuiName "Crimson (Cochineal)"
|
|
|
|
Family rm
|
|
|
|
OsfOption "proportional,osf"
|
|
|
|
Package cochineal
|
|
|
|
AltFonts crimson
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2016-12-29 15:45:19 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont crimson
|
|
|
|
GuiName "Crimson"
|
|
|
|
Family rm
|
|
|
|
Package crimson
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font cmr
|
|
|
|
GuiName "Computer Modern Roman"
|
|
|
|
Family rm
|
2018-04-22 17:06:46 +00:00
|
|
|
FontEncoding OT1
|
2012-08-16 16:04:02 +00:00
|
|
|
SwitchDefault 1
|
2012-09-22 08:59:53 +00:00
|
|
|
OsfFont eco
|
|
|
|
EndFont
|
|
|
|
|
2019-07-18 08:50:46 +00:00
|
|
|
Font CrimsonPro
|
|
|
|
GuiName "Crimson Pro"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package CrimsonPro
|
|
|
|
AltFonts crimson
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,LY1,TS1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font CrimsonProMedium
|
|
|
|
GuiName "Crimson Pro (Medium)"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package CrimsonPro
|
|
|
|
PackageOptions medium
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,LY1,TS1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font CrimsonProLight
|
|
|
|
GuiName "Crimson Pro (Light)"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package CrimsonPro
|
|
|
|
PackageOptions light
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,LY1,TS1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font CrimsonProExtraLight
|
|
|
|
GuiName "Crimson Pro (Extralight)"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package CrimsonPro
|
|
|
|
PackageOptions extralight
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,LY1,TS1
|
|
|
|
EndFont
|
|
|
|
|
2018-08-10 17:38:06 +00:00
|
|
|
Font DejaVuSerif
|
|
|
|
GuiName "DejaVu Serif"
|
|
|
|
Family rm
|
|
|
|
Package DejaVuSerif
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font DejaVuSerifCondensed
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "DejaVu Serif (Condensed)"
|
2018-08-10 17:38:06 +00:00
|
|
|
Family rm
|
|
|
|
Package DejaVuSerifCondensed
|
|
|
|
EndFont
|
|
|
|
|
2012-09-22 08:59:53 +00:00
|
|
|
AltFont eco
|
|
|
|
Family rm
|
|
|
|
Package eco
|
2012-08-16 16:04:02 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-08-18 14:18:03 +00:00
|
|
|
Font IBMPlexSerif
|
|
|
|
GuiName "IBM Plex Serif"
|
|
|
|
Family rm
|
|
|
|
Package plex-serif
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSerifThin
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Serif (Thin)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family rm
|
|
|
|
Package plex-serif
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions thin
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSerifExtraLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Serif (Extra Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family rm
|
|
|
|
Package plex-serif
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions extralight
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSerifLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Serif (Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family rm
|
|
|
|
Package plex-serif
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions light
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-10-02 09:28:46 +00:00
|
|
|
Font ADOBESourceSerifPro
|
2019-07-18 16:53:27 +00:00
|
|
|
GuiName "Source Serif Pro"
|
2019-07-13 15:03:25 +00:00
|
|
|
Family rm
|
|
|
|
Package sourceserifpro
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-10-02 09:28:46 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-12-04 11:14:26 +00:00
|
|
|
Font garamondx
|
|
|
|
GuiName "URW Garamond"
|
|
|
|
Family rm
|
|
|
|
OsfOption osfI
|
|
|
|
Package garamondx
|
|
|
|
Requires garamondx-fonts
|
|
|
|
AltFonts ugm
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-12-04 11:14:26 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont ugm
|
|
|
|
GuiName "URW Garamond"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
2015-02-24 06:58:40 +00:00
|
|
|
Requires ugm
|
2012-12-04 11:14:26 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-17 12:11:02 +00:00
|
|
|
Font libertine
|
2018-01-30 07:16:06 +00:00
|
|
|
GuiName "Libertine"
|
|
|
|
Family rm
|
|
|
|
OsfOption osf
|
|
|
|
Package libertineRoman
|
2018-03-02 11:17:33 +00:00
|
|
|
CompleteFont libertine-full
|
2018-01-30 07:16:06 +00:00
|
|
|
AltFonts libertine-type1,libertine-2012,libertine-legacy
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2018-01-30 07:16:06 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-03-02 11:17:33 +00:00
|
|
|
AltFont libertine-full
|
|
|
|
GuiName "Libertine"
|
|
|
|
Family rm
|
|
|
|
Package libertine
|
|
|
|
Requires libertineRoman
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2018-03-02 11:17:33 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-01-30 07:16:06 +00:00
|
|
|
AltFont libertine-type1
|
2013-02-15 09:45:11 +00:00
|
|
|
GuiName "Libertine"
|
|
|
|
Family rm
|
|
|
|
OsfOption osf
|
|
|
|
Package libertine-type1
|
|
|
|
Requires libertineMono-type1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont libertine-2012
|
2012-09-22 09:08:07 +00:00
|
|
|
GuiName "Libertine"
|
|
|
|
Family rm
|
2012-09-23 09:10:39 +00:00
|
|
|
OsfOption lining
|
|
|
|
OsfDefault 1
|
2012-09-22 09:08:07 +00:00
|
|
|
Package libertine-type1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont libertine-legacy
|
2012-08-17 12:11:02 +00:00
|
|
|
GuiName "Libertine"
|
|
|
|
Family rm
|
|
|
|
OsfOption osf
|
|
|
|
Package libertine
|
|
|
|
EndFont
|
|
|
|
|
2020-07-09 09:46:07 +00:00
|
|
|
Font libertinus
|
|
|
|
GuiName "Libertinus"
|
|
|
|
Family rm
|
|
|
|
OsfOption osf
|
|
|
|
Package libertinus
|
|
|
|
PackageOptions serif
|
|
|
|
CompleteFont libertinus-full
|
|
|
|
MoreOptions 1
|
|
|
|
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont libertinus-full
|
2020-07-09 15:39:57 +00:00
|
|
|
GuiName "Libertinus"
|
2020-07-09 09:46:07 +00:00
|
|
|
Family rm
|
|
|
|
OsfOption osf
|
|
|
|
Package libertinus
|
|
|
|
MoreOptions 1
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font lmodern
|
|
|
|
GuiName "Latin Modern Roman"
|
|
|
|
Family rm
|
|
|
|
Package lmodern
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont lmr
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-09-22 15:44:00 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont lmr
|
|
|
|
GuiName "Latin Modern Roman"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires lmodern
|
2012-08-16 16:04:02 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-23 10:30:19 +00:00
|
|
|
Font md-charter
|
2012-08-18 12:45:41 +00:00
|
|
|
GuiName "Bitstream Charter (Mathdesign)"
|
|
|
|
Family rm
|
|
|
|
OsfOption expert
|
|
|
|
ScOption expert
|
|
|
|
OsfScOption expert
|
|
|
|
Package mathdesign
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions charter
|
2012-08-18 12:45:41 +00:00
|
|
|
Requires mdbch
|
2012-09-19 13:46:19 +00:00
|
|
|
Provides amssymb,amsfonts
|
2012-09-23 10:30:19 +00:00
|
|
|
NoMathFont mdbch
|
2012-08-18 12:45:41 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-23 10:30:19 +00:00
|
|
|
AltFont mdbch
|
|
|
|
GuiName "Bitstream Charter (Mathdesign)"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires mdbch
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font md-utopia
|
2012-08-18 12:45:41 +00:00
|
|
|
GuiName "Utopia (Mathdesign)"
|
|
|
|
Family rm
|
|
|
|
OsfOption expert
|
|
|
|
ScOption expert
|
|
|
|
OsfScOption expert
|
|
|
|
Package mathdesign
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions utopia
|
2012-08-18 12:45:41 +00:00
|
|
|
Requires mdput
|
2012-09-19 13:46:19 +00:00
|
|
|
Provides amssymb,amsfonts
|
2012-09-23 10:30:19 +00:00
|
|
|
NoMathFont mdput
|
2012-08-18 12:45:41 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-23 10:30:19 +00:00
|
|
|
AltFont mdput
|
|
|
|
GuiName "Utopia (Mathdesign)"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires mdput
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font md-garamond
|
2012-12-04 11:14:26 +00:00
|
|
|
GuiName "URW Garamond (Mathdesign)"
|
2012-08-18 12:45:41 +00:00
|
|
|
Family rm
|
|
|
|
OsfOption expert
|
|
|
|
ScOption expert
|
|
|
|
OsfScOption expert
|
|
|
|
Package mathdesign
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions garamond
|
2012-08-18 12:45:41 +00:00
|
|
|
Requires mdugm
|
2012-09-19 13:46:19 +00:00
|
|
|
Provides amssymb,amsfonts
|
2012-09-23 10:30:19 +00:00
|
|
|
NoMathFont mdugm
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont mdugm
|
2012-12-04 11:14:26 +00:00
|
|
|
GuiName "URW Garamond (Mathdesign)"
|
2012-09-23 10:30:19 +00:00
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires mdugm
|
2012-08-18 12:45:41 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-19 15:46:55 +00:00
|
|
|
Font minionpro
|
|
|
|
GuiName "Minion Pro"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package MinionPro
|
|
|
|
Provides amssymb,amsfonts
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont minionpro-nomath
|
2019-07-11 18:28:34 +00:00
|
|
|
MoreOptions 1
|
2012-09-22 15:44:00 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont minionpro-nomath
|
|
|
|
GuiName "Minion Pro"
|
|
|
|
Family rm
|
|
|
|
OsfOption lf
|
|
|
|
OsfDefault 1
|
|
|
|
Package MinionPro
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions onlytext
|
2012-09-19 15:46:55 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 11:23:39 +00:00
|
|
|
Font newcent
|
|
|
|
GuiName "New Century Schoolbook"
|
|
|
|
Family rm
|
|
|
|
Package newcent
|
|
|
|
EndFont
|
|
|
|
|
2019-04-07 09:05:42 +00:00
|
|
|
Font NotoSerifRegular
|
2019-07-18 06:41:00 +00:00
|
|
|
GuiName "Noto Serif"
|
|
|
|
Family rm
|
|
|
|
Package noto-serif
|
|
|
|
OsfOption osf
|
|
|
|
MoreOptions 1
|
|
|
|
CompleteFont noto
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont noto
|
|
|
|
GuiName "Noto Serif"
|
|
|
|
Family rm
|
|
|
|
Package noto
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSerifMedium
|
2019-07-18 06:41:00 +00:00
|
|
|
GuiName "Noto Serif (Medium)"
|
|
|
|
Family rm
|
|
|
|
Package noto-serif
|
|
|
|
PackageOptions medium
|
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSerifThin
|
2019-07-18 06:41:00 +00:00
|
|
|
GuiName "Noto Serif (Thin)"
|
|
|
|
Family rm
|
|
|
|
Package noto-serif
|
|
|
|
PackageOptions thin
|
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSerifLight
|
2019-07-18 06:41:00 +00:00
|
|
|
GuiName "Noto Serif (Light)"
|
|
|
|
Family rm
|
|
|
|
Package noto-serif
|
|
|
|
PackageOptions light
|
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSerifExtralight
|
2019-07-18 06:41:00 +00:00
|
|
|
GuiName "Noto Serif (Extralight)"
|
2017-04-04 21:02:47 +00:00
|
|
|
Family rm
|
2019-07-18 06:41:00 +00:00
|
|
|
Package noto-serif
|
|
|
|
PackageOptions extralight
|
|
|
|
OsfDefault 0
|
2019-07-13 15:03:25 +00:00
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2017-04-04 21:02:47 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font palatino
|
|
|
|
GuiName "Palatino"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
2012-08-16 16:04:02 +00:00
|
|
|
OsfOption osf
|
|
|
|
ScOption sc
|
|
|
|
OsfScOption osf
|
|
|
|
Package mathpazo
|
2012-09-22 09:05:47 +00:00
|
|
|
AltFonts mathpple,palatino-sty
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont ppl
|
2012-08-16 16:04:02 +00:00
|
|
|
Requires psnfss
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-08-16 16:04:02 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-22 08:59:53 +00:00
|
|
|
AltFont mathpple
|
|
|
|
GuiName "Palatino"
|
|
|
|
Family rm
|
|
|
|
Package mathpple
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont ppl
|
2012-09-22 08:59:53 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-22 09:05:47 +00:00
|
|
|
AltFont palatino-sty
|
2012-09-22 08:59:53 +00:00
|
|
|
GuiName "Palatino"
|
|
|
|
Family rm
|
|
|
|
Package palatino
|
|
|
|
EndFont
|
|
|
|
|
2012-09-22 15:44:00 +00:00
|
|
|
AltFont ppl
|
|
|
|
GuiName "Palatino"
|
|
|
|
Family rm
|
|
|
|
OsfFont pplj
|
2020-07-09 09:39:43 +00:00
|
|
|
OsfFontOnly 1
|
2012-09-22 15:44:00 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont pplj
|
|
|
|
GuiName "Palatino"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
2018-03-10 18:59:48 +00:00
|
|
|
Font PTSerif-TLF
|
2019-07-18 16:49:42 +00:00
|
|
|
GuiName "PT Serif"
|
2018-03-10 18:59:48 +00:00
|
|
|
Family rm
|
|
|
|
Requires paratype
|
|
|
|
Package PTSerif
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font times
|
|
|
|
GuiName "Times Roman"
|
|
|
|
Family rm
|
|
|
|
Package mathptmx
|
2012-09-22 09:05:47 +00:00
|
|
|
AltFonts mathptm,times-sty
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont ptm
|
2012-08-16 16:04:02 +00:00
|
|
|
Requires psnfss
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-22 08:59:53 +00:00
|
|
|
AltFont mathptm
|
|
|
|
GuiName "Times Roman"
|
|
|
|
Family rm
|
|
|
|
Package mathptm
|
2012-09-22 15:44:00 +00:00
|
|
|
NoMathFont ptm
|
2012-09-22 08:59:53 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-22 09:05:47 +00:00
|
|
|
AltFont times-sty
|
2012-09-22 08:59:53 +00:00
|
|
|
GuiName "Times Roman"
|
|
|
|
Family rm
|
|
|
|
Package times
|
|
|
|
EndFont
|
|
|
|
|
2012-09-22 15:44:00 +00:00
|
|
|
AltFont ptm
|
|
|
|
GuiName "Times Roman"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
2012-08-19 09:57:48 +00:00
|
|
|
Font tgbonum
|
|
|
|
GuiName "TeX Gyre Bonum"
|
|
|
|
Family rm
|
|
|
|
Package tgbonum
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font tgchorus
|
|
|
|
GuiName "TeX Gyre Chorus"
|
|
|
|
Family rm
|
|
|
|
Package tgchorus
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font tgpagella
|
|
|
|
GuiName "TeX Gyre Pagella"
|
|
|
|
Family rm
|
|
|
|
Package tgpagella
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font tgschola
|
|
|
|
GuiName "TeX Gyre Schola"
|
|
|
|
Family rm
|
|
|
|
Package tgschola
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font tgtermes
|
|
|
|
GuiName "TeX Gyre Termes"
|
|
|
|
Family rm
|
|
|
|
Package tgtermes
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 11:23:39 +00:00
|
|
|
# fourier supersedes utopia.sty, but does
|
|
|
|
# not work with OT1 encoding.
|
|
|
|
Font utopia
|
2012-08-18 12:45:41 +00:00
|
|
|
GuiName "Utopia (Fourier)"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family rm
|
|
|
|
OsfOption oldstyle
|
|
|
|
ScOption expert
|
|
|
|
Package fourier
|
2012-09-22 08:59:53 +00:00
|
|
|
AltFonts utopia-sty
|
|
|
|
OT1Font utopia-sty
|
2012-09-23 10:30:19 +00:00
|
|
|
NoMathFont futs
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-09-22 08:59:53 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont utopia-sty
|
|
|
|
GuiName "Utopia (Fourier)"
|
|
|
|
Family rm
|
|
|
|
Package utopia
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-23 10:30:19 +00:00
|
|
|
AltFont futs
|
|
|
|
GuiName "Utopia (Fourier)"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
OsfFont futj
|
2020-07-09 09:39:43 +00:00
|
|
|
OsfFontOnly 1
|
2012-09-23 10:30:19 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont futj
|
|
|
|
GuiName "Utopia (Fourier)"
|
|
|
|
Family rm
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
2018-03-15 14:44:49 +00:00
|
|
|
Font xcharter
|
|
|
|
GuiName "Bitstream Charter (XCharter)"
|
|
|
|
Family rm
|
|
|
|
Package XCharter
|
|
|
|
OsfOption osf
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2018-03-15 14:44:49 +00:00
|
|
|
EndFont
|
2012-08-16 11:23:39 +00:00
|
|
|
|
|
|
|
#
|
2012-08-16 16:04:02 +00:00
|
|
|
# SANS SERIF FONTS
|
2012-08-16 11:23:39 +00:00
|
|
|
#
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font avant
|
|
|
|
GuiName "Avant Garde"
|
|
|
|
Family sf
|
|
|
|
Package avant
|
|
|
|
EndFont
|
2012-08-16 11:23:39 +00:00
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font berasans
|
|
|
|
GuiName "Bera Sans"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family sf
|
2012-08-16 16:04:02 +00:00
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package berasans
|
|
|
|
Requires bera
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-09-25 09:07:33 +00:00
|
|
|
Font biolinum
|
2018-01-30 07:16:06 +00:00
|
|
|
GuiName "Biolinum"
|
|
|
|
Family sf
|
|
|
|
OsfOption osf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package biolinum
|
|
|
|
AltFonts biolinum-type1,biolinum-2012
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2018-01-30 07:16:06 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont biolinum-type1
|
2013-02-15 09:45:11 +00:00
|
|
|
GuiName "Biolinum"
|
|
|
|
Family sf
|
|
|
|
OsfOption osf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package biolinum-type1
|
|
|
|
Requires libertineMono-type1
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2013-02-15 09:45:11 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont biolinum-2012
|
2012-09-25 09:07:33 +00:00
|
|
|
GuiName "Biolinum"
|
|
|
|
Family sf
|
|
|
|
OsfOption lining
|
|
|
|
OsfDefault 1
|
|
|
|
Package biolinum-type1
|
2019-07-14 13:08:01 +00:00
|
|
|
MoreOptions 1
|
2012-09-25 09:07:33 +00:00
|
|
|
EndFont
|
|
|
|
|
2019-07-14 19:44:58 +00:00
|
|
|
Font cantarell
|
2019-07-15 06:02:11 +00:00
|
|
|
GuiName "Cantarell"
|
2019-07-14 19:44:58 +00:00
|
|
|
Family sf
|
|
|
|
OsfOption oldstyle
|
|
|
|
Package cantarell
|
2019-07-18 05:10:31 +00:00
|
|
|
PackageOptions "defaultsans"
|
2019-07-14 19:44:58 +00:00
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding T2A,T1,OT1
|
|
|
|
ScaleOption scale=$$val
|
|
|
|
EndFont
|
|
|
|
|
2019-07-17 16:02:22 +00:00
|
|
|
Font ChivoThin
|
|
|
|
GuiName "Chivo (Thin)"
|
|
|
|
Family sf
|
|
|
|
OsfOption oldstyle
|
|
|
|
Package Chivo
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions "thin"
|
2019-07-17 16:02:22 +00:00
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,LY1,T1,TS1
|
|
|
|
ScaleOption scale=$$val
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font ChivoLight
|
|
|
|
GuiName "Chivo (Light)"
|
|
|
|
Family sf
|
|
|
|
OsfOption oldstyle
|
|
|
|
Package Chivo
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions "light"
|
2019-07-17 16:02:22 +00:00
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,LY1,T1,TS1
|
|
|
|
ScaleOption scale=$$val
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font Chivo
|
|
|
|
GuiName "Chivo"
|
|
|
|
Family sf
|
|
|
|
OsfOption oldstyle
|
|
|
|
Package Chivo
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,LY1,T1,TS1
|
|
|
|
ScaleOption scale=$$val
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font ChivoMedium
|
|
|
|
GuiName "Chivo (Medium)"
|
|
|
|
Family sf
|
|
|
|
OsfOption oldstyle
|
|
|
|
Package Chivo
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions "medium"
|
2019-07-17 16:02:22 +00:00
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,LY1,T1,TS1
|
|
|
|
ScaleOption scale=$$val
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font cmbr
|
|
|
|
GuiName "CM Bright"
|
|
|
|
Family sf
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires cmbright
|
|
|
|
EndFont
|
2012-08-16 11:23:39 +00:00
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font cmss
|
|
|
|
GuiName "Computer Modern Sans"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family sf
|
2018-04-22 17:06:46 +00:00
|
|
|
FontEncoding OT1
|
2012-08-16 11:23:39 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
2018-08-10 17:38:06 +00:00
|
|
|
Font DejaVuSans
|
|
|
|
GuiName "DejaVu Sans"
|
|
|
|
Family sf
|
|
|
|
Package DejaVuSans
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font DejaVuSansCondensed
|
2019-07-18 16:49:42 +00:00
|
|
|
GuiName "DejaVu Sans (Condensed)"
|
2018-08-10 17:38:06 +00:00
|
|
|
Family sf
|
|
|
|
Package DejaVuSansCondensed
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
EndFont
|
|
|
|
|
2019-07-15 11:29:09 +00:00
|
|
|
Font FiraSans
|
|
|
|
GuiName "Fira Sans"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font FiraSansBook
|
|
|
|
GuiName "Fira Sans (Book)"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions book
|
2019-07-15 11:29:09 +00:00
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font FiraSansLight
|
|
|
|
GuiName "Fira Sans (Light)"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions light
|
2019-07-15 11:29:09 +00:00
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font FiraSansExtralight
|
|
|
|
GuiName "Fira Sans (Extralight)"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions extralight
|
2019-07-15 11:29:09 +00:00
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font FiraSansUltralight
|
|
|
|
GuiName "Fira Sans (Ultralight)"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions ultralight
|
2019-07-15 11:29:09 +00:00
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font FiraSansThin
|
|
|
|
GuiName "Fira Sans (Thin)"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraSans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions thin
|
2019-07-15 11:29:09 +00:00
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
2018-08-18 14:18:03 +00:00
|
|
|
Font IBMPlexSans
|
|
|
|
GuiName "IBM Plex Sans"
|
|
|
|
Family sf
|
|
|
|
Package plex-sans
|
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSansCondensed
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Sans (Condensed)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family sf
|
|
|
|
Package plex-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions condensed
|
2018-08-18 14:18:03 +00:00
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSansThin
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Sans (Thin)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family sf
|
|
|
|
Package plex-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions thin
|
2018-08-18 14:18:03 +00:00
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSansExtraLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Sans (Extra Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family sf
|
|
|
|
Package plex-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions extralight
|
2018-08-18 14:18:03 +00:00
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexSansLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Sans (Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family sf
|
|
|
|
Package plex-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions light
|
2018-08-18 14:18:03 +00:00
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
2019-07-14 07:09:46 +00:00
|
|
|
Font ADOBESourceSansPro
|
2019-07-18 16:53:27 +00:00
|
|
|
GuiName "Source Sans Pro"
|
2019-07-14 07:09:46 +00:00
|
|
|
Family sf
|
|
|
|
Package sourcesanspro
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-10-02 09:28:46 +00:00
|
|
|
EndFont
|
|
|
|
|
2012-08-16 11:23:39 +00:00
|
|
|
Font helvet
|
|
|
|
GuiName "Helvetica"
|
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package helvet
|
|
|
|
Requires psnfss
|
|
|
|
EndFont
|
|
|
|
|
2013-03-18 23:57:37 +00:00
|
|
|
Font iwona
|
|
|
|
GuiName "Iwona"
|
|
|
|
Family sf
|
|
|
|
Requires iwona
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font iwonal
|
|
|
|
GuiName "Iwona (Light)"
|
|
|
|
Family sf
|
|
|
|
Requires iwona
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font iwonac
|
|
|
|
GuiName "Iwona (Condensed)"
|
|
|
|
Family sf
|
|
|
|
Requires iwona
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font iwonalc
|
|
|
|
GuiName "Iwona (Light Condensed)"
|
|
|
|
Family sf
|
|
|
|
Requires iwona
|
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
2013-02-10 23:47:09 +00:00
|
|
|
Font kurier
|
2013-02-11 08:47:08 +00:00
|
|
|
GuiName "Kurier"
|
|
|
|
Family sf
|
2013-02-12 19:33:42 +00:00
|
|
|
Requires kurier
|
2013-02-11 08:47:08 +00:00
|
|
|
SwitchDefault 1
|
2013-02-10 23:47:09 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font kurierl
|
2013-02-11 08:47:08 +00:00
|
|
|
GuiName "Kurier (Light)"
|
|
|
|
Family sf
|
2013-02-12 19:33:42 +00:00
|
|
|
Requires kurier
|
|
|
|
SwitchDefault 1
|
2013-02-10 23:47:09 +00:00
|
|
|
EndFont
|
|
|
|
|
2013-02-12 19:33:42 +00:00
|
|
|
Font kurierc
|
2013-02-11 08:47:08 +00:00
|
|
|
GuiName "Kurier (Condensed)"
|
|
|
|
Family sf
|
|
|
|
Requires kurier
|
2013-02-12 19:33:42 +00:00
|
|
|
SwitchDefault 1
|
2013-02-10 23:47:09 +00:00
|
|
|
EndFont
|
|
|
|
|
2013-02-12 19:33:42 +00:00
|
|
|
Font kurierlc
|
2013-02-11 08:47:08 +00:00
|
|
|
GuiName "Kurier (Light Condensed)"
|
|
|
|
Family sf
|
|
|
|
Requires kurier
|
2013-02-12 19:33:42 +00:00
|
|
|
SwitchDefault 1
|
2013-02-10 23:47:09 +00:00
|
|
|
EndFont
|
|
|
|
|
2020-07-09 09:46:07 +00:00
|
|
|
Font LibertinusSans-LF
|
|
|
|
GuiName "Libertinus Sans"
|
|
|
|
Family sf
|
|
|
|
Requires libertinus
|
|
|
|
SwitchDefault 1
|
|
|
|
OsfFont LibertinusSans-OsF
|
|
|
|
OsfFontOnly 1
|
|
|
|
ScaleCommand \renewcommand*{\LibertinusSans@scale}{$$val}
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont LibertinusSans-OsF
|
|
|
|
GuiName "Libertinus Sans"
|
|
|
|
Family sf
|
|
|
|
Requires libertinus
|
|
|
|
SwitchDefault 1
|
|
|
|
ScaleCommand \renewcommand*{\LibertinusSans@scale}{$$val}
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font lmss
|
|
|
|
GuiName "Latin Modern Sans"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family sf
|
2012-08-16 16:04:02 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
Requires lmodern
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
2019-04-07 09:05:42 +00:00
|
|
|
Font NotoSansRegular
|
2019-07-18 06:26:59 +00:00
|
|
|
GuiName "Noto Sans"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-sans
|
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-18 06:41:00 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSansMedium
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "Noto Sans (Medium)"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions medium
|
2019-04-07 09:05:42 +00:00
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-18 06:41:00 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSansThin
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "Noto Sans (Thin)"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions thin
|
2019-04-07 09:05:42 +00:00
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-18 06:41:00 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSansLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "Noto Sans (Light)"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions light
|
2019-04-07 09:05:42 +00:00
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-18 06:41:00 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font NotoSansExtralight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "Noto Sans (Extralight)"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-sans
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions extralight
|
2019-04-07 09:05:42 +00:00
|
|
|
OsfDefault 0
|
|
|
|
OsfOption osf
|
2019-07-18 06:41:00 +00:00
|
|
|
MoreOptions 1
|
2017-04-04 21:02:47 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-03-10 18:59:48 +00:00
|
|
|
Font PTSans-TLF
|
2019-07-18 16:49:42 +00:00
|
|
|
GuiName "PT Sans"
|
2018-03-10 18:59:48 +00:00
|
|
|
Family sf
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Requires paratype
|
|
|
|
Package PTSans
|
|
|
|
EndFont
|
|
|
|
|
2012-08-19 09:57:48 +00:00
|
|
|
Font tgadventor
|
|
|
|
GuiName "TeX Gyre Adventor"
|
|
|
|
Family sf
|
|
|
|
Package tgadventor
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font tgheros
|
|
|
|
GuiName "TeX Gyre Heros"
|
|
|
|
Family sf
|
|
|
|
Package tgheros
|
|
|
|
EndFont
|
|
|
|
|
2012-10-21 16:55:24 +00:00
|
|
|
Font uop
|
|
|
|
GuiName "URW Classico (Optima)"
|
|
|
|
Family sf
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires urwclassico
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
#
|
|
|
|
# MONOSPACED FONTS
|
|
|
|
#
|
|
|
|
|
|
|
|
Font beramono
|
|
|
|
GuiName "Bera Mono"
|
|
|
|
Family tt
|
2012-08-16 11:23:39 +00:00
|
|
|
ScaleOption scaled=$$val
|
2012-08-16 16:04:02 +00:00
|
|
|
Package beramono
|
2012-08-16 11:23:39 +00:00
|
|
|
Requires bera
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font cmtl
|
|
|
|
GuiName "CM Typewriter Light"
|
|
|
|
Family tt
|
2012-08-16 11:23:39 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
Requires cmbright
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font cmtt
|
|
|
|
GuiName "Computer Modern Typewriter"
|
|
|
|
Family tt
|
2018-04-22 17:06:46 +00:00
|
|
|
FontEncoding OT1
|
2012-08-16 11:23:39 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font courier
|
|
|
|
GuiName "Courier"
|
|
|
|
Family tt
|
|
|
|
Package courier
|
|
|
|
Requires psnfss
|
|
|
|
EndFont
|
|
|
|
|
2018-08-10 17:38:06 +00:00
|
|
|
Font DejaVuSansMono
|
|
|
|
GuiName "DejaVu Sans Mono"
|
|
|
|
Family tt
|
|
|
|
Package DejaVuSansMono
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
EndFont
|
|
|
|
|
2019-07-15 11:29:09 +00:00
|
|
|
Font FiraMono
|
|
|
|
GuiName "Fira Mono"
|
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package FiraMono
|
|
|
|
OsfDefault 1
|
|
|
|
OsfOption lf
|
|
|
|
MoreOptions 1
|
|
|
|
FontEncoding OT1,T1,TS1,LY1,LGR
|
|
|
|
EndFont
|
|
|
|
|
2018-08-18 14:18:03 +00:00
|
|
|
Font IBMPlexMono
|
|
|
|
GuiName "IBM Plex Mono"
|
|
|
|
Family tt
|
|
|
|
Package plex-mono
|
|
|
|
ScaleOption scale=$$val
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexMonoThin
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Mono (Thin)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family tt
|
|
|
|
Package plex-mono
|
|
|
|
ScaleOption scale=$$val
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions thin
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexMonoExtraLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Mono (Extra Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family tt
|
|
|
|
Package plex-mono
|
|
|
|
ScaleOption scale=$$val
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions extralight
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font IBMPlexMonoLight
|
2019-07-15 10:49:29 +00:00
|
|
|
GuiName "IBM Plex Mono (Light)"
|
2018-08-18 14:18:03 +00:00
|
|
|
Family tt
|
|
|
|
Package plex-mono
|
|
|
|
ScaleOption scale=$$val
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions light
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-08-18 14:18:03 +00:00
|
|
|
EndFont
|
|
|
|
|
2019-07-14 07:09:46 +00:00
|
|
|
Font ADOBESourceCodePro
|
2019-07-18 16:53:27 +00:00
|
|
|
GuiName "Source Code Pro"
|
2019-07-14 07:09:46 +00:00
|
|
|
Family tt
|
|
|
|
Package sourcecodepro
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2018-10-02 09:28:46 +00:00
|
|
|
EndFont
|
|
|
|
|
2013-02-15 09:45:11 +00:00
|
|
|
Font libertine-mono
|
2018-01-30 07:16:06 +00:00
|
|
|
GuiName "Libertine Mono"
|
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package libertineMono
|
|
|
|
AltFonts libertine-mono-type1
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
AltFont libertine-mono-type1
|
2013-02-15 09:45:11 +00:00
|
|
|
GuiName "Libertine Mono"
|
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package libertineMono-type1
|
|
|
|
EndFont
|
|
|
|
|
2020-07-09 09:46:07 +00:00
|
|
|
Font LibertinusMono-TLF
|
|
|
|
GuiName "Libertinus Mono"
|
|
|
|
Family tt
|
|
|
|
Requires libertinus
|
|
|
|
SwitchDefault 1
|
|
|
|
ScaleCommand \renewcommand*{\LibertinusMono@scale}{$$val}
|
|
|
|
EndFont
|
|
|
|
|
2012-08-16 16:04:02 +00:00
|
|
|
Font lmtt
|
|
|
|
GuiName "Latin Modern Typewriter"
|
2012-08-16 11:23:39 +00:00
|
|
|
Family tt
|
2012-08-16 16:04:02 +00:00
|
|
|
SwitchDefault 1
|
|
|
|
Requires lmodern
|
2012-08-16 11:23:39 +00:00
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font luximono
|
|
|
|
GuiName "LuxiMono"
|
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package luximono
|
|
|
|
EndFont
|
2012-08-17 16:24:18 +00:00
|
|
|
|
2019-04-07 09:05:42 +00:00
|
|
|
Font NotoMonoRegular
|
2019-07-18 06:26:59 +00:00
|
|
|
GuiName "Noto Mono"
|
2019-04-07 09:05:42 +00:00
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Package noto-mono
|
2019-07-13 16:24:07 +00:00
|
|
|
OsfOption osf
|
2019-07-13 12:55:59 +00:00
|
|
|
MoreOptions 1
|
2019-04-07 09:05:42 +00:00
|
|
|
EndFont
|
|
|
|
|
2018-03-10 18:59:48 +00:00
|
|
|
Font PTMono-TLF
|
2019-07-18 16:49:42 +00:00
|
|
|
GuiName "PT Mono"
|
2018-03-10 18:59:48 +00:00
|
|
|
Family tt
|
|
|
|
ScaleOption scaled=$$val
|
|
|
|
Requires paratype
|
|
|
|
Package PTMono
|
|
|
|
EndFont
|
|
|
|
|
2012-08-19 09:57:48 +00:00
|
|
|
Font tgcursor
|
|
|
|
GuiName "TeX Gyre Cursor"
|
|
|
|
Family tt
|
|
|
|
Package tgcursor
|
|
|
|
EndFont
|
|
|
|
|
2012-08-17 16:24:18 +00:00
|
|
|
Font txtt
|
|
|
|
GuiName "TX Typewriter"
|
|
|
|
Family tt
|
|
|
|
SwitchDefault 1
|
|
|
|
Requires txfonts
|
|
|
|
EndFont
|
2012-09-22 15:44:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# MATH FONTS
|
|
|
|
#
|
|
|
|
|
2016-12-29 15:45:19 +00:00
|
|
|
Font cochineal-ntxm
|
|
|
|
GuiName "Crimson (New TX)"
|
|
|
|
Family math
|
|
|
|
Package newtxmath
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions cochineal
|
2016-12-29 15:45:19 +00:00
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|
|
|
|
|
2012-09-22 15:44:00 +00:00
|
|
|
Font eulervm
|
|
|
|
GuiName "Euler VM"
|
|
|
|
Family math
|
|
|
|
Package eulervm
|
2012-09-23 10:30:19 +00:00
|
|
|
EndFont
|
2012-09-23 16:33:04 +00:00
|
|
|
|
2012-12-04 11:55:47 +00:00
|
|
|
Font garamondx-ntxm
|
|
|
|
GuiName "URW Garamond (New TX)"
|
|
|
|
Family math
|
|
|
|
Package newtxmath
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions garamondx
|
2012-12-04 11:55:47 +00:00
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|
|
|
|
|
2013-03-18 23:57:37 +00:00
|
|
|
Font iwona-math
|
|
|
|
GuiName "Iwona (Math)"
|
|
|
|
Family math
|
|
|
|
Requires iwona
|
|
|
|
Preamble
|
|
|
|
% store roman font
|
|
|
|
\let\origrmdefault\rmdefault
|
|
|
|
\usepackage[math]{iwona}
|
|
|
|
% reset stored roman font
|
|
|
|
\renewcommand{\rmdefault}{\origrmdefault}
|
|
|
|
EndPreamble
|
|
|
|
EndFont
|
|
|
|
|
2013-02-10 23:47:09 +00:00
|
|
|
Font kurier-math
|
2013-02-11 08:47:08 +00:00
|
|
|
GuiName "Kurier (Math)"
|
|
|
|
Family math
|
|
|
|
Requires kurier
|
2013-02-10 23:47:09 +00:00
|
|
|
Preamble
|
2013-02-15 09:45:11 +00:00
|
|
|
% store roman font
|
|
|
|
\let\origrmdefault\rmdefault
|
2013-02-11 08:47:08 +00:00
|
|
|
\usepackage[math]{kurier}
|
2013-02-15 09:45:11 +00:00
|
|
|
% reset stored roman font
|
|
|
|
\renewcommand{\rmdefault}{\origrmdefault}
|
2013-02-10 23:47:09 +00:00
|
|
|
EndPreamble
|
|
|
|
EndFont
|
|
|
|
|
2012-09-23 16:33:04 +00:00
|
|
|
Font libertine-ntxm
|
|
|
|
GuiName "Libertine (New TX)"
|
|
|
|
Family math
|
|
|
|
Package newtxmath
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions libertine
|
2012-09-23 16:33:04 +00:00
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|
|
|
|
|
2020-07-09 16:59:54 +00:00
|
|
|
Font libertinusmath
|
|
|
|
GuiName "Libertinus Math"
|
|
|
|
Family math
|
|
|
|
Package libertinust1math
|
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|
|
|
|
|
2012-09-23 16:33:04 +00:00
|
|
|
Font minion-ntxm
|
|
|
|
GuiName "Minion Pro (New TX)"
|
|
|
|
Family math
|
|
|
|
Package newtxmath
|
2019-07-17 16:52:58 +00:00
|
|
|
PackageOptions minion
|
2012-09-23 16:33:04 +00:00
|
|
|
Requires minion2newtx
|
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|
|
|
|
|
|
|
|
Font newtxmath
|
|
|
|
GuiName "Times Roman (New TX)"
|
|
|
|
Family math
|
|
|
|
Package newtxmath
|
|
|
|
Provides amssymb,amsfonts
|
|
|
|
EndFont
|