help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: special characters in title and label


From: Schirmacher, Rolf
Subject: RE: special characters in title and label
Date: Wed, 31 Oct 2007 20:44:53 +0100

It depends. If you want it as some printed output, simply use the
"pslatex"-style print-devices and enter latex commands inside the labels.
Then, you get some (e)ps for the graphics and some .tex file to generate the
labels. 

You might automatically work on. For example, I use something like

function pdfprint(fname)
print('-depslatexstandalone', '-color', '-solid', [fname '.tex']); 
system(['epstopdf ' fname '-inc.eps']);
system(['pdflatex ' fname '.tex']);
system(['rm ' fname '-inc.eps']);
system(['rm ' fname '-inc.pdf']);
system(['rm ' fname '.tex']);
system(['rm ' fname '.aux']);
system(['rm ' fname '.log']);

to automatically generate a pdf plot by plotting it through the
epslatexstandalone device, transforming the ps file to a pdf (using
epstopdf, which is included with the miktex distribution for windows), bind
the graphics pdf and the labels together by pdflatex and finally clean up by
removing the "temporary" files. 

Please note: This is no example of fine programming, just a demonstration of
the approach. 

Rofl

> -----Original Message-----
> From: Evan [mailto:address@hidden
> Sent: Wednesday, October 31, 2007 7:13 PM
> To: address@hidden
> Subject: special characters in title and label
> 
> 
> can I use something like $\tilde{w}$ in the tile or the label 
> of a plot?
> if yes, how?
> 
> Thanks in advance
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www.cae.wisc.edu/mailman/listinfo/help-octave
> 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]