[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: qt: available fonts
From: |
Tatsuro MATSUOKA |
Subject: |
Re: qt: available fonts |
Date: |
Thu, 28 Jul 2016 18:36:06 +0900 (JST) |
>From: Clinton Winant
>To: Octave Help
>Date: 2016/7/28, Thu 18:17
>Subject: qt: available fonts
>
>
>Is there a way of listing available fonts for qt that are similar for the
>terminal and print outputs? Can any of these be used at font angle different
>from 0 or 90? This is useful for label individual curves on a plot.
>
When submitting a question, please write
1. octave version
2. platform and its version (e,g, windows 10, Ubuntu 16.04)
Octave GUI uses fontconfig for font handling.
If you are using octave on linux, execute from terminal
$ fc-list
To redirect to file
$ fc-list > list.txt
On windows, execute octave
>> system ('fc-list > list.txt ')
Note that list.txt is utf-8 encoded.
HTH
Tatsuro