Page 1 of 2
create text shadow
Posted: 2017-02-01T15:14:38-07:00
by kholidfu
I want to embed text into an image, the text should be shadowed. Here is what I'm trying so far:
Code: Select all
convert sunrise-sea.jpg -size 500x200! -font Ubuntu-Bold-Italic -background none label:"The only thing that interferes with my learning is my education.\nALBERT EINSTEIN" -geometry +50+180 -composite -fill none -strokewidth 2. -stroke black -draw "rectangle 20, 20, 580, 380" test.png
what I got so far:
example of shadow:
[My IM version]
Code: Select all
Version: ImageMagick 6.8.9-9 Q16 x86_64 2015-07-21 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png tiff wmf x xml zlib
[My OS Specs]
Code: Select all
Linux bantengpc 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
[SOLVED]
Here is my final command:
Code: Select all
convert yMaXdfL.jpg \
\( -size 500x -background none -gravity center -font arial -pointsize 18 \
-fill white \
caption:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, The only thing that interferes with my learning is my education.\nALBERT EINSTEIN" \
-trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
+gravity -geometry +50+180 -compose over -composite \
-fill none -stroke black -strokewidth 2 -draw "rectangle 20, 20, 580, 380" -alpha off \
result.png
Thank you for all the helps...
Re: create text shadow
Posted: 2017-02-01T15:39:59-07:00
by snibgo
See
http://www.imagemagick.org/Usage/blur/#shadow for how to generate shadows. The trick to remember is that you want just the text shadowed, so just the "label:", not the background image.
Re: create text shadow
Posted: 2017-02-01T19:02:13-07:00
by kholidfu
can you show me some command example?
Code: Select all
convert sunrise-sea.jpg -size 500x200! -font Ubuntu-Bold-Italic -background none \( label:"The only thing that interferes with my learning is my education.\nALBERT EINSTEIN" -shadow \) -geometry +50+180 -composite -fill none -strokewidth 2. -stroke black -draw "rectangle 20, 20, 580, 380" test.png
failed
Re: create text shadow
Posted: 2017-02-01T20:48:55-07:00
by fmw42
Try this. Unix syntax using the IM internal image logo:. Replace logo: with your image.suffix
Code: Select all
convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity center -compose over -composite \
result.png
Re: create text shadow
Posted: 2017-02-01T21:40:21-07:00
by kholidfu
I'm running your code:
Code: Select all
convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity center -compose over -composite \
result.png
And the result:
Code: Select all
convert.im6: unable to read font `arial' @ warning/annotate.c/RenderType/853.
convert.im6: no such image `-clone' @ error/convert.c/ConvertImageCommand/947.
thank you
Re: create text shadow
Posted: 2017-02-01T22:47:47-07:00
by fmw42
Your system apparently does not know where Arial font is located. Change -font arial to -font path2/arial.ttf
Does that work? I assume you are on a Unix-like system.
If so, you can run Anthony's script at
http://www.imagemagick.org/Usage/script ... k_type_gen to put all your fonts into the type.xml file so you can use font names rather than the path to the font file.
What is your IM version and OS/platform? Please always provide that information
Re: create text shadow
Posted: 2017-02-02T15:15:40-07:00
by kholidfu
Okay, I can fix the font problem later...
what about the second error message?
Code: Select all
convert.im6: no such image `-clone' @ error/convert.c/ConvertImageCommand/947.
Re: create text shadow
Posted: 2017-02-02T15:19:05-07:00
by snibgo
What is your IM version and OS/platform?
Please answer this, to help us help you!!!!!
Re: create text shadow
Posted: 2017-02-02T16:45:34-07:00
by fmw42
The second error is likely due to the first error. If it could not find the font, then it could not create the text image and so it could not clone it.
Re: create text shadow
Posted: 2017-02-02T19:47:39-07:00
by kholidfu
What is your IM version and OS/platform?
Code: Select all
Version: ImageMagick 6.7.7-10 2016-11-29 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP
Code: Select all
Linux bantengpc 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
I'm on Linux Mint 16
Okay let me fix the font first...
Re: create text shadow
Posted: 2017-02-02T19:51:04-07:00
by kholidfu
font fixed.. here is some content from ~/.magick/type.xml
Code: Select all
<type
format="type1"
name="TeXxipxb10"
fullname="TeX xipxb10 Regular"
" family="TeX xipxb10
glyphs="/usr/share/texmf/fonts/type1/fkr/tipa/xipxb10.pfb"
metrics="/usr/share/texmf/fonts/type1/fkr/tipa/xipxb10.afm"
/>
</typemap>
I'm re-running the command
Code: Select all
convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity center -compose over -composite \
result.png
and here is the result:
Code: Select all
convert.im6: no such image `-clone' @ error/convert.c/ConvertImageCommand/947.
Re: create text shadow
Posted: 2017-02-02T19:57:56-07:00
by fmw42
You do not have Arial font as a font name in type.xml
Try
convert logo: \
\( -background none -gravity center -font yourpath2/arial.ttf -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity center -compose over -composite \
result.png
replace yourpath2/arial.ttf with the actual path to where your arial font or some other font is located in your system
Re: create text shadow
Posted: 2017-02-02T20:02:59-07:00
by fmw42
IM 6.7.7.10 is ancient (about 200 versions old). You might consider upgrading.
What do you get from
Code: Select all
convert -list configure | grep "DELEGATES"
What do you get from
What font files do you have on your system wherever you keep your fonts? Use one of them in my command in the previous post.
Re: create text shadow
Posted: 2017-02-07T18:07:26-07:00
by kholidfu
Hi, I already update my IM version...
Code: Select all
Version: ImageMagick 6.8.9-9 Q16 x86_64 2015-07-21 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png tiff wmf x xml zlib
Code: Select all
convert -list configure | grep "DELEGATES"
Code: Select all
DELEGATES bzlib djvu mpeg fftw fontconfig freetype jbig jng jpeg lcms lqr lzma openexr pango png ps tiff wmf x xml zlib
Code: Select all
Path: /etc/ImageMagick-6/type-ghostscript.xml
Font: AvantGarde-Book
family: AvantGarde
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/a010013l.pfb
Font: AvantGarde-BookOblique
family: AvantGarde
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/a010033l.pfb
Font: AvantGarde-Demi
family: AvantGarde
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/gsfonts/a010015l.pfb
Font: AvantGarde-DemiOblique
family: AvantGarde
style: Oblique
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/gsfonts/a010035l.pfb
Font: Bookman-Demi
family: Bookman
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/gsfonts/b018015l.pfb
Font: Bookman-DemiItalic
family: Bookman
style: Italic
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/gsfonts/b018035l.pfb
Font: Bookman-Light
family: Bookman
style: Normal
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/type1/gsfonts/b018012l.pfb
Font: Bookman-LightItalic
family: Bookman
style: Italic
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/type1/gsfonts/b018032l.pfb
Font: Courier-BoldOblique
family: Courier
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n022024l.pfb
Font: Courier-Oblique
family: Courier
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n022023l.pfb
Font: fixed
family: Helvetica
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
Font: Helvetica
family: Helvetica
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
Font: Helvetica-Bold
family: Helvetica
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019004l.pfb
Font: Helvetica-BoldOblique
family: Helvetica
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019024l.pfb
Font: Helvetica-Narrow
family: Helvetica Narrow
style: Normal
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019043l.pfb
Font: Helvetica-Narrow-Bold
family: Helvetica Narrow
style: Normal
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019044l.pfb
Font: Helvetica-Narrow-BoldOblique
family: Helvetica Narrow
style: Oblique
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019064l.pfb
Font: Helvetica-Narrow-Oblique
family: Helvetica Narrow
style: Oblique
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019063l.pfb
Font: Helvetica-Oblique
family: Helvetica
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019023l.pfb
Font: NewCenturySchlbk-Bold
family: NewCenturySchlbk
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/c059016l.pfb
Font: NewCenturySchlbk-BoldItalic
family: NewCenturySchlbk
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/c059036l.pfb
Font: NewCenturySchlbk-Italic
family: NewCenturySchlbk
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/c059033l.pfb
Font: NewCenturySchlbk-Roman
family: NewCenturySchlbk
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/c059013l.pfb
Font: Palatino-Bold
family: Palatino
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/p052004l.pfb
Font: Palatino-BoldItalic
family: Palatino
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/p052024l.pfb
Font: Palatino-Italic
family: Palatino
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/p052023l.pfb
Font: Palatino-Roman
family: Palatino
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/p052003l.pfb
Font: Times-Bold
family: Times
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n021004l.pfb
Font: Times-BoldItalic
family: Times
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n021024l.pfb
Font: Times-Italic
family: Times
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n021023l.pfb
Font: Times-Roman
family: Times
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n021003l.pfb
Path: /home/banteng/.magick/type.xml
Font: AbyssinicaSIL
family: Abyssinica SIL
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/abyssinica/AbyssinicaSIL-R.ttf
Font: Akkadian256
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Akkadian256.otf
Font: Alfios_B
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_B.otf
Font: Alfios_I
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_I.otf
Font: Alfios_J
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_J.otf
Font: Alfios_R
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_R.otf
Font: Analecta306
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Analecta306.otf
Font: AndaleMono
family: Andale Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/andalemo.ttf
Font: Anorexia
family: Anorexia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/Desktop/agcimg_template_rolan/unify_template_agcimg_v2/Unify-v1.8/HTML/assets/plugins/sky-forms-pro/skyforms/captcha/font/anorexia.ttf
Font: ArialB
family: Arial
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/arialbd.ttf
Font: ArialBI
family: Arial
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/arialbi.ttf
Font: ArialBk
family: Arial Black
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/ariblk.ttf
Font: ArialI
family: Arial
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/ariali.ttf
Font: Aroania_B
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aroania_B.otf
Font: Aroania_R
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aroania_R.otf
Font: ArvoB
family: Arvo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Arvo-Bold.ttf
Font: ArvoBI
family: Arvo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Arvo-BoldItalic.ttf
Font: ArvoI
family: Arvo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Arvo-Italic.ttf
Font: Avdira_B
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_B.otf
Font: Avdira_I
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_I.otf
Font: Avdira_J
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_J.otf
Font: Avdira_R
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_R.otf
Font: BebasNeue
family: Bebas Neue
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/bebasneue-webfont.ttf
Font: big_noodle_titling
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/homelan/public/static/css/fonts/big_noodle_titling.otf
Font: BigNoodleTitling
family: BigNoodleTitling
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/homelan/public/static/css/fonts/big_noodle_titling.ttf
Font: BitstreamCharter
family: Bitstream Charter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0648bt_.pfb
Font: BitstreamCharterB
family: Bitstream Charter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/bchb8a.pfb
Font: BitstreamCharterBI
family: Bitstream Charter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0633bt_.pfb
Font: BitstreamCharterI
family: Bitstream Charter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0649bt_.pfb
Font: BitstreamVeraSans
family: Bitstream Vera Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/Vera.ttf
Font: BitstreamVeraSansB
family: Bitstream Vera Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf
Font: BitstreamVeraSansBOb
family: Bitstream Vera Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf
Font: BitstreamVeraSansMono
family: Bitstream Vera Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf
Font: BitstreamVeraSansMonoB
family: Bitstream Vera Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf
Font: BitstreamVeraSansMonoBOb
family: Bitstream Vera Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf
Font: BitstreamVeraSansMonoOb
family: Bitstream Vera Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf
Font: BitstreamVeraSansOb
family: Bitstream Vera Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf
Font: BitstreamVeraSerif
family: Bitstream Vera Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
Font: BitstreamVeraSerifB
family: Bitstream Vera Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/local/lib/python2.7/dist-packages/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf
Font: Boycott
family: Boycott
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/boycott_-webfont.ttf
Font: Cantarell
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf
Font: CantarellB
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf
Font: CenturySchoolbookB
family: Century Schoolbook
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/c059016l.pfb
Font: CenturySchoolbookBI
family: Century Schoolbook
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/c059036l.pfb
Font: CenturySchoolbookI
family: Century Schoolbook
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uncri8a.pfb
Font: CenturySchoolbookRoman
family: Century Schoolbook
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/c059013l.pfb
Font: cmb10
family: cmb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
Font: cmss10
family: cmss10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/cmss10.ttf
Font: cmtt10
family: cmtt10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf
Font: ComicSans
family: Comic Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/comic.ttf
Font: ComicSansMSB
family: Comic Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/comicbd.ttf
Font: Courier10Pitch
family: Courier 10 Pitch
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0419bt_.pfb
Font: Courier10PitchB
family: Courier 10 Pitch
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0583bt_.pfb
Font: Courier10PitchBI
family: Courier 10 Pitch
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0611bt_.pfb
Font: Courier10PitchI
family: Courier 10 Pitch
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/X11/Type1/c0582bt_.pfb
Font: CourierB
family: Courier
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrb8a.pfb
Font: CourierBOblique
family: Courier
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrbo8a.pfb
Font: CourierNew
family: Courier New
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/cour.ttf
Font: CourierNewB
family: Courier New
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/courbd.ttf
Font: CourierNewBI
family: Courier New
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/courbi.ttf
Font: CourierNewI
family: Courier New
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/couri.ttf
Font: CourierOblique
family: Courier
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrro8a.pfb
Font: DejaVuSans
family: DejaVu Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSans.ttf
Font: DejaVuSansB
family: DejaVu Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSans-Bold.ttf
Font: DejaVuSansBOb
family: DejaVu Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSans-BoldOblique.ttf
Font: DejaVuSansC
family: DejaVu Sans Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansCondensed.ttf
Font: DejaVuSansCB
family: DejaVu Sans Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf
Font: DejaVuSansCBOb
family: DejaVu Sans Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansCondensed-BoldOblique.ttf
Font: DejaVuSansCOb
family: DejaVu Sans Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf
Font: DejaVuSansExtraLight
family: DejaVu Sans Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-ExtraLight.ttf
Font: DejaVuSansMono
family: DejaVu Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansMono.ttf
Font: DejaVuSansMonoB
family: DejaVu Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansMono-Bold.ttf
Font: DejaVuSansMonoBOb
family: DejaVu Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansMono-BoldOblique.ttf
Font: DejaVuSansMonoOb
family: DejaVu Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSansMono-Oblique.ttf
Font: DejaVuSansOb
family: DejaVu Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSans-Oblique.ttf
Font: DejaVuSerif
family: DejaVu Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerif.ttf
Font: DejaVuSerifB
family: DejaVu Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerif-Bold.ttf
Font: DejaVuSerifBI
family: DejaVu Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerif-BoldItalic.ttf
Font: DejaVuSerifC
family: DejaVu Serif Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerifCondensed.ttf
Font: DejaVuSerifCB
family: DejaVu Serif Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerifCondensed-Bold.ttf
Font: DejaVuSerifCBI
family: DejaVu Serif Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf
Font: DejaVuSerifCI
family: DejaVu Serif Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerifCondensed-Italic.ttf
Font: DejaVuSerifI
family: DejaVu Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/DejaVuSerif-Italic.ttf
Font: DroidArabicNaskh
family: Droid Arabic Naskh
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidNaskh-Regular.ttf
Font: DroidArabicNaskhB
family: Droid Arabic Naskh
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidNaskh-Bold.ttf
Font: DroidSans
family: Droid Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/mdm/html-themes/Zukitwo-Transparent/fonts/DroidSans.ttf
Font: DroidSansArmenian
family: Droid Sans Armenian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansArmenian.ttf
Font: DroidSansB
family: Droid Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSans-Bold.ttf
Font: DroidSansEthiopic
family: Droid Sans Ethiopic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansEthiopic-Regular.ttf
Font: DroidSansEthiopicB
family: Droid Sans Ethiopic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansEthiopic-Bold.ttf
Font: DroidSansFallback
family: Droid Sans Fallback
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/ghostscript/9.10/Resource/CIDFSubst/DroidSansFallback.ttf
Font: DroidSansGeorgian
family: Droid Sans Georgian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansGeorgian.ttf
Font: DroidSansHebrew
family: Droid Sans Hebrew
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansHebrew-Regular.ttf
Font: DroidSansHebrewB
family: Droid Sans Hebrew
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansHebrew-Bold.ttf
Font: DroidSansJapanese
family: Droid Sans Japanese
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansJapanese.ttf
Font: DroidSansMono
family: Droid Sans Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansMono.ttf
Font: DroidSansThai
family: Droid Sans Thai
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/droid/DroidSansThai.ttf
Font: DroidSerif
family: Droid Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif.ttf
Font: DroidSerifB
family: Droid Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif-Bold.ttf
Font: DroidSerifBI
family: Droid Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif-BoldItalic.ttf
Font: DroidSerifI
family: Droid Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif-Italic.ttf
Font: Entypo
family: Entypo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/wallgigs.com/app/static/fonts/entypo.ttf
Font: EntypoSocial
family: Entypo Social
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/wallgigs.com/app/static/fonts/entypo-social.ttf
Font: fontello
family: fontello
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fontello/font/fontello.ttf
Font: fonts-japanese-gothic
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/dpkg/alternatives/fonts-japanese-gothic.ttf
Font: FreeMonoB
family: FreeMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/vlc/skins2/fonts/FreeSansBold.ttf
Font: FreeMonoBOb
family: FreeMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf
Font: FreeMonoOb
family: FreeMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeMonoOblique.ttf
Font: FreeSansB
family: FreeSans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSansBold.ttf
Font: FreeSansBOb
family: FreeSans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf
Font: FreeSansOb
family: FreeSans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSansOblique.ttf
Font: FreeSerifB
family: FreeSerif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
Font: FreeSerifBI
family: FreeSerif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf
Font: FreeSerifI
family: FreeSerif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifItalic.ttf
Font: GarudaB
family: Garuda
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Garuda-Bold.ttf
Font: GarudaBOb
family: Garuda
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Garuda-BoldOblique.ttf
Font: GarudaOb
family: Garuda
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Garuda-Oblique.ttf
Font: GeorgiaB
family: Georgia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiab.ttf
Font: GeorgiaBI
family: Georgia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiaz.ttf
Font: GeorgiaI
family: Georgia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiai.ttf
Font: GLYPHICONSHalflings
family: GLYPHICONS Halflings
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/mdm/html-themes/common/fonts/glyphicons-halflings-regular.ttf
Font: GoodDog
family: GoodDog
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/gooddog-webfont.ttf
Font: Inconsolata
family: Inconsolata
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/retrevoo/lib/python2.7/site-packages/sphinx_rtd_theme/static/fonts/Inconsolata-Regular.ttf
Font: InconsolataB
family: Inconsolata
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/retrevoo/lib/python2.7/site-packages/sphinx_rtd_theme/static/fonts/Inconsolata-Bold.ttf
Font: ind_bn_1_001
family: ind_bn_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_bn_1_001.ttf
Font: ind_gu_1_001
family: ind_gu_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_gu_1_001.ttf
Font: ind_hi_1_001
family: ind_hi_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_hi_1_001.ttf
Font: ind_kn_1_001
family: ind_kn_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_kn_1_001.ttf
Font: ind_ml_1_001
family: ind_ml_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_ml_1_001.ttf
Font: ind_or_1_001
family: ind_or_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_or_1_001.ttf
Font: ind_pa_1_001
family: ind_pa_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_pa_1_001.ttf
Font: ind_ta_1_001
family: ind_ta_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_ta_1_001.ttf
Font: ind_te_1_001
family: ind_te_1_001
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ind_te_1_001.ttf
Font: IndieFlower
family: Indie Flower
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/IndieFlower.ttf
Font: KacstOneB
family: KacstOne
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/kacst-one/KacstOne-Bold.ttf
Font: Kedage
family: Kedage
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-n.ttf
Font: KedageB
family: Kedage
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-b.ttf
Font: KhmerOS
family: Khmer OS
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOS.ttf
Font: KhmerOSSystem
family: Khmer OS System
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOSsys.ttf
Font: KinnariB
family: Kinnari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Bold.ttf
Font: KinnariBI
family: Kinnari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf
Font: KinnariBOb
family: Kinnari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldOblique.ttf
Font: KinnariI
family: Kinnari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Italic.ttf
Font: KinnariOb
family: Kinnari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Oblique.ttf
Font: kmdocs
family: km-docs
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/Desktop/agcimg_template_rolan/unify_template_agcimg_v2/Unify-v1.8/HTML/assets/plugins/layer-slider/documentation/assets/font/km-docs.ttf
Font: latinmodern-math
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texlive/texmf-dist/fonts/opentype/public/lm-math/latinmodern-math.otf
Font: Lato
family: Lato
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf
Font: LatoB
family: Lato
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/retrevoo/lib/python2.7/site-packages/sphinx_rtd_theme/static/fonts/Lato-Bold.ttf
Font: LatoI
family: Lato
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf
Font: LatoL
family: Lato Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf
Font: LatoLightItalic
family: Lato Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf
Font: LiberationMono
family: Liberation Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf
Font: LiberationMonoB
family: Liberation Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf
Font: LiberationMonoBI
family: Liberation Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf
Font: LiberationMonoI
family: Liberation Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf
Font: LiberationSans
family: Liberation Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf
Font: LiberationSansB
family: Liberation Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf
Font: LiberationSansBI
family: Liberation Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf
Font: LiberationSansI
family: Liberation Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf
Font: LiberationSansNarrow
family: Liberation Sans Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf
Font: LiberationSansNarrowB
family: Liberation Sans Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf
Font: LiberationSansNarrowBI
family: Liberation Sans Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf
Font: LiberationSansNarrowI
family: Liberation Sans Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf
Font: LiberationSerif
family: Liberation Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf
Font: LiberationSerifB
family: Liberation Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf
Font: LiberationSerifBI
family: Liberation Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf
Font: LiberationSerifI
family: Liberation Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf
Font: LibreBaskerville
family: Libre Baskerville
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/librebaskerville/librebaskerville-regular-webfont.ttf
Font: LibreBaskervilleB
family: Libre Baskerville
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/librebaskerville/librebaskerville-bold-webfont.ttf
Font: LibreBaskervilleI
family: Libre Baskerville
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/librebaskerville/librebaskerville-italic-webfont.ttf
Font: LohitBengali
family: Lohit Bengali
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_bn.ttf
Font: LohitDevanagari
family: Lohit Devanagari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_hi.ttf
Font: LohitGujarati
family: Lohit Gujarati
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_gu.ttf
Font: LohitPunjabi
family: Lohit Punjabi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-punjabi-fonts/lohit_pa.ttf
Font: LohitTamil
family: Lohit Tamil
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_ta.ttf
Font: LomaB
family: Loma
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Loma-Bold.ttf
Font: LomaBOb
family: Loma
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Loma-BoldOblique.ttf
Font: LomaOb
family: Loma
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Loma-Oblique.ttf
Font: LucidaBright
family: Lucida Bright
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaBrightRegular.ttf
Font: LucidaBrightDb
family: Lucida Bright
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaBrightDemiBold.ttf
Font: LucidaBrightDbI
family: Lucida Bright
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaBrightDemiItalic.ttf
Font: LucidaBrightI
family: Lucida Bright
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaBrightItalic.ttf
Font: LucidaSans
family: Lucida Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaSansRegular.ttf
Font: LucidaSansDb
family: Lucida Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaSansDemiBold.ttf
Font: LucidaSansDbOb
family: Lucida Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/oblique-fonts/LucidaSansDemiOblique.ttf
Font: LucidaSansOb
family: Lucida Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/oblique-fonts/LucidaSansOblique.ttf
Font: LucidaSansTypewriter
family: Lucida Sans Typewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaTypewriterRegular.ttf
Font: LucidaSansTypewriterB
family: Lucida Sans Typewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/fonts/LucidaTypewriterBold.ttf
Font: LucidaSansTypewriterBOb
family: Lucida Sans Typewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/oblique-fonts/LucidaTypewriterBoldOblique.ttf
Font: LucidaSansTypewriterOb
family: Lucida Sans Typewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/lib/jvm/java-8-oracle/jre/lib/oblique-fonts/LucidaTypewriterOblique.ttf
Font: Mallige
family: Mallige
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-n.ttf
Font: MalligeB
family: Mallige
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-b.ttf
Font: Marlett
family: Marlett
style: Undefined
stretch: Undefined
weight: 0
glyphs: /opt/teamviewer/tv_bin/wine/share/wine/fonts/marlett.ttf
Font: MathJax_AMS
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf
Font: MathJax_Caligraphic
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf
Font: MathJax_CaligraphicB
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf
Font: MathJax_Fraktur
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf
Font: MathJax_FrakturB
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf
Font: MathJax_Main
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf
Font: MathJax_MainB
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf
Font: MathJax_MainI
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf
Font: MathJax_Math
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf
Font: MathJax_MathBI
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf
Font: MathJax_MathI
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf
Font: MathJax_SansSerif
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf
Font: MathJax_SansSerifB
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf
Font: MathJax_SansSerifI
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf
Font: MathJax_Script
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf
Font: MathJax_Size1
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf
Font: MathJax_Size2
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf
Font: MathJax_Size3
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf
Font: MathJax_Size4
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf
Font: MathJax_Typewriter
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf
Font: MathJax_WinChrome
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf
Font: MathJax_WinIE6
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/javascript/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf
Font: mpltest
family: mpltest
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/pyshared/matplotlib/tests/mpltest.ttf
Font: MuktiNarrow
family: Mukti Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrow.ttf
Font: MuktiNarrowB
family: Mukti Narrow
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrowBold.ttf
Font: Musica306
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Musica306.otf
Font: NanumBarunGothicB
family: NanumBarunGothic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/nanum/NanumBarunGothicBold.ttf
Font: NimbusMono
family: Nimbus Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/ucrr8a.pfb
Font: NimbusMonoB
family: Nimbus Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n022004l.pfb
Font: NimbusMonoBOblique
family: Nimbus Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n022024l.pfb
Font: NimbusMonoOblique
family: Nimbus Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n022023l.pfb
Font: NimbusRomanNo9
family: Nimbus Roman No9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n021003l.pfb
Font: NimbusRomanNo9I
family: Nimbus Roman No9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/utmri8a.pfb
Font: NimbusRomanNo9Medium
family: Nimbus Roman No9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n021004l.pfb
Font: NimbusRomanNo9MediumI
family: Nimbus Roman No9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n021024l.pfb
Font: NimbusSans
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
Font: NimbusSansB
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvb8a.pfb
Font: NimbusSansBC
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvb8ac.pfb
Font: NimbusSansBCI
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvbo8ac.pfb
Font: NimbusSansBI
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n019024l.pfb
Font: NimbusSansC
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n019043l.pfb
Font: NimbusSansCI
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n019063l.pfb
Font: NimbusSansI
family: Nimbus Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/n019023l.pfb
Font: NorasiB
family: Norasi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Norasi-Bold.ttf
Font: NorasiBI
family: Norasi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-BoldItalic.ttf
Font: NorasiBOb
family: Norasi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Norasi-BoldOblique.ttf
Font: NorasiI
family: Norasi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Italic.ttf
Font: NorasiOb
family: Norasi
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/Norasi-Oblique.ttf
Font: NotoSans
family: Noto Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Regular.ttf
Font: NotoSansArmenian
family: Noto Sans Armenian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansArmenian-Regular.ttf
Font: NotoSansArmenianB
family: Noto Sans Armenian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansArmenian-Bold.ttf
Font: NotoSansB
family: Noto Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Bold.ttf
Font: NotoSansBI
family: Noto Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSans-BoldItalic.ttf
Font: NotoSansCJKjp
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/.local/share/Steam/tenfoot/resource/fonts/NotoSansCJKjp-Regular.otf
Font: NotoSansDevanagari
family: Noto Sans Devanagari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagari-Regular.ttf
Font: NotoSansDevanagariB
family: Noto Sans Devanagari
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagari-Bold.ttf
Font: NotoSansDevanagariUI
family: Noto Sans Devanagari UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Regular.ttf
Font: NotoSansDevanagariUIB
family: Noto Sans Devanagari UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Bold.ttf
Font: NotoSansEthiopic
family: Noto Sans Ethiopic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansEthiopic-Regular.ttf
Font: NotoSansEthiopicB
family: Noto Sans Ethiopic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansEthiopic-Bold.ttf
Font: NotoSansGeorgian
family: Noto Sans Georgian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansGeorgian-Regular.ttf
Font: NotoSansGeorgianB
family: Noto Sans Georgian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansGeorgian-Bold.ttf
Font: NotoSansHebrew
family: Noto Sans Hebrew
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansHebrew-Regular.ttf
Font: NotoSansHebrewB
family: Noto Sans Hebrew
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansHebrew-Bold.ttf
Font: NotoSansI
family: Noto Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Italic.ttf
Font: NotoSansKhmer
family: Noto Sans Khmer
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmer-Regular.ttf
Font: NotoSansKhmerB
family: Noto Sans Khmer
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmer-Bold.ttf
Font: NotoSansKhmerUI
family: Noto Sans Khmer UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmerUI-Regular.ttf
Font: NotoSansKhmerUIB
family: Noto Sans Khmer UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmerUI-Bold.ttf
Font: NotoSansLao
family: Noto Sans Lao
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansLao-Regular.ttf
Font: NotoSansLaoB
family: Noto Sans Lao
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansLao-Bold.ttf
Font: NotoSansLaoUI
family: Noto Sans Lao UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansLaoUI-Regular.ttf
Font: NotoSansLaoUIB
family: Noto Sans Lao UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansLaoUI-Bold.ttf
Font: NotoSansTamil
family: Noto Sans Tamil
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamil-Regular.ttf
Font: NotoSansTamilB
family: Noto Sans Tamil
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamil-Bold.ttf
Font: NotoSansTamilUI
family: Noto Sans Tamil UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamilUI-Regular.ttf
Font: NotoSansTamilUIB
family: Noto Sans Tamil UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamilUI-Bold.ttf
Font: NotoSansThai
family: Noto Sans Thai
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansThai-Regular.ttf
Font: NotoSansThaiB
family: Noto Sans Thai
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansThai-Bold.ttf
Font: NotoSansThaiUI
family: Noto Sans Thai UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansThaiUI-Regular.ttf
Font: NotoSansThaiUIB
family: Noto Sans Thai UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansThaiUI-Bold.ttf
Font: NotoSansUI
family: Noto Sans UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Regular.ttf
Font: NotoSansUIB
family: Noto Sans UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Bold.ttf
Font: NotoSansUIBI
family: Noto Sans UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-BoldItalic.ttf
Font: NotoSansUII
family: Noto Sans UI
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Italic.ttf
Font: NotoSerif
family: Noto Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Regular.ttf
Font: NotoSerifArmenian
family: Noto Serif Armenian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifArmenian-Regular.ttf
Font: NotoSerifArmenianB
family: Noto Serif Armenian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifArmenian-Bold.ttf
Font: NotoSerifB
family: Noto Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Bold.ttf
Font: NotoSerifBI
family: Noto Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-BoldItalic.ttf
Font: NotoSerifGeorgian
family: Noto Serif Georgian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifGeorgian-Regular.ttf
Font: NotoSerifGeorgianB
family: Noto Serif Georgian
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifGeorgian-Bold.ttf
Font: NotoSerifI
family: Noto Serif
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Italic.ttf
Font: NotoSerifLao
family: Noto Serif Lao
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifLao-Regular.ttf
Font: NotoSerifLaoB
family: Noto Serif Lao
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifLao-Bold.ttf
Font: NotoSerifThai
family: Noto Serif Thai
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifThai-Regular.ttf
Font: NotoSerifThaiB
family: Noto Serif Thai
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/noto/NotoSerifThai-Bold.ttf
Font: ocrb10
family: ocrb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/mpdf/ttfonts/ocrb10.ttf
Font: octicons
family: octicons
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/.config/Brackets/extensions/user/zaggino.brackets-git/styles/fonts/octicons-regular-webfont.ttf
Font: OpenSans
family: Open Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-Regular-webfont.ttf
Font: OpenSansB
family: Open Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-Bold-webfont.ttf
Font: OpenSansBI
family: Open Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-BoldItalic-webfont.ttf
Font: OpenSansI
family: Open Sans
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-Italic-webfont.ttf
Font: OpenSansL
family: Open Sans Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-Light-webfont.ttf
Font: OpenSansLI
family: Open Sans Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-LightItalic-webfont.ttf
Font: OpenSansSemibold
family: Open Sans Semibold
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-Semibold-webfont.ttf
Font: OpenSansSemiboldI
family: Open Sans Semibold
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-SemiboldItalic-webfont.ttf
Font: OpenSansXb
family: Open Sans Extrabold
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-ExtraBold-webfont.ttf
Font: OpenSansXbI
family: Open Sans Extrabold
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/www/coba.com/css/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.ttf
Font: PadaukB
family: Padauk
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/padauk/Padauk-bold.ttf
Font: PadaukBook
family: Padauk Book
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/padauk/Padauk-book.ttf
Font: PadaukBookB
family: Padauk Book
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/padauk/Padauk-bookbold.ttf
Font: PhetsarathOT
family: Phetsarath OT
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/lao/Phetsarath_OT.ttf
Font: Philokalia
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texlive/texmf-dist/fonts/opentype/public/philokalia/Philokalia-Regular.otf
Font: PoiretOne
family: Poiret One
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/PoiretOne-Regular.ttf
Font: PurisaB
family: Purisa
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Bold.ttf
Font: PurisaBOb
family: Purisa
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-BoldOblique.ttf
Font: PurisaOb
family: Purisa
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Oblique.ttf
Font: QlassikM
family: Qlassik Medium
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/qlassik_tb-webfont.ttf
Font: raleway_thin
family: unknown
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/mdm/html-themes/common/fonts/raleway_thin.otf
Font: RalewayB
family: Raleway
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Raleway-Bold.ttf
Font: revicons
family: revicons
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/agcimg2/agcimg2/static/fonts/revicons.ttf
Font: RobotoB
family: Roboto
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Roboto-Bold.ttf
Font: RobotoBI
family: Roboto
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Roboto-BoldItalic.ttf
Font: RobotoC
family: Roboto Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Regular.ttf
Font: RobotoCB
family: Roboto Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Bold.ttf
Font: RobotoCBI
family: Roboto Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-BoldItalic.ttf
Font: RobotoCI
family: Roboto Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Italic.ttf
Font: RobotoI
family: Roboto
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/Roboto-Italic.ttf
Font: RobotoSlab
family: Roboto Slab
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoSlab-Regular.ttf
Font: RobotoSlabB
family: Roboto Slab
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/xmind/RobotoSlab-Bold.ttf
Font: SawasdeeB
family: Sawasdee
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Bold.ttf
Font: SawasdeeBOb
family: Sawasdee
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-BoldOblique.ttf
Font: SawasdeeOb
family: Sawasdee
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Oblique.ttf
Font: SimpleLineIcons
family: Simple-Line-Icons
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/Desktop/agcimg_template_rolan/unify_template_agcimg_v2/Unify-v1.8/HTML/assets/plugins/line-icons/fonts/Simple-Line-Icons.ttf
Font: Snickles
family: Snickles
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/snickles-webfont.ttf
Font: SourceCodePro
family: Source Code Pro
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf
Font: SourceCodeProB
family: Source Code Pro
style: Undefined
stretch: Undefined
weight: 0
glyphs: /var/lib/gems/1.9.1/gems/rdoc-4.2.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf
Font: SourceSansProL
family: Source Sans Pro Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/.config/google-chrome/Default/Extensions/aejoelaoggembcahagimdiliamlcdmfm/1.4.2.1_0/fonts/source-sans-pro-v9-latin-ext_vietnamese_latin-300.ttf
Font: StandardSymbols
family: Standard Symbols
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/usyr.pfb
Font: STIXGeneral
family: STIXGeneral
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf
Font: STIXGeneralB
family: STIXGeneral
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf
Font: STIXGeneralBoldItalic
family: STIXGeneral
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf
Font: STIXGeneralI
family: STIXGeneral
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
Font: STIXNonUnicode
family: STIXNonUnicode
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf
Font: STIXNonUnicodeB
family: STIXNonUnicode
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf
Font: STIXNonUnicodeBoldItalic
family: STIXNonUnicode
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf
Font: STIXNonUnicodeI
family: STIXNonUnicode
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
Font: STIXSizeFiveSym
family: STIXSizeFiveSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf
Font: STIXSizeFourSym
family: STIXSizeFourSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf
Font: STIXSizeFourSymB
family: STIXSizeFourSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf
Font: STIXSizeOneSym
family: STIXSizeOneSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf
Font: STIXSizeOneSymB
family: STIXSizeOneSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf
Font: STIXSizeThreeSym
family: STIXSizeThreeSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf
Font: STIXSizeThreeSymB
family: STIXSizeThreeSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf
Font: STIXSizeTwoSym
family: STIXSizeTwoSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf
Font: STIXSizeTwoSymB
family: STIXSizeTwoSym
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf
Font: Tahoma
family: Tahoma
style: Undefined
stretch: Undefined
weight: 0
glyphs: /opt/teamviewer/tv_bin/wine/share/wine/fonts/tahoma.ttf
Font: TahomaB
family: Tahoma
style: Undefined
stretch: Undefined
weight: 0
glyphs: /opt/teamviewer/tv_bin/wine/share/wine/fonts/tahomabd.ttf
Font: Tenderness
family: Tenderness
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/tenderness-webfont.ttf
Font: TeXtipa10
family: TeX tipa10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipa10.pfb
Font: TeXtipa12
family: TeX tipa12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipa12.pfb
Font: TeXtipa17
family: TeX tipa17
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipa17.pfb
Font: TeXtipa8
family: TeX tipa8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipa8.pfb
Font: TeXtipa9
family: TeX tipa9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipa9.pfb
Font: TeXtipab10
family: TeX tipab10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipab10.pfb
Font: TeXtipabs10
family: TeX tipabs10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipabs10.pfb
Font: TeXtipabx10
family: TeX tipabx10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipabx10.pfb
Font: TeXtipabx12
family: TeX tipabx12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipabx12.pfb
Font: TeXtipabx8
family: TeX tipabx8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipabx8.pfb
Font: TeXtipabx9
family: TeX tipabx9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipabx9.pfb
Font: TeXtipasb10
family: TeX tipasb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasb10.pfb
Font: TeXtipasi10
family: TeX tipasi10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasi10.pfb
Font: TeXtipasl10
family: TeX tipasl10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasl10.pfb
Font: TeXtipasl12
family: TeX tipasl12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasl12.pfb
Font: TeXtipasl8
family: TeX tipasl8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasl8.pfb
Font: TeXtipasl9
family: TeX tipasl9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipasl9.pfb
Font: TeXtipass10
family: TeX tipass10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipass10.pfb
Font: TeXtipass12
family: TeX tipass12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipass12.pfb
Font: TeXtipass17
family: TeX tipass17
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipass17.pfb
Font: TeXtipass8
family: TeX tipass8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipass8.pfb
Font: TeXtipass9
family: TeX tipass9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipass9.pfb
Font: TeXtipats10
family: TeX tipats10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipats10.pfb
Font: TeXtipatt10
family: TeX tipatt10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipatt10.pfb
Font: TeXtipatt12
family: TeX tipatt12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipatt12.pfb
Font: TeXtipatt8
family: TeX tipatt8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipatt8.pfb
Font: TeXtipatt9
family: TeX tipatt9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipatt9.pfb
Font: TeXtipx10
family: TeX tipx10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipx10.pfb
Font: TeXtipx12
family: TeX tipx12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipx12.pfb
Font: TeXtipx17
family: TeX tipx17
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipx17.pfb
Font: TeXtipx8
family: TeX tipx8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipx8.pfb
Font: TeXtipx9
family: TeX tipx9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipx9.pfb
Font: TeXtipxb10
family: TeX tipxb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxb10.pfb
Font: TeXtipxbs10
family: TeX tipxbs10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxbs10.pfb
Font: TeXtipxbx10
family: TeX tipxbx10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxbx10.pfb
Font: TeXtipxbx12
family: TeX tipxbx12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxbx12.pfb
Font: TeXtipxbx8
family: TeX tipxbx8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxbx8.pfb
Font: TeXtipxbx9
family: TeX tipxbx9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxbx9.pfb
Font: TeXtipxsb10
family: TeX tipxsb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsb10.pfb
Font: TeXtipxsi10
family: TeX tipxsi10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsi10.pfb
Font: TeXtipxsl10
family: TeX tipxsl10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsl10.pfb
Font: TeXtipxsl12
family: TeX tipxsl12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsl12.pfb
Font: TeXtipxsl8
family: TeX tipxsl8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsl8.pfb
Font: TeXtipxsl9
family: TeX tipxsl9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxsl9.pfb
Font: TeXtipxss10
family: TeX tipxss10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxss10.pfb
Font: TeXtipxss12
family: TeX tipxss12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxss12.pfb
Font: TeXtipxss17
family: TeX tipxss17
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxss17.pfb
Font: TeXtipxss8
family: TeX tipxss8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxss8.pfb
Font: TeXtipxss9
family: TeX tipxss9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxss9.pfb
Font: TeXtipxts10
family: TeX tipxts10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxts10.pfb
Font: TeXtipxtt10
family: TeX tipxtt10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxtt10.pfb
Font: TeXtipxtt12
family: TeX tipxtt12
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxtt12.pfb
Font: TeXtipxtt8
family: TeX tipxtt8
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxtt8.pfb
Font: TeXtipxtt9
family: TeX tipxtt9
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/tipxtt9.pfb
Font: TeXxipa10
family: TeX xipa10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipa10.pfb
Font: TeXxipab10
family: TeX xipab10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipab10.pfb
Font: TeXxipabs10
family: TeX xipabs10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipabs10.pfb
Font: TeXxipasb10
family: TeX xipasb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipasb10.pfb
Font: TeXxipasi10
family: TeX xipasi10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipasi10.pfb
Font: TeXxipasl10
family: TeX xipasl10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipasl10.pfb
Font: TeXxipass10
family: TeX xipass10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipass10.pfb
Font: TeXxipx10
family: TeX xipx10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipx10.pfb
Font: TeXxipxb10
family: TeX xipxb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxb10.pfb
Font: TeXxipxbs10
family: TeX xipxbs10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxbs10.pfb
Font: TeXxipxsb10
family: TeX xipxsb10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxsb10.pfb
Font: TeXxipxsi10
family: TeX xipxsi10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxsi10.pfb
Font: TeXxipxsl10
family: TeX xipxsl10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxsl10.pfb
Font: TeXxipxss10
family: TeX xipxss10
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/texmf/fonts/type1/fkr/tipa/xipxss10.pfb
Font: TimesNewRoman
family: Times New Roman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/times.ttf
Font: TimesNewRomanB
family: Times New Roman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/timesbd.ttf
Font: TimesNewRomanBI
family: Times New Roman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/timesbi.ttf
Font: TimesNewRomanI
family: Times New Roman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/timesi.ttf
Font: TlwgMono
family: TlwgMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono.ttf
Font: TlwgMonoB
family: TlwgMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Bold.ttf
Font: TlwgMonoBOb
family: TlwgMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-BoldOblique.ttf
Font: TlwgMonoOb
family: TlwgMono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Oblique.ttf
Font: TlwgTypewriter
family: TlwgTypewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter.ttf
Font: TlwgTypewriterB
family: TlwgTypewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Bold.ttf
Font: TlwgTypewriterBOb
family: TlwgTypewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-BoldOblique.ttf
Font: TlwgTypewriterMonoOb
family: TlwgTypewriter
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Oblique.ttf
Font: TlwgTypist
family: Tlwg Typist
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist.ttf
Font: TlwgTypistB
family: Tlwg Typist
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Bold.ttf
Font: TlwgTypistBOb
family: Tlwg Typist
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-BoldOblique.ttf
Font: TlwgTypistOb
family: Tlwg Typist
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Oblique.ttf
Font: TlwgTypo
family: Tlwg Typo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo.ttf
Font: TlwgTypoB
family: Tlwg Typo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Bold.ttf
Font: TlwgTypoBOb
family: Tlwg Typo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-BoldOblique.ttf
Font: TlwgTypoOb
family: Tlwg Typo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Oblique.ttf
Font: Trebuchet
family: Trebuchet
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/trebuc.ttf
Font: TrebuchetMSB
family: Trebuchet
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/trebucbd.ttf
Font: TrebuchetMSBI
family: Trebuchet
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/trebucbi.ttf
Font: TrebuchetMSI
family: Trebuchet
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/trebucit.ttf
Font: UbuntuB
family: Ubuntu
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf
Font: UbuntuBI
family: Ubuntu
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf
Font: UbuntuC
family: Ubuntu Condensed
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-C.ttf
Font: UbuntuI
family: Ubuntu
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf
Font: UbuntuL
family: Ubuntu Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf
Font: UbuntuLI
family: Ubuntu Light
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf
Font: UbuntuM
family: Ubuntu Medium
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-M.ttf
Font: UbuntuMI
family: Ubuntu Medium
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-MI.ttf
Font: UbuntuMono
family: Ubuntu Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-R.ttf
Font: UbuntuMonoB
family: Ubuntu Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-B.ttf
Font: UbuntuMonoBI
family: Ubuntu Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-BI.ttf
Font: UbuntuMonoI
family: Ubuntu Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-RI.ttf
Font: UmpushB
family: Umpush
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Bold.ttf
Font: UmpushBOb
family: Umpush
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-BoldOblique.ttf
Font: UmpushL
family: Umpush
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Light.ttf
Font: UmpushLOb
family: Umpush
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-LightOblique.ttf
Font: UmpushOb
family: Umpush
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Oblique.ttf
Font: URWBookmanDb
family: URW Bookman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/b018015l.pfb
Font: URWBookmanDbI
family: URW Bookman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/b018035l.pfb
Font: URWBookmanL
family: URW Bookman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/ubkl8a.pfb
Font: URWBookmanLI
family: URW Bookman
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/b018032l.pfb
Font: URWChanceryMediumI
family: URW Chancery
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uzcmi8a.pfb
Font: URWGothicBook
family: URW Gothic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/a010013l.pfb
Font: URWGothicBookOblique
family: URW Gothic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/a010033l.pfb
Font: URWGothicDemi
family: URW Gothic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uagd8a.pfb
Font: URWGothicDemiOblique
family: URW Gothic
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/a010035l.pfb
Font: URWPalladioB
family: URW Palladio
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uplb8a.pfb
Font: URWPalladioBI
family: URW Palladio
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uplbi8a.pfb
Font: URWPalladioI
family: URW Palladio
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/gsfonts/p052023l.pfb
Font: URWPalladioRoman
family: URW Palladio
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uplr8a.pfb
Font: utkalmedium
family: utkal
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/utkal.ttf
Font: UtopiaB
family: Utopia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putb8a.pfb
Font: UtopiaBI
family: Utopia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putbi8a.pfb
Font: UtopiaI
family: Utopia
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putri8a.pfb
Font: VerdanaB
family: Verdana
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/verdanab.ttf
Font: VerdanaBI
family: Verdana
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/verdanaz.ttf
Font: VerdanaI
family: Verdana
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/msttcorefonts/verdanai.ttf
Font: WareeB
family: Waree
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Waree-Bold.ttf
Font: WareeBOb
family: Waree
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Waree-BoldOblique.ttf
Font: WareeOb
family: Waree
style: Undefined
stretch: Undefined
weight: 0
glyphs: /usr/share/fonts/truetype/tlwg/Waree-Oblique.ttf
Font: ZeroZeroIs
family: Zero Zero Is
style: Undefined
stretch: Undefined
weight: 0
glyphs: /home/banteng/git/seforum.com/mobile/app/static/images/blue/fonts/zero_and_zero_is-webfont.ttf
Path: System Fonts
Font: Abyssinica-SIL
family: Abyssinica SIL
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/abyssinica/AbyssinicaSIL-R.ttf
Font: Aegean
family: Aegean
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aegean600.ttf
Font: Aegyptus
family: Aegyptus
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aegyptus313.ttf
Font: Akkadian
family: Akkadian
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Akkadian256.otf
Font: Alexander
family: Alexander
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alexander.otf
Font: Alfios
family: Alfios
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_R.otf
Font: Alfios-Bold
family: Alfios
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_B.otf
Font: Alfios-Bold-Italic
family: Alfios
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_J.otf
Font: Alfios-Italic
family: Alfios
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Alfios_I.otf
Font: Anaktoria
family: Anaktoria
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Anaktoria.otf
Font: Analecta
family: Analecta
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Analecta306.otf
Font: Anatolian
family: Anatolian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Anatolian306.ttf
Font: Andale-Mono
family: Andale Mono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Andale_Mono.ttf
Font: Arial
family: Arial
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Arial.ttf
Font: Arial-Black
family: Arial Black
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf
Font: Arial-Bold
family: Arial
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf
Font: Arial-Bold-Italic
family: Arial
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/arialbi.ttf
Font: Arial-Italic
family: Arial
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/ariali.ttf
Font: Aroania
family: Aroania
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aroania_R.otf
Font: Aroania-Bold
family: Aroania
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Aroania_B.otf
Font: Arvo
family: Arvo
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Arvo-Regular.ttf
Font: Arvo-Bold
family: Arvo
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/Arvo-Bold.ttf
Font: Arvo-Bold-Italic
family: Arvo
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/Arvo-BoldItalic.ttf
Font: Arvo-Italic
family: Arvo
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Arvo-Italic.ttf
Font: Atavyros
family: Atavyros
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Atavyros.otf
Font: Avdira
family: Avdira
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_R.otf
Font: Avdira-Bold
family: Avdira
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_B.otf
Font: Avdira-Bold-Italic
family: Avdira
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_J.otf
Font: Avdira-Italic
family: Avdira
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Avdira_I.otf
Font: Bitstream-Charter
family: Bitstream Charter
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/bchr8a.pfb
Font: Bitstream-Charter-Bold
family: Bitstream Charter
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/X11/Type1/c0632bt_.pfb
Font: Bitstream-Charter-Bold-Italic
family: Bitstream Charter
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/bchbi8a.pfb
Font: Bitstream-Charter-Italic
family: Bitstream Charter
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/bchri8a.pfb
Font: Cantarell-Bold
family: Cantarell
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf
Font: Cantarell-Regular
family: Cantarell
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf
Font: Century-Schoolbook-L-Bold
family: Century Schoolbook L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/c059016l.pfb
Font: Century-Schoolbook-L-Bold-Italic
family: Century Schoolbook L
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/c059036l.pfb
Font: Century-Schoolbook-L-Italic
family: Century Schoolbook L
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/c059033l.pfb
Font: Century-Schoolbook-L-Roman
family: Century Schoolbook L
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uncr8a.pfb
Font: cmex10
family: cmex10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/cmex10.ttf
Font: cmmi10
family: cmmi10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/cmmi10.ttf
Font: cmr10
family: cmr10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/cmr10.ttf
Font: cmsy10
family: cmsy10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/cmsy10.ttf
Font: Comic-Sans-MS
family: Comic Sans MS
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf
Font: Comic-Sans-MS-Bold
family: Comic Sans MS
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf
Font: Courier
family: Courier
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrr8a.pfb
Font: Courier-10-Pitch
family: Courier 10 Pitch
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/X11/Type1/c0419bt_.pfb
Font: Courier-10-Pitch-Bold
family: Courier 10 Pitch
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/X11/Type1/c0583bt_.pfb
Font: Courier-10-Pitch-Bold-Italic
family: Courier 10 Pitch
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/X11/Type1/c0611bt_.pfb
Font: Courier-10-Pitch-Italic
family: Courier 10 Pitch
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/X11/Type1/c0582bt_.pfb
Font: Courier-Bold
family: Courier
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrb8a.pfb
Font: Courier-Bold-Italic
family: Courier
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrbo8a.pfb
Font: Courier-Italic
family: Courier
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/pcrro8a.pfb
Font: Courier-New
family: Courier New
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf
Font: Courier-New-Bold
family: Courier New
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/courbd.ttf
Font: Courier-New-Bold-Italic
family: Courier New
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf
Font: Courier-New-Italic
family: Courier New
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf
Font: DejaVu-Sans
family: DejaVu Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
Font: DejaVu-Sans-Bold
family: DejaVu Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
Font: DejaVu-Sans-Bold-Oblique
family: DejaVu Sans
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf
Font: DejaVu-Sans-Condensed
family: DejaVu Sans
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed.ttf
Font: DejaVu-Sans-Condensed-Bold
family: DejaVu Sans
style: Normal
stretch: SemiCondensed
weight: 700
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf
Font: DejaVu-Sans-Condensed-Bold-Oblique
family: DejaVu Sans
style: Oblique
stretch: SemiCondensed
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-BoldOblique.ttf
Font: DejaVu-Sans-Condensed-Oblique
family: DejaVu Sans
style: Oblique
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Oblique.ttf
Font: DejaVu-Sans-ExtraLight
family: DejaVu Sans
style: Normal
stretch: Normal
weight: 200
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-ExtraLight.ttf
Font: DejaVu-Sans-Mono
family: DejaVu Sans Mono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf
Font: DejaVu-Sans-Mono-Bold
family: DejaVu Sans Mono
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf
Font: DejaVu-Sans-Mono-Bold-Oblique
family: DejaVu Sans Mono
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf
Font: DejaVu-Sans-Mono-Oblique
family: DejaVu Sans Mono
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf
Font: DejaVu-Sans-Oblique
family: DejaVu Sans
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf
Font: DejaVu-Serif
family: DejaVu Serif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf
Font: DejaVu-Serif-Bold
family: DejaVu Serif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Bold.ttf
Font: DejaVu-Serif-Bold-Italic
family: DejaVu Serif
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-BoldItalic.ttf
Font: DejaVu-Serif-Condensed
family: DejaVu Serif
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed.ttf
Font: DejaVu-Serif-Condensed-Bold
family: DejaVu Serif
style: Normal
stretch: SemiCondensed
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-Bold.ttf
Font: DejaVu-Serif-Condensed-Bold-Italic
family: DejaVu Serif
style: Italic
stretch: SemiCondensed
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-BoldItalic.ttf
Font: DejaVu-Serif-Condensed-Italic
family: DejaVu Serif
style: Italic
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-Italic.ttf
Font: DejaVu-Serif-Italic
family: DejaVu Serif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/dejavu/DejaVuSerif-Italic.ttf
Font: Dingbats
family: Dingbats
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uzdr.pfb
Font: Droid-Arabic-Naskh
family: Droid Arabic Naskh
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidNaskh-Regular.ttf
Font: Droid-Arabic-Naskh-Bold
family: Droid Arabic Naskh
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/droid/DroidNaskh-Bold.ttf
Font: Droid-Sans
family: Droid Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSans.ttf
Font: Droid-Sans-Armenian
family: Droid Sans Armenian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansArmenian.ttf
Font: Droid-Sans-Bold
family: Droid Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/droid/DroidSans-Bold.ttf
Font: Droid-Sans-Ethiopic
family: Droid Sans Ethiopic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansEthiopic-Regular.ttf
Font: Droid-Sans-Ethiopic-Bold
family: Droid Sans Ethiopic
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/droid/DroidSansEthiopic-Bold.ttf
Font: Droid-Sans-Fallback
family: Droid Sans Fallback
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf
Font: Droid-Sans-Georgian
family: Droid Sans Georgian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansGeorgian.ttf
Font: Droid-Sans-Hebrew
family: Droid Sans Hebrew
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansHebrew-Regular.ttf
Font: Droid-Sans-Hebrew-Bold
family: Droid Sans Hebrew
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/truetype/droid/DroidSansHebrew-Bold.ttf
Font: Droid-Sans-Japanese
family: Droid Sans Japanese
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansJapanese.ttf
Font: Droid-Sans-Mono
family: Droid Sans Mono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansMono.ttf
Font: Droid-Sans-Thai
family: Droid Sans Thai
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSansThai.ttf
Font: Droid-Serif
family: Droid Serif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/droid/DroidSerif-Regular.ttf
Font: Droid-Serif-Bold
family: Droid Serif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/droid/DroidSerif-Bold.ttf
Font: Droid-Serif-Bold-Italic
family: Droid Serif
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif-BoldItalic.ttf
Font: Droid-Serif-Italic
family: Droid Serif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/DroidSerif-Italic.ttf
Font: esint10
family: esint10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/esint10.ttf
Font: eufm10
family: eufm10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/eufm10.ttf
Font: FontAwesome
family: FontAwesome
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/font-awesome/FontAwesome.otf
Font: FontAwesome-Regular
family: FontAwesome
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/font-awesome/fontawesome-webfont.ttf
Font: FreeMono
family: FreeMono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeMono.ttf
Font: FreeMono-Bold
family: FreeMono
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
Font: FreeMono-Bold-Oblique
family: FreeMono
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf
Font: FreeMono-Oblique
family: FreeMono
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeMonoOblique.ttf
Font: FreeSans
family: FreeSans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeSans.ttf
Font: FreeSans-Bold
family: FreeSans
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/truetype/freefont/FreeSansBold.ttf
Font: FreeSans-Bold-Oblique
family: FreeSans
style: Italic
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf
Font: FreeSans-Oblique
family: FreeSans
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeSansOblique.ttf
Font: FreeSerif
family: FreeSerif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeSerif.ttf
Font: FreeSerif-Bold
family: FreeSerif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
Font: FreeSerif-Bold-Italic
family: FreeSerif
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf
Font: FreeSerif-Italic
family: FreeSerif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/freefont/FreeSerifItalic.ttf
Font: Gardiner
family: Gardiner
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Gardiner313.ttf
Font: gargi
family: gargi
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/gargi.ttf
Font: Garuda
family: Garuda
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Garuda.ttf
Font: Garuda-Bold
family: Garuda
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Garuda-Bold.ttf
Font: Garuda-Bold-Oblique
family: Garuda
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Garuda-BoldOblique.ttf
Font: Garuda-Oblique
family: Garuda
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Garuda-Oblique.ttf
Font: Georgia
family: Georgia
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Georgia.ttf
Font: Georgia-Bold
family: Georgia
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiab.ttf
Font: Georgia-Bold-Italic
family: Georgia
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiaz.ttf
Font: Georgia-Italic
family: Georgia
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/georgiai.ttf
Font: Impact
family: Impact
style: Normal
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Impact.ttf
Font: Indie-Flower
family: Indie Flower
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/IndieFlower.ttf
Font: KacstArt
family: KacstArt
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstArt.ttf
Font: KacstBook
family: KacstBook
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstBook.ttf
Font: KacstDecorative
family: KacstDecorative
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstDecorative.ttf
Font: KacstDigital
family: KacstDigital
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstDigital.ttf
Font: KacstFarsi
family: KacstFarsi
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstFarsi.ttf
Font: KacstLetter
family: KacstLetter
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstLetter.ttf
Font: KacstNaskh
family: KacstNaskh
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstNaskh.ttf
Font: KacstOffice
family: KacstOffice
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstOffice.ttf
Font: KacstOne
family: KacstOne
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/kacst-one/KacstOne.ttf
Font: KacstOne-Bold
family: KacstOne
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/kacst-one/KacstOne-Bold.ttf
Font: KacstPen
family: KacstPen
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstPen.ttf
Font: KacstPoster
family: KacstPoster
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstPoster.ttf
Font: KacstQurn
family: KacstQurn
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/kacst/KacstQurn.ttf
Font: KacstScreen
family: KacstScreen
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstScreen.ttf
Font: KacstTitle
family: KacstTitle
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/kacst/KacstTitle.ttf
Font: KacstTitleL
family: KacstTitleL
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/kacst/KacstTitleL.ttf
Font: Kedage-Bold
family: Kedage
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-b.ttf
Font: Kedage-Normal
family: Kedage
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-n.ttf
Font: Khmer-OS
family: Khmer OS
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOS.ttf
Font: Khmer-OS-System
family: Khmer OS System
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOSsys.ttf
Font: Kinnari
family: Kinnari
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari.ttf
Font: Kinnari-Bold
family: Kinnari
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Bold.ttf
Font: Kinnari-Bold-Italic
family: Kinnari
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf
Font: Kinnari-Bold-Oblique
family: Kinnari
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldOblique.ttf
Font: Kinnari-Italic
family: Kinnari
style: Italic
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Italic.ttf
Font: Kinnari-Oblique
family: Kinnari
style: Oblique
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Oblique.ttf
Font: Liberation-Mono
family: Liberation Mono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf
Font: Liberation-Mono-Bold
family: Liberation Mono
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf
Font: Liberation-Mono-Bold-Italic
family: Liberation Mono
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf
Font: Liberation-Mono-Italic
family: Liberation Mono
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf
Font: Liberation-Sans
family: Liberation Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf
Font: Liberation-Sans-Bold
family: Liberation Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf
Font: Liberation-Sans-Bold-Italic
family: Liberation Sans
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf
Font: Liberation-Sans-Italic
family: Liberation Sans
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf
Font: Liberation-Sans-Narrow
family: Liberation Sans Narrow
style: Normal
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf
Font: Liberation-Sans-Narrow-Bold
family: Liberation Sans Narrow
style: Normal
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf
Font: Liberation-Sans-Narrow-Bold-Italic
family: Liberation Sans Narrow
style: Italic
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf
Font: Liberation-Sans-Narrow-Italic
family: Liberation Sans Narrow
style: Italic
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf
Font: Liberation-Serif
family: Liberation Serif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf
Font: Liberation-Serif-Bold
family: Liberation Serif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf
Font: Liberation-Serif-Bold-Italic
family: Liberation Serif
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf
Font: Liberation-Serif-Italic
family: Liberation Serif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf
Font: LKLUG
family: LKLUG
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/sinhala/lklug.ttf
Font: Lobster
family: Lobster
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Lobster-Regular.ttf
Font: Lohit-Bengali
family: Lohit Bengali
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_bn.ttf
Font: Lohit-Devanagari
family: Lohit Devanagari
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_hi.ttf
Font: Lohit-Gujarati
family: Lohit Gujarati
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_gu.ttf
Font: Lohit-Punjabi
family: Lohit Punjabi
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-punjabi-fonts/lohit_pa.ttf
Font: Lohit-Tamil
family: Lohit Tamil
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_ta.ttf
Font: Loma
family: Loma
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Loma.ttf
Font: Loma-Bold
family: Loma
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Loma-Bold.ttf
Font: Loma-Bold-Oblique
family: Loma
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Loma-BoldOblique.ttf
Font: Loma-Oblique
family: Loma
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Loma-Oblique.ttf
Font: Mallige-Bold
family: Mallige
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-b.ttf
Font: Mallige-Normal
family: Mallige
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-n.ttf
Font: MathJax_AMS-Regular
family: MathJax_AMS
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_AMS-Regular.otf
Font: MathJax_Caligraphic-Bold
family: MathJax_Caligraphic
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Bold.otf
Font: MathJax_Caligraphic-Regular
family: MathJax_Caligraphic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Regular.otf
Font: MathJax_Fraktur-Bold
family: MathJax_Fraktur
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Bold.otf
Font: MathJax_Fraktur-Regular
family: MathJax_Fraktur
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Regular.otf
Font: MathJax_Main-Bold
family: MathJax_Main
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Main-Bold.otf
Font: MathJax_Main-Italic
family: MathJax_Main
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Main-Italic.otf
Font: MathJax_Main-Regular
family: MathJax_Main
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Main-Regular.otf
Font: MathJax_Math-BoldItalic
family: MathJax_Math
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Math-BoldItalic.otf
Font: MathJax_Math-Italic
family: MathJax_Math
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Math-Italic.otf
Font: MathJax_Math-Regular
family: MathJax_Math
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Math-Regular.otf
Font: MathJax_SansSerif-Bold
family: MathJax_SansSerif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Bold.otf
Font: MathJax_SansSerif-Italic
family: MathJax_SansSerif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Italic.otf
Font: MathJax_SansSerif-Regular
family: MathJax_SansSerif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Regular.otf
Font: MathJax_Script-Regular
family: MathJax_Script
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Script-Regular.otf
Font: MathJax_Size1-Regular
family: MathJax_Size1
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Size1-Regular.otf
Font: MathJax_Size2-Regular
family: MathJax_Size2
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Size2-Regular.otf
Font: MathJax_Size3-Regular
family: MathJax_Size3
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Size3-Regular.otf
Font: MathJax_Size4-Regular
family: MathJax_Size4
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Size4-Regular.otf
Font: MathJax_Typewriter-Regular
family: MathJax_Typewriter
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_Typewriter-Regular.otf
Font: MathJax_WinChrome-Regular
family: MathJax_WinChrome
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_WinChrome-Regular.otf
Font: MathJax_WinIE6-Regular
family: MathJax_WinIE6
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/opentype/mathjax/MathJax_WinIE6-Regular.otf
Font: Maya
family: Maya
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Maya106.ttf
Font: Meera
family: Meera
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Meera_04.ttf
Font: mry_KacstQurn
family: mry_KacstQurn
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/kacst/mry_KacstQurn.ttf
Font: msam10
family: msam10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/msam10.ttf
Font: msbm10
family: msbm10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/msbm10.ttf
Font: Mukti-Narrow
family: Mukti Narrow
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrow.ttf
Font: Mukti-Narrow-Bold
family: Mukti Narrow
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrowBold.ttf
Font: Musica
family: Musica
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Musica306.otf
Font: NanumBarunGothic
family: NanumBarunGothic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/nanum/NanumBarunGothic.ttf
Font: NanumBarunGothic-Bold
family: NanumBarunGothic
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/truetype/nanum/NanumBarunGothicBold.ttf
Font: NanumGothic
family: NanumGothic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/nanum/NanumGothic.ttf
Font: NanumGothicBold
family: NanumGothic
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/nanum/NanumGothicBold.ttf
Font: NanumMyeongjo
family: NanumMyeongjo
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/nanum/NanumMyeongjo.ttf
Font: NanumMyeongjoBold
family: NanumMyeongjo
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/nanum/NanumMyeongjoBold.ttf
Font: Nimbus-Mono-L
family: Nimbus Mono L
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/ucrr8a.pfb
Font: Nimbus-Mono-L-Bold
family: Nimbus Mono L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n022004l.pfb
Font: Nimbus-Mono-L-Bold-Oblique
family: Nimbus Mono L
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n022024l.pfb
Font: Nimbus-Mono-L-Regular-Oblique
family: Nimbus Mono L
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/ucrro8a.pfb
Font: Nimbus-Roman-No9-L
family: Nimbus Roman No9 L
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/utmr8a.pfb
Font: Nimbus-Roman-No9-L-Medium
family: Nimbus Roman No9 L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/utmb8a.pfb
Font: Nimbus-Roman-No9-L-Medium-Italic
family: Nimbus Roman No9 L
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/utmbi8a.pfb
Font: Nimbus-Roman-No9-L-Regular-Italic
family: Nimbus Roman No9 L
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/utmri8a.pfb
Font: Nimbus-Sans-L
family: Nimbus Sans L
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvr8a.pfb
Font: Nimbus-Sans-L-Bold
family: Nimbus Sans L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019004l.pfb
Font: Nimbus-Sans-L-Bold-Condensed
family: Nimbus Sans L
style: Normal
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvb8ac.pfb
Font: Nimbus-Sans-L-Bold-Condensed-Italic
family: Nimbus Sans L
style: Italic
stretch: Condensed
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvbo8ac.pfb
Font: Nimbus-Sans-L-Bold-Italic
family: Nimbus Sans L
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/n019024l.pfb
Font: Nimbus-Sans-L-Regular-Condensed
family: Nimbus Sans L
style: Normal
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvr8ac.pfb
Font: Nimbus-Sans-L-Regular-Condensed-Italic
family: Nimbus Sans L
style: Italic
stretch: Condensed
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uhvro8ac.pfb
Font: Nimbus-Sans-L-Regular-Italic
family: Nimbus Sans L
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/n019023l.pfb
Font: Norasi
family: Norasi
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Norasi.ttf
Font: Norasi-Bold
family: Norasi
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Bold.ttf
Font: Norasi-Bold-Italic
family: Norasi
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-BoldItalic.ttf
Font: Norasi-Bold-Oblique
family: Norasi
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-BoldOblique.ttf
Font: Norasi-Italic
family: Norasi
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Italic.ttf
Font: Norasi-Oblique
family: Norasi
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Oblique.ttf
Font: Noto-Sans
family: Noto Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Regular.ttf
Font: Noto-Sans-Armenian
family: Noto Sans Armenian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansArmenian-Regular.ttf
Font: Noto-Sans-Armenian-Bold
family: Noto Sans Armenian
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansArmenian-Bold.ttf
Font: Noto-Sans-Bold
family: Noto Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Bold.ttf
Font: Noto-Sans-Bold-Italic
family: Noto Sans
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSans-BoldItalic.ttf
Font: Noto-Sans-Devanagari
family: Noto Sans Devanagari
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagari-Regular.ttf
Font: Noto-Sans-Devanagari-Bold
family: Noto Sans Devanagari
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagari-Bold.ttf
Font: Noto-Sans-Devanagari-UI
family: Noto Sans Devanagari UI
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Regular.ttf
Font: Noto-Sans-Devanagari-UI-Bold
family: Noto Sans Devanagari UI
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Bold.ttf
Font: Noto-Sans-Ethiopic
family: Noto Sans Ethiopic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansEthiopic-Regular.ttf
Font: Noto-Sans-Ethiopic-Bold
family: Noto Sans Ethiopic
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansEthiopic-Bold.ttf
Font: Noto-Sans-Georgian
family: Noto Sans Georgian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansGeorgian-Regular.ttf
Font: Noto-Sans-Georgian-Bold
family: Noto Sans Georgian
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansGeorgian-Bold.ttf
Font: Noto-Sans-Hebrew
family: Noto Sans Hebrew
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansHebrew-Regular.ttf
Font: Noto-Sans-Hebrew-Bold
family: Noto Sans Hebrew
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/truetype/noto/NotoSansHebrew-Bold.ttf
Font: Noto-Sans-Italic
family: Noto Sans
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSans-Italic.ttf
Font: Noto-Sans-Khmer
family: Noto Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmer-Regular.ttf
Font: Noto-Sans-Khmer-Bold
family: Noto Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmer-Bold.ttf
Font: Noto-Sans-Khmer-UI
family: Noto Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmerUI-Regular.ttf
Font: Noto-Sans-Khmer-UI-Bold
family: Noto Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansKhmerUI-Bold.ttf
Font: Noto-Sans-Lao
family: Noto Sans Lao
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansLao-Regular.ttf
Font: Noto-Sans-Lao-Bold
family: Noto Sans Lao
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansLao-Bold.ttf
Font: Noto-Sans-Lao-UI
family: Noto Sans Lao UI
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansLaoUI-Regular.ttf
Font: Noto-Sans-Lao-UI-Bold
family: Noto Sans Lao UI
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansLaoUI-Bold.ttf
Font: Noto-Sans-Tamil
family: Noto Sans Tamil
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamil-Regular.ttf
Font: Noto-Sans-Tamil-Bold
family: Noto Sans Tamil
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamil-Bold.ttf
Font: Noto-Sans-Tamil-UI
family: Noto Sans Tamil UI
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamilUI-Regular.ttf
Font: Noto-Sans-Tamil-UI-Bold
family: Noto Sans Tamil UI
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansTamilUI-Bold.ttf
Font: Noto-Sans-Thai
family: Noto Sans Thai
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansThai-Regular.ttf
Font: Noto-Sans-Thai-Bold
family: Noto Sans Thai
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansThai-Bold.ttf
Font: Noto-Sans-Thai-UI
family: Noto Sans Thai UI
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansThaiUI-Regular.ttf
Font: Noto-Sans-Thai-UI-Bold
family: Noto Sans Thai UI
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansThaiUI-Bold.ttf
Font: Noto-Sans-UI
family: Noto Sans UI
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Regular.ttf
Font: Noto-Sans-UI-Bold
family: Noto Sans UI
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Bold.ttf
Font: Noto-Sans-UI-Bold-Italic
family: Noto Sans UI
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-BoldItalic.ttf
Font: Noto-Sans-UI-Italic
family: Noto Sans UI
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSansUI-Italic.ttf
Font: Noto-Serif
family: Noto Serif
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Regular.ttf
Font: Noto-Serif-Armenian
family: Noto Serif Armenian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerifArmenian-Regular.ttf
Font: Noto-Serif-Armenian-Bold
family: Noto Serif Armenian
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerifArmenian-Bold.ttf
Font: Noto-Serif-Bold
family: Noto Serif
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Bold.ttf
Font: Noto-Serif-Bold-Italic
family: Noto Serif
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-BoldItalic.ttf
Font: Noto-Serif-Georgian
family: Noto Serif Georgian
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerifGeorgian-Regular.ttf
Font: Noto-Serif-Georgian-Bold
family: Noto Serif Georgian
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerifGeorgian-Bold.ttf
Font: Noto-Serif-Italic
family: Noto Serif
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerif-Italic.ttf
Font: Noto-Serif-Lao
family: Noto Serif Lao
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerifLao-Regular.ttf
Font: Noto-Serif-Lao-Bold
family: Noto Serif Lao
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerifLao-Bold.ttf
Font: Noto-Serif-Thai
family: Noto Serif Thai
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/noto/NotoSerifThai-Regular.ttf
Font: Noto-Serif-Thai-Bold
family: Noto Serif Thai
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/noto/NotoSerifThai-Bold.ttf
Font: Open-Sans
family: Open Sans
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/OpenSans-Regular.ttf
Font: Open-Sans-Bold
family: Open Sans
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/OpenSans-Bold.ttf
Font: Open-Sans-Bold-Italic
family: Open Sans
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/OpenSans-BoldItalic.ttf
Font: Open-Sans-Italic
family: Open Sans
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/OpenSans-Italic.ttf
Font: OpenSymbol
family: OpenSymbol
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/openoffice/opens___.ttf
Font: ori1Uni-Medium
family: ori1Uni
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/utkal.ttf
Font: Padauk
family: Padauk
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/padauk/Padauk.ttf
Font: Padauk-Bold
family: Padauk
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/padauk/Padauk-bold.ttf
Font: Padauk-Book
family: Padauk Book
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/padauk/Padauk-book.ttf
Font: Padauk-Book-Bold
family: Padauk Book
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/padauk/Padauk-bookbold.ttf
Font: Phetsarath-OT
family: Phetsarath OT
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lao/Phetsarath_OT.ttf
Font: Poiret-One
family: Poiret One
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/PoiretOne-Regular.ttf
Font: Pothana2000
family: Pothana2000
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Pothana2000.ttf
Font: PowerlineSymbols
family: PowerlineSymbols
style: Normal
stretch: Normal
weight: 500
glyphs: /home/banteng/.fonts/PowerlineSymbols.otf
Font: Purisa
family: Purisa
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Purisa.ttf
Font: Purisa-Bold
family: Purisa
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Bold.ttf
Font: Purisa-Bold-Oblique
family: Purisa
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-BoldOblique.ttf
Font: Purisa-Oblique
family: Purisa
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Oblique.ttf
Font: Rachana
family: Rachana
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Rachana_04.ttf
Font: Raleway
family: Raleway
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Raleway-Regular.ttf
Font: Raleway-Bold
family: Raleway
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/Raleway-Bold.ttf
Font: Rekha
family: Rekha
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Rekha.ttf
Font: Roboto
family: Roboto
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Roboto-Regular.ttf
Font: Roboto-Bold
family: Roboto
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/Roboto-Bold.ttf
Font: Roboto-Bold-Italic
family: Roboto
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/Roboto-BoldItalic.ttf
Font: Roboto-Condensed
family: Roboto Condensed
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Regular.ttf
Font: Roboto-Condensed-Bold
family: Roboto Condensed
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Bold.ttf
Font: Roboto-Condensed-Bold-Italic
family: Roboto Condensed
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-BoldItalic.ttf
Font: Roboto-Condensed-Italic
family: Roboto Condensed
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/RobotoCondensed-Italic.ttf
Font: Roboto-Italic
family: Roboto
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/Roboto-Italic.ttf
Font: Roboto-Slab-Bold
family: Roboto Slab
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/xmind/RobotoSlab-Bold.ttf
Font: Roboto-Slab-Regular
family: Roboto Slab
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/xmind/RobotoSlab-Regular.ttf
Font: rsfs10
family: rsfs10
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/rsfs10.ttf
Font: Saab
family: Saab
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-punjabi-fonts/Saab.ttf
Font: Sawasdee
family: Sawasdee
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee.ttf
Font: Sawasdee-Bold
family: Sawasdee
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Bold.ttf
Font: Sawasdee-Bold-Oblique
family: Sawasdee
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-BoldOblique.ttf
Font: Sawasdee-Oblique
family: Sawasdee
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Oblique.ttf
Font: Standard-Symbols-L
family: Standard Symbols L
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/usyr.pfb
Font: Symbol
family: Symbol
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/mathml/Symbol.pfb
Font: Symbola
family: Symbola
style: Normal
stretch: SemiCondensed
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Symbola605.ttf
Font: TakaoPGothic
family: TakaoPGothic
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/takao-gothic/TakaoPGothic.ttf
Font: Tibetan_Machine_Uni
family: Tibetan Machine Uni
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tibetan-machine/TibetanMachineUni.ttf
Font: Times-New-Roman
family: Times New Roman
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/times.ttf
Font: Times-New-Roman-Bold
family: Times New Roman
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf
Font: Times-New-Roman-Bold-Italic
family: Times New Roman
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf
Font: Times-New-Roman-Italic
family: Times New Roman
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf
Font: Tlwg-Mono
family: TlwgMono
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono.ttf
Font: Tlwg-Mono-Bold
family: TlwgMono
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Bold.ttf
Font: Tlwg-Mono-Bold-Oblique
family: TlwgMono
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-BoldOblique.ttf
Font: Tlwg-Mono-Oblique
family: TlwgMono
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Oblique.ttf
Font: Tlwg-Typewriter
family: TlwgTypewriter
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter.ttf
Font: Tlwg-Typewriter-Bold
family: TlwgTypewriter
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Bold.ttf
Font: Tlwg-Typewriter-Bold-Oblique
family: TlwgTypewriter
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-BoldOblique.ttf
Font: Tlwg-Typewriter-Mono-Oblique
family: TlwgTypewriter
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Oblique.ttf
Font: Tlwg-Typist
family: Tlwg Typist
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist.ttf
Font: Tlwg-Typist-Bold
family: Tlwg Typist
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Bold.ttf
Font: Tlwg-Typist-Bold-Oblique
family: Tlwg Typist
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-BoldOblique.ttf
Font: Tlwg-Typist-Oblique
family: Tlwg Typist
style: Oblique
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Oblique.ttf
Font: Tlwg-Typo
family: Tlwg Typo
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo.ttf
Font: Tlwg-Typo-Bold
family: Tlwg Typo
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Bold.ttf
Font: Tlwg-Typo-Bold-Oblique
family: Tlwg Typo
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-BoldOblique.ttf
Font: Tlwg-Typo-Oblique
family: Tlwg Typo
style: Oblique
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Oblique.ttf
Font: Trebuchet-MS
family: Trebuchet MS
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/trebuc.ttf
Font: Trebuchet-MS-Bold
family: Trebuchet MS
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf
Font: Trebuchet-MS-Bold-Italic
family: Trebuchet MS
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf
Font: Trebuchet-MS-Italic
family: Trebuchet MS
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf
Font: Ubuntu
family: Ubuntu
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf
Font: Ubuntu-Bold
family: Ubuntu
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf
Font: Ubuntu-Bold-Italic
family: Ubuntu
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf
Font: Ubuntu-Condensed
family: Ubuntu Condensed
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-C.ttf
Font: Ubuntu-Italic
family: Ubuntu
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf
Font: Ubuntu-Light
family: Ubuntu
style: Normal
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf
Font: Ubuntu-Light-Italic
family: Ubuntu
style: Italic
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf
Font: Ubuntu-Medium
family: Ubuntu
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-M.ttf
Font: Ubuntu-Medium-Italic
family: Ubuntu
style: Italic
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-MI.ttf
Font: Ubuntu-Mono
family: Ubuntu Mono
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-R.ttf
Font: Ubuntu-Mono-Bold
family: Ubuntu Mono
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-B.ttf
Font: Ubuntu-Mono-Bold-Italic
family: Ubuntu Mono
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-BI.ttf
Font: Ubuntu-Mono-Italic
family: Ubuntu Mono
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-RI.ttf
Font: Umpush
family: Umpush
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Umpush.ttf
Font: Umpush-Bold
family: Umpush
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Bold.ttf
Font: Umpush-Bold-Oblique
family: Umpush
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-BoldOblique.ttf
Font: Umpush-Light
family: Umpush
style: Normal
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Light.ttf
Font: Umpush-Light-Oblique
family: Umpush
style: Oblique
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-LightOblique.ttf
Font: Umpush-Oblique
family: Umpush
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Oblique.ttf
Font: Unidings
family: Unidings
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-ancient-scripts/Unidings605.ttf
Font: URW-Bookman-L-Demi-Bold
family: URW Bookman L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/b018015l.pfb
Font: URW-Bookman-L-Demi-Bold-Italic
family: URW Bookman L
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/b018035l.pfb
Font: URW-Bookman-L-Light
family: URW Bookman L
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/gsfonts/b018012l.pfb
Font: URW-Bookman-L-Light-Italic
family: URW Bookman L
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/ubkli8a.pfb
Font: URW-Chancery-L-Medium-Italic
family: URW Chancery L
style: Italic
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uzcmi8a.pfb
Font: URW-Gothic-L-Book
family: URW Gothic L
style: Normal
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uagk8a.pfb
Font: URW-Gothic-L-Book-Oblique
family: URW Gothic L
style: Oblique
stretch: Normal
weight: 300
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uagko8a.pfb
Font: URW-Gothic-L-Demi
family: URW Gothic L
style: Normal
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uagd8a.pfb
Font: URW-Gothic-L-Demi-Oblique
family: URW Gothic L
style: Oblique
stretch: Normal
weight: 600
glyphs: /usr/share/fonts/type1/gsfonts/a010035l.pfb
Font: URW-Palladio-L-Bold
family: URW Palladio L
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/p052004l.pfb
Font: URW-Palladio-L-Bold-Italic
family: URW Palladio L
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/gsfonts/p052024l.pfb
Font: URW-Palladio-L-Italic
family: URW Palladio L
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/uplri8a.pfb
Font: URW-Palladio-L-Roman
family: URW Palladio L
style: Normal
stretch: Normal
weight: 500
glyphs: /usr/share/fonts/type1/gsfonts/p052003l.pfb
Font: Utopia
family: Utopia
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putr8a.pfb
Font: Utopia-Bold
family: Utopia
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putb8a.pfb
Font: Utopia-Bold-Italic
family: Utopia
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putbi8a.pfb
Font: Utopia-Italic
family: Utopia
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/type1/texlive-fonts-recommended/putri8a.pfb
Font: Vemana2000
family: Vemana2000
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/ttf-indic-fonts-core/Vemana.ttf
Font: Verdana
family: Verdana
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Verdana.ttf
Font: Verdana-Bold
family: Verdana
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/verdanab.ttf
Font: Verdana-Bold-Italic
family: Verdana
style: Italic
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/msttcorefonts/verdanaz.ttf
Font: Verdana-Italic
family: Verdana
style: Italic
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf
Font: Waree
family: Waree
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Waree.ttf
Font: Waree-Bold
family: Waree
style: Normal
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Waree-Bold.ttf
Font: Waree-Bold-Oblique
family: Waree
style: Oblique
stretch: Normal
weight: 700
glyphs: /usr/share/fonts/truetype/tlwg/Waree-BoldOblique.ttf
Font: Waree-Oblique
family: Waree
style: Oblique
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/tlwg/Waree-Oblique.ttf
Font: wasy10
family: wasy10
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/lyx/wasy10.ttf
Font: Webdings
family: Webdings
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/msttcorefonts/Webdings.ttf
Font: WenQuanYi-Micro-Hei
family: WenQuanYi Micro Hei
style: Normal
stretch: Normal
weight: 400
glyphs: /usr/share/fonts/truetype/wqy/wqy-microhei.ttc
Re: create text shadow
Posted: 2017-02-07T18:12:32-07:00
by kholidfu
this command works perfectly...
Code: Select all
convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity center -compose over -composite \
result.png
and how to make this font shadowed?