]> git.lyx.org Git - lyx.git/blob - lib/latexfonts
ctest update.
[lyx.git] / lib / latexfonts
1 ##########################################################################
2 #
3 # LaTeX fonts natively supported by LyX.
4 #
5 # Syntax:
6 #
7 # Font <name>
8 #       GuiName            "<Gui Name>"
9 #       Family             <rm|sf|tt|math>
10 #       FontEncoding       <font encoding>
11 #       SwitchDefault      <0|1>
12 #       Package            <LaTeX package to be loaded>
13 #       Requires           <LaTeX package to test for>
14 #       AltFonts           <alternative fonts (comma-separated)>
15 #       OT1Font            <alternative font specifically for OT1 encoding>
16 #       CompleteFont       <alternative package for the complete family>
17 #       NoMathFont         <alternative font that does not change math>
18 #       PackageOptions     <general options to be passed to the package>
19 #       OsfOption          <option for oldstyle figure support>
20 #       OsfFont            <extra font for oldstyle figures>
21 #       OsfDefault         <0|1>
22 #       ScOption           <option for true smallcaps support>
23 #       OsfScOption        <option for combined osf and true smallcaps support>
24 #       ScaleOption        <option for font scaling>
25 #       Provides           <features provided by the font packages (comma-separated)>
26 #       Preamble
27 #         <some arbitrary LaTeX code to be issued in the preamble>
28 #       EndPreamble
29 # EndFont
30 #
31 #
32 # NOTES:
33 #
34 # * Adding a new font results in a FILE FORMAT CHANGE. So if a new font
35 #   is added for the LyX distribution, the according changes need to be
36 #   done.
37 # * If FontEncoding is not specified, T1 is assumed.
38 # * "SwitchDefault 1" makes the font to be loaded by switching the default
39 #   family to <name> (e.g., \renewcommand{\rmdefault}{cmr}), whereas
40 #   Package <package> loads it via \usepackage{package}. Only one of these
41 #   options is used per font (SwitchDefault takes precendende). Note that
42 #   SwitchDefault uses the font name.
43 # * In addition to normal fonts, you can also define alternative fonts
44 #   using the AltFont...EndFont tags. These alternative fonts will not
45 #   be added to the GUI, but LyX will fall back on them under specific
46 #   circumstances (e.g. if the main font is not available; see below).
47 # * If AltFonts are defined, LyX will try to load them in the defined
48 #   order if the main package is not available. So
49 #       Package          mathptmx
50 #       AltFonts         mathptm,times
51 #   will try to load mathptm if mathptmx is not available and then times
52 #   if mathptm is not available either.
53 #   AltFonts need to be defined separately using AltFont ... EndFont tags.
54 # * If Requires is set, LyX will check for this. If not, it will check
55 #   for Package and AltFonts.
56 # * OT1Font will load the defined font if the font encoding is OT1. This is
57 #   necessary since some newer font packages do not support this encoding.
58 #   The value "none" tells LyX not to load any font in OT1 encoding.
59 #   OT1Fonts need to be defined separately using AltFont ... EndFont tags.
60 # * The CompleteFont is loaded if the current font is selected as rm and
61 #   both sf and tt are set to "default" (this allows for instance to load
62 #   "bera" as opposed to "beraserif").
63 #   CompleteFonts need to be defined separately using AltFont ... EndFont
64 #   tags.
65 # * OsfFont is a font that is loaded additionally in and that provides
66 #   Old Style Figures for a given font (e.g. eco).
67 # * OsfScOption overrides any OsfOption and ScOption if both features
68 #   are selected.
69 # * Set OsfDefault to true for fonts which have Old Style Figures by
70 #   default and provide an option for lining figures. Pass this option
71 #   to OsfOption.
72 # * ScaleOption supports the placeholder $$val for the scale value.
73 # * The Preamble code is output immediately after the respective font
74 #   loading command.
75 #
76 ##########################################################################
77
78
79 #
80 # ROMAN FONTS
81 #
82
83 Font ae
84         GuiName          "AE (Almost European)"
85         Family           rm
86         Package          "ae,aecompl"
87         OT1Font          none
88         Requires         ae
89 EndFont
90
91 Font beraserif
92         GuiName          "Bera Serif"
93         Family           rm
94         Package          beraserif
95         CompleteFont     bera
96         Requires         bera
97 EndFont
98
99 AltFont bera
100         GuiName          "Bera Serif"
101         Family           rm
102         Package          bera
103 EndFont
104
105 Font bookman
106         GuiName          "Bookman"
107         Family           rm
108         Package          bookman
109 EndFont
110
111 Font ccfonts
112         GuiName          "Concrete Roman"
113         Family           rm
114         Package          ccfonts
115 EndFont
116
117 Font chancery
118         GuiName          "Zapf Chancery"
119         Family           rm
120         Package          chancery
121 EndFont
122
123 Font charter
124         GuiName          "Bitstream Charter (PSNFSS)"
125         Family           rm
126         Package          charter
127 EndFont
128
129 Font cochineal
130         GuiName          "Crimson (Cochineal)"
131         Family           rm
132         OsfOption        "proportional,osf"
133         Package          cochineal
134         AltFonts         crimson
135 EndFont
136
137 AltFont crimson
138         GuiName          "Crimson"
139         Family           rm
140         Package          crimson
141 EndFont
142
143 Font cmr
144         GuiName          "Computer Modern Roman"
145         Family           rm
146         FontEncoding     OT1
147         SwitchDefault    1
148         OsfFont          eco
149 EndFont
150
151 Font DejaVuSerif
152         GuiName          "DejaVu Serif"
153         Family           rm
154         Package          DejaVuSerif
155 EndFont
156
157 Font DejaVuSerifCondensed
158         GuiName          "DejaVu Serif Condensed"
159         Family           rm
160         Package          DejaVuSerifCondensed
161 EndFont
162
163 AltFont eco
164         Family           rm
165         Package          eco
166 EndFont
167
168 Font IBMPlexSerif
169         GuiName          "IBM Plex Serif"
170         Family           rm
171         Package          plex-serif
172 EndFont
173
174 Font IBMPlexSerifThin
175         GuiName          "IBM Plex Serif Thin"
176         Family           rm
177         Package          plex-serif
178         PackageOption    thin
179 EndFont
180
181 Font IBMPlexSerifExtraLight
182         GuiName          "IBM Plex Serif Extra Light"
183         Family           rm
184         Package          plex-serif
185         PackageOption    extralight
186 EndFont
187
188 Font IBMPlexSerifLight
189         GuiName          "IBM Plex Serif Light"
190         Family           rm
191         Package          plex-serif
192         PackageOption    light
193 EndFont
194
195 Font IBMPlexSerifSemibold
196         GuiName          "IBM Plex Serif Semibold"
197         Family           rm
198         Package          plex-serif
199         PackageOption    semibold
200 EndFont
201
202 Font ADOBESourceSerifPro
203         GuiName         "Adobe Source Serif Pro"
204         Family          rm
205         Package         sourceserifpro
206 EndFont
207
208 Font garamondx
209         GuiName          "URW Garamond"
210         Family           rm
211         OsfOption        osfI
212         Package          garamondx
213         Requires         garamondx-fonts
214         AltFonts         ugm
215 EndFont
216
217 AltFont ugm
218         GuiName          "URW Garamond"
219         Family           rm
220         SwitchDefault    1
221         Requires         ugm
222 EndFont
223
224 Font libertine
225         GuiName          "Libertine"
226         Family           rm
227         OsfOption        osf
228         Package          libertineRoman
229         CompleteFont     libertine-full
230         AltFonts         libertine-type1,libertine-2012,libertine-legacy
231 EndFont
232
233 AltFont libertine-full
234         GuiName          "Libertine"
235         Family           rm
236         Package          libertine
237         Requires         libertineRoman
238 EndFont
239
240 AltFont libertine-type1
241         GuiName          "Libertine"
242         Family           rm
243         OsfOption        osf
244         Package          libertine-type1
245         Requires         libertineMono-type1
246 EndFont
247
248 AltFont libertine-2012
249         GuiName          "Libertine"
250         Family           rm
251         OsfOption        lining
252         OsfDefault       1
253         Package          libertine-type1
254 EndFont
255
256 AltFont libertine-legacy
257         GuiName          "Libertine"
258         Family           rm
259         OsfOption        osf
260         Package          libertine
261 EndFont
262
263 Font lmodern
264         GuiName          "Latin Modern Roman"
265         Family           rm
266         Package          lmodern
267         NoMathFont       lmr
268 EndFont
269
270 AltFont lmr
271         GuiName          "Latin Modern Roman"
272         Family           rm
273         SwitchDefault    1
274         Requires         lmodern
275 EndFont
276
277 Font md-charter
278         GuiName          "Bitstream Charter (Mathdesign)"
279         Family           rm
280         OsfOption        expert
281         ScOption         expert
282         OsfScOption      expert
283         Package          mathdesign
284         PackageOption    charter
285         Requires         mdbch
286         Provides         amssymb,amsfonts
287         NoMathFont       mdbch
288 EndFont
289
290 AltFont mdbch
291         GuiName          "Bitstream Charter (Mathdesign)"
292         Family           rm
293         SwitchDefault    1
294         Requires         mdbch
295 EndFont
296
297 Font md-utopia
298         GuiName          "Utopia (Mathdesign)"
299         Family           rm
300         OsfOption        expert
301         ScOption         expert
302         OsfScOption      expert
303         Package          mathdesign
304         PackageOption    utopia
305         Requires         mdput
306         Provides         amssymb,amsfonts
307         NoMathFont       mdput
308 EndFont
309
310 AltFont mdput
311         GuiName          "Utopia (Mathdesign)"
312         Family           rm
313         SwitchDefault    1
314         Requires         mdput
315 EndFont
316
317 Font md-garamond
318         GuiName          "URW Garamond (Mathdesign)"
319         Family           rm
320         OsfOption        expert
321         ScOption         expert
322         OsfScOption      expert
323         Package          mathdesign
324         PackageOption    garamond
325         Requires         mdugm
326         Provides         amssymb,amsfonts
327         NoMathFont       mdugm
328 EndFont
329
330 AltFont mdugm
331         GuiName          "URW Garamond (Mathdesign)"
332         Family           rm
333         SwitchDefault    1
334         Requires         mdugm
335 EndFont
336
337 Font minionpro
338         GuiName          "Minion Pro"
339         Family           rm
340         OsfOption        lf
341         OsfDefault       1
342         Package          MinionPro
343         Provides         amssymb,amsfonts
344         NoMathFont       minionpro-nomath
345 EndFont
346
347 AltFont minionpro-nomath
348         GuiName          "Minion Pro"
349         Family           rm
350         OsfOption        lf
351         OsfDefault       1
352         Package          MinionPro
353         PackageOption    onlytext
354 EndFont
355
356 Font newcent
357         GuiName          "New Century Schoolbook"
358         Family           rm
359         Package          newcent
360 EndFont
361
362 Font NotoSerif-TLF
363         GuiName          "Noto Serif"
364         Family           rm
365         SwitchDefault    1
366         Requires         noto
367         CompleteFont     noto
368 EndFont
369
370 AltFont noto
371         GuiName          "Noto Serif"
372         Family           rm
373         Package          noto
374 EndFont
375
376 Font palatino
377         GuiName          "Palatino"
378         Family           rm
379         OsfOption        osf
380         ScOption         sc
381         OsfScOption      osf
382         Package          mathpazo
383         AltFonts         mathpple,palatino-sty
384         NoMathFont       ppl
385         Requires         psnfss
386 EndFont
387
388 AltFont mathpple
389         GuiName          "Palatino"
390         Family           rm
391         Package          mathpple
392         NoMathFont       ppl
393 EndFont
394
395 AltFont palatino-sty
396         GuiName          "Palatino"
397         Family           rm
398         Package          palatino
399 EndFont
400
401 AltFont ppl
402         GuiName          "Palatino"
403         Family           rm
404         OsfFont          pplj
405         SwitchDefault    1
406 EndFont
407
408 AltFont pplj
409         GuiName          "Palatino"
410         Family           rm
411         SwitchDefault    1
412 EndFont
413
414 Font PTSerif-TLF
415         GuiName         "ParaType Serif"
416         Family          rm
417         Requires        paratype
418         Package         PTSerif
419         CompleteFont    paratype
420 EndFont
421
422 AltFont paratype
423         GuiName          "ParaType Serif"
424         Family           rm
425         Package          paratype
426 EndFont
427
428 Font times
429         GuiName          "Times Roman"
430         Family           rm
431         Package          mathptmx
432         AltFonts         mathptm,times-sty
433         NoMathFont       ptm
434         Requires         psnfss
435 EndFont
436
437 AltFont mathptm
438         GuiName          "Times Roman"
439         Family           rm
440         Package          mathptm
441         NoMathFont       ptm
442 EndFont
443
444 AltFont times-sty
445         GuiName          "Times Roman"
446         Family           rm
447         Package          times
448 EndFont
449
450 AltFont ptm
451         GuiName          "Times Roman"
452         Family           rm
453         SwitchDefault    1
454 EndFont
455
456 Font tgbonum
457         GuiName          "TeX Gyre Bonum"
458         Family           rm
459         Package          tgbonum
460 EndFont
461
462 Font tgchorus
463         GuiName          "TeX Gyre Chorus"
464         Family           rm
465         Package          tgchorus
466 EndFont
467
468 Font tgpagella
469         GuiName          "TeX Gyre Pagella"
470         Family           rm
471         Package          tgpagella
472 EndFont
473
474 Font tgschola
475         GuiName          "TeX Gyre Schola"
476         Family           rm
477         Package          tgschola
478 EndFont
479
480 Font tgtermes
481         GuiName          "TeX Gyre Termes"
482         Family           rm
483         Package          tgtermes
484 EndFont
485
486 # fourier supersedes utopia.sty, but does
487 # not work with OT1 encoding.
488 Font utopia
489         GuiName          "Utopia (Fourier)"
490         Family           rm
491         OsfOption        oldstyle
492         ScOption         expert
493         Package          fourier
494         AltFonts         utopia-sty
495         OT1Font          utopia-sty
496         NoMathFont       futs
497 EndFont
498
499 AltFont utopia-sty
500         GuiName          "Utopia (Fourier)"
501         Family           rm
502         Package          utopia
503 EndFont
504
505 AltFont futs
506         GuiName          "Utopia (Fourier)"
507         Family           rm
508         SwitchDefault    1
509         OsfFont          futj
510 EndFont
511
512 AltFont futj
513         GuiName          "Utopia (Fourier)"
514         Family           rm
515         SwitchDefault    1
516 EndFont
517
518 Font xcharter
519         GuiName         "Bitstream Charter (XCharter)"
520         Family          rm
521         Package         XCharter
522         OsfOption       osf
523 EndFont
524
525 #
526 # SANS SERIF FONTS
527 #
528
529 Font avant
530         GuiName          "Avant Garde"
531         Family           sf
532         Package          avant
533 EndFont
534
535 Font berasans
536         GuiName          "Bera Sans"
537         Family           sf
538         ScaleOption      scaled=$$val
539         Package          berasans
540         Requires         bera
541 EndFont
542
543 Font biolinum
544         GuiName          "Biolinum"
545         Family           sf
546         OsfOption        osf
547         ScaleOption      scaled=$$val
548         Package          biolinum
549         AltFonts         biolinum-type1,biolinum-2012
550 EndFont
551
552 AltFont biolinum-type1
553         GuiName          "Biolinum"
554         Family           sf
555         OsfOption        osf
556         ScaleOption      scaled=$$val
557         Package          biolinum-type1
558         Requires         libertineMono-type1
559 EndFont
560
561 AltFont biolinum-2012
562         GuiName          "Biolinum"
563         Family           sf
564         OsfOption        lining
565         OsfDefault       1
566         Package          biolinum-type1
567 EndFont
568
569 Font cmbr
570         GuiName          "CM Bright"
571         Family           sf
572         SwitchDefault    1
573         Requires         cmbright
574 EndFont
575
576 Font cmss
577         GuiName          "Computer Modern Sans"
578         Family           sf
579         FontEncoding     OT1
580         SwitchDefault    1
581 EndFont
582
583 Font DejaVuSans
584         GuiName          "DejaVu Sans"
585         Family           sf
586         Package          DejaVuSans
587         ScaleOption      scaled=$$val
588 EndFont
589
590 Font DejaVuSansCondensed
591         GuiName          "DejaVu Sans Condensed"
592         Family           sf
593         Package          DejaVuSansCondensed
594         ScaleOption      scaled=$$val
595 EndFont
596
597 Font IBMPlexSans
598         GuiName          "IBM Plex Sans"
599         Family           sf
600         Package          plex-sans
601         ScaleOption      scale=$$val
602 EndFont
603
604 Font IBMPlexSansCondensed
605         GuiName          "IBM Plex Sans Condensed"
606         Family           sf
607         Package          plex-sans
608         PackageOption    condensed
609         ScaleOption      scale=$$val
610 EndFont
611
612 Font IBMPlexSansThin
613         GuiName          "IBM Plex Sans Thin"
614         Family           sf
615         Package          plex-sans
616         PackageOption    thin
617         ScaleOption      scale=$$val
618 EndFont
619
620 Font IBMPlexSansExtraLight
621         GuiName          "IBM Plex Sans Extra Light"
622         Family           sf
623         Package          plex-sans
624         PackageOption    extralight
625         ScaleOption      scale=$$val
626 EndFont
627
628 Font IBMPlexSansLight
629         GuiName          "IBM Plex Sans Light"
630         Family           sf
631         Package          plex-sans
632         PackageOption    light
633         ScaleOption      scale=$$val
634 EndFont
635
636 Font IBMPlexSansSemibold
637         GuiName          "IBM Plex Sans Semibold"
638         Family           sf
639         Package          plex-sans
640         PackageOption    semibold
641         ScaleOption      scale=$$val
642 EndFont
643
644 Font    ADOBESourceSansPro
645         GuiName         "Adobe Source Sans Pro"
646         Family          sf
647         Package         sourcesanspro
648         PackageOption   osf
649         ScaleOption     scaled=$$val
650 EndFont
651
652 Font helvet
653         GuiName          "Helvetica"
654         Family           sf
655         ScaleOption      scaled=$$val
656         Package          helvet
657         Requires         psnfss
658 EndFont
659
660 Font iwona
661         GuiName         "Iwona"
662         Family          sf
663         Requires        iwona
664         SwitchDefault   1
665 EndFont
666
667 Font iwonal
668         GuiName         "Iwona (Light)"
669         Family          sf
670         Requires        iwona
671         SwitchDefault   1
672 EndFont
673
674 Font iwonac
675         GuiName         "Iwona (Condensed)"
676         Family          sf
677         Requires        iwona
678         SwitchDefault   1
679 EndFont
680
681 Font iwonalc
682         GuiName         "Iwona (Light Condensed)"
683         Family          sf
684         Requires        iwona
685         SwitchDefault   1
686 EndFont
687
688 Font kurier
689         GuiName         "Kurier"
690         Family          sf
691         Requires        kurier
692         SwitchDefault   1
693 EndFont
694
695 Font kurierl
696         GuiName         "Kurier (Light)"
697         Family          sf
698         Requires        kurier
699         SwitchDefault   1
700 EndFont
701
702 Font kurierc
703         GuiName         "Kurier (Condensed)"
704         Family          sf
705         Requires        kurier
706         SwitchDefault   1
707 EndFont
708
709 Font kurierlc
710         GuiName         "Kurier (Light Condensed)"
711         Family          sf
712         Requires        kurier
713         SwitchDefault   1
714 EndFont
715
716 Font lmss
717         GuiName          "Latin Modern Sans"
718         Family           sf
719         SwitchDefault    1
720         Requires         lmodern
721 EndFont
722
723 Font NotoSans-TLF
724         GuiName          "Noto Sans"
725         Family           sf
726         SwitchDefault    1
727         Requires         noto
728 EndFont
729
730 Font PTSans-TLF
731         GuiName         "ParaType Sans"
732         Family          sf
733         ScaleOption     scaled=$$val
734         Requires        paratype
735         Package         PTSans
736 EndFont
737
738 Font tgadventor
739         GuiName          "TeX Gyre Adventor"
740         Family           sf
741         Package          tgadventor
742 EndFont
743
744 Font tgheros
745         GuiName          "TeX Gyre Heros"
746         Family           sf
747         Package          tgheros
748 EndFont
749
750 Font uop
751         GuiName          "URW Classico (Optima)"
752         Family           sf
753         SwitchDefault    1
754         Requires         urwclassico
755 EndFont
756
757 #
758 # MONOSPACED FONTS
759 #
760
761 Font beramono
762         GuiName          "Bera Mono"
763         Family           tt
764         ScaleOption      scaled=$$val
765         Package          beramono
766         Requires         bera
767 EndFont
768
769 Font cmtl
770         GuiName          "CM Typewriter Light"
771         Family           tt
772         SwitchDefault    1
773         Requires         cmbright
774 EndFont
775
776 Font cmtt
777         GuiName          "Computer Modern Typewriter"
778         Family           tt
779         FontEncoding     OT1
780         SwitchDefault    1
781 EndFont
782
783 Font courier
784         GuiName          "Courier"
785         Family           tt
786         Package          courier
787         Requires         psnfss
788 EndFont
789
790 Font DejaVuSansMono
791         GuiName          "DejaVu Sans Mono"
792         Family           tt
793         Package          DejaVuSansMono
794         ScaleOption      scaled=$$val
795 EndFont
796
797 Font IBMPlexMono
798         GuiName          "IBM Plex Mono"
799         Family           tt
800         Package          plex-mono
801         ScaleOption      scale=$$val
802 EndFont
803
804 Font IBMPlexMonoThin
805         GuiName          "IBM Plex Mono Thin"
806         Family           tt
807         Package          plex-mono
808         ScaleOption      scale=$$val
809         PackageOption    thin
810 EndFont
811
812 Font IBMPlexMonoExtraLight
813         GuiName          "IBM Plex Mono Extra Light"
814         Family           tt
815         Package          plex-mono
816         ScaleOption      scale=$$val
817         PackageOption    extralight
818 EndFont
819
820 Font IBMPlexMonoLight
821         GuiName          "IBM Plex Mono Light"
822         Family           tt
823         Package          plex-mono
824         ScaleOption      scale=$$val
825         PackageOption    light
826 EndFont
827
828 Font IBMPlexMonoSemibold
829         GuiName          "IBM Plex Mono Semibold"
830         Family           tt
831         Package          plex-mono
832         ScaleOption      scale=$$val
833         PackageOption    semibold
834 EndFont
835
836 Font    ADOBESourceCodePro
837         GuiName         "Adobe Source Code Pro"
838         Family          tt
839         Package         sourcecodepro
840         ScaleOption     scaled=$$val
841 EndFont
842
843 Font libertine-mono
844         GuiName          "Libertine Mono"
845         Family           tt
846         ScaleOption      scaled=$$val
847         Package          libertineMono
848         AltFonts         libertine-mono-type1
849 EndFont
850
851 AltFont libertine-mono-type1
852         GuiName          "Libertine Mono"
853         Family           tt
854         ScaleOption      scaled=$$val
855         Package          libertineMono-type1
856 EndFont
857
858 Font lmtt
859         GuiName          "Latin Modern Typewriter"
860         Family           tt
861         SwitchDefault    1
862         Requires         lmodern
863 EndFont
864
865 Font luximono
866         GuiName          "LuxiMono"
867         Family           tt
868         ScaleOption      scaled=$$val
869         Package          luximono
870 EndFont
871
872 Font NotoMono-TLF
873         GuiName          "Noto Mono"
874         Family           tt
875         SwitchDefault    1
876         Requires         noto
877 EndFont
878
879 Font PTMono-TLF
880         GuiName         "ParaType Mono"
881         Family          tt
882         ScaleOption     scaled=$$val
883         Requires        paratype
884         Package         PTMono
885 EndFont
886
887 Font tgcursor
888         GuiName          "TeX Gyre Cursor"
889         Family           tt
890         Package          tgcursor
891 EndFont
892
893 Font txtt
894         GuiName          "TX Typewriter"
895         Family           tt
896         SwitchDefault    1
897         Requires         txfonts
898 EndFont
899
900
901 #
902 # MATH FONTS
903 #
904
905 Font cochineal-ntxm
906         GuiName          "Crimson (New TX)"
907         Family           math
908         Package          newtxmath
909         PackageOption    cochineal
910         Provides         amssymb,amsfonts
911 EndFont
912
913 Font eulervm
914         GuiName          "Euler VM"
915         Family           math
916         Package          eulervm
917 EndFont
918
919 Font garamondx-ntxm
920         GuiName          "URW Garamond (New TX)"
921         Family           math
922         Package          newtxmath
923         PackageOption    garamondx
924         Provides         amssymb,amsfonts
925 EndFont
926
927 Font iwona-math
928         GuiName         "Iwona (Math)"
929         Family          math
930         Requires        iwona
931         Preamble
932         % store roman font
933         \let\origrmdefault\rmdefault
934         \usepackage[math]{iwona}
935         % reset stored roman font
936         \renewcommand{\rmdefault}{\origrmdefault}
937         EndPreamble
938 EndFont
939
940 Font kurier-math
941         GuiName         "Kurier (Math)"
942         Family          math
943         Requires        kurier
944         Preamble
945         % store roman font
946         \let\origrmdefault\rmdefault
947         \usepackage[math]{kurier}
948         % reset stored roman font
949         \renewcommand{\rmdefault}{\origrmdefault}
950         EndPreamble
951 EndFont
952
953 Font libertine-ntxm
954         GuiName          "Libertine (New TX)"
955         Family           math
956         Package          newtxmath
957         PackageOption    libertine
958         Provides         amssymb,amsfonts
959 EndFont
960
961 Font minion-ntxm
962         GuiName          "Minion Pro (New TX)"
963         Family           math
964         Package          newtxmath
965         PackageOption    minion
966         Requires         minion2newtx
967         Provides         amssymb,amsfonts
968 EndFont
969
970 Font newtxmath
971         GuiName          "Times Roman (New TX)"
972         Family           math
973         Package          newtxmath
974         Provides         amssymb,amsfonts
975 EndFont