16

Different people like different styles, and so it maybe useful to list all the math fonts for greek letters in latex. So far as I know, there are some math fonts for greek letters as follows for which the way to invoke see: http://www.tug.org/pracjourn/2006-1/hartke/hartke.pdf.

  1. Package: Computer Modern; Greek: cm

enter image description here

  1. Package: cmbright; Greek: cmbright

enter image description here

  1. Package: ccfonts,eulervm; Greek: concrete upshape

enter image description here

  1. Package: concmath; Greek: concrete itshape

enter image description here

  1. Package: iwona; Greek: iwona

enter image description here

  1. Package: kurier; Greek: kurier

enter image description here

  1. Package: anttor; Greek: anttor

enter image description here

  1. Package: kmath,kerkis; Greek: kerkis

enter image description here

  1. Package: millennial,fouriernc; Greek: nc schlbk

enter image description here

  1. Package: pxfonts,mathpazo,mathpple,newpxmath; Greek: palatino

enter image description here

  1. Package: txfonts,mathtime (Belleek),mathptmx,newtxmath; Greek: times

enter image description here

  1. Package: mbtimes; Greek: omega

enter image description here

  1. Package: arev; Greek: arev

enter image description here

  1. Package: mathdesign (Charter); Greek: charter

enter image description here

  1. Package: mathdesign (Garamond); Greek: garamond

enter image description here

  1. Package: mathdesign (Utopia); Greek: utopia

enter image description here

  1. Package: fourier; Greek: utopia

enter image description here

Although there are many math fonts for greek letters, I didn't get what I like. So my question is

Are there some more choices?

M. Logic
  • 4,214

1 Answers1

5

You can use:

  • Any font from The LaTeX Font Catalogue that has math support
  • Any LGR-encoded Greek font, with mathastext
  • Any OML-encoded math font, with isomath.
  • Any OpenType math font with unicode-math
  • Any OpenType or TrueType font family with Greek letters at the right Unicode code points, using either the range= option of \setmathfont in unicode-math or the \setmathsfont command of mathspec
  • Various legacy math packages with their own 8-bit encodings
  • Any other font format, if you’re willing to convert it and do a lot of work on font metrics

My recommendation would be to use modern font formats and Unicode when you can, and legacy encodings when you have to.

Davislor
  • 44,045