Results 1 to 8 of 8

Thread: matlab fonts

  1. #1
    Join Date
    Mar 2007
    Beans
    97
    Distro
    Ubuntu

    matlab fonts

    Hello,

    I know that lots of people have posted about the problem with font sizes in matlab and how to solve it by installing xfonts-100dpi and xfonts-75dpi (e.g. this thread). Which worked for me.
    The issue is that those fonts are not high enough resolution. I attach 2 figures generated with the exact same code in my ubuntu (12.04) and from a colleague on windows (I think) - saved as tiff then cropped & converted to jpg for upload here. The first is the ubuntu one - very pixelated. I imagine because those fonts are 100 dpi and I saved at 300 dpi resolution (needed for publications standards...).
    ubuntu.jpgwindows.jpg

    Anybody has any solution for this??? like, higher resolution fonts, ways to go around this? (I know I can save as ps and then convert, but it's kind of a pain).

    Thanks a lot in advance...

    PS in case someone has matlab running on a later version, I'm interested to know if the same problem exists. I don't really want to upgrade if it doesn't fix the issue since I'd rather stay LTS.
    Last edited by kalyp; June 25th, 2013 at 11:47 PM.

  2. #2
    Join Date
    May 2007
    Location
    Newcastle, Australia
    Beans
    13
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: matlab fonts

    Yes, I would love an answer to this as well.

  3. #3
    Join Date
    Mar 2007
    Beans
    97
    Distro
    Ubuntu

    Re: matlab fonts

    I actually ended up asking the Matlab support - they were very good about it (I didn't actually believe they could solve that but they did!). Basically there was no truetype fonts in my path for whatever reason. He could tell that from the command
    Code:
    xset -q | grep font
    As for adding truetype font he pointed me towards this link and it worked using DejaVu (standard font in the /usr/share/fonts/truetype folder).

    I actually didn't fully solve the issue because DejaVu is not that great of a font (but didn't have the pixellation problem) and I got stuck at the next step which was download and install a truetype helvetica font. Somehow matlab was still using his helvetica when I was trying to call the new one. Also, in the link above they create /usr/share/X11/xorg.conf.d/04-fonts.conf to add the font permanently and that didn't seem to work. At that point I gave up - if you solve that further I'm more than interested as that would still make my life easier! For now I keep the pixelation for the figures I don't care about, and for publication figures I save them as .ps and then open them in gimp to convert to tiff / jpg.

    Let me know if you have any questions about this - if you pm me I can forward the emails I exchanged with matlab support.

  4. #4
    Join Date
    Apr 2007
    Beans
    1

    Re: matlab fonts

    Thanks for this great tip! It worked and I even was able to install all my truetype fonts and let them recognized by Matlab R2011a on Ubuntu 13.10.
    Here is the way :

    1. Copy all your truetype fonts (*.ttf files) to /usr/local/fonts/truetype

    2. Create a fonts.scale and a fonts.dir in that directory:

    sudo mkfontscale /usr/local/fonts/truetype/
    sudo mkfontdir /usr/local/fonts/truetype/

    3. Create the file /etc/X11/xorg.conf.d/04-fonts.conf with the following content:

    Section "Files"
    FontPath "/usr/local/fonts/truetype"
    EndSection

    4. Logout and then login.

    You can check that your fonts are available with:

    xset -q |grep font
    xlsfonts |grep <your-font-name>

    And then, all the fonts from the truetype dir are available for Matlab graphics.

  5. #5
    Join Date
    Mar 2007
    Beans
    97
    Distro
    Ubuntu

    Re: matlab fonts

    Awesome, I'm glad you got it to work!

    Did you manage to install a truetype helvetica? that's the one I was after... Thanks!

  6. #6
    Join Date
    May 2008
    Beans
    16

    Re: matlab fonts

    To have "beautiful" fonts, you also need:
    gsfonts-X11
    gsfonts-other

    on top of xfonts-100dpi and xfonts-75dpi.

    Reboot and labels should be much better.

  7. #7
    Join Date
    Mar 2007
    Beans
    97
    Distro
    Ubuntu

    Re: matlab fonts

    This totally solved the problem (that I still had) for me. Thanks a bunch!!!

  8. #8
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: matlab fonts

    Good, please mark the thread 'solved' using 'thread tools'.
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •