[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Underscore is not converted into subscript while exporting in PDF
From: |
Andreas Weber |
Subject: |
Re: Underscore is not converted into subscript while exporting in PDF |
Date: |
Mon, 12 Jan 2015 18:19:13 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.3.0 |
Am 12.01.2015 um 17:36 schrieb afullo:
> Hello all. I have a problem with a plot functionality (I'm using Octave 3.8.1
> on Ubuntu 14.04 64-bit). If I create an arbitrary label in a plot,
This is a known issue when using graphics_toolkit fltk (the default in
3.8.1).
You can switch to gnuplot:
octave:1> graphics_toolkit gnuplot
octave:2> text (0.5, 0.5, "R_1")
octave:3> print ("out.pdf")
Or use the FLTK toolkit and latex to render the text. See here for an
example with LaTeX: http://wiki.octave.org/Printing_with_FLTK
Hope that helps, Andy