Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #2569 > unrolled thread

change xtics font/fontsize in terminal pstricks

Started byu.gotzes@gmail.com
First post2014-09-01 01:47 -0700
Last post2014-09-03 09:27 -0700
Articles 2 — 2 participants

Back to article view | Back to comp.graphics.apps.gnuplot


Contents

  change xtics font/fontsize in terminal pstricks u.gotzes@gmail.com - 2014-09-01 01:47 -0700
    Re: change xtics font/fontsize in terminal pstricks Ethan A Merritt <sfeam@users.sourceforge.net> - 2014-09-03 09:27 -0700

#2569 — change xtics font/fontsize in terminal pstricks

Fromu.gotzes@gmail.com
Date2014-09-01 01:47 -0700
Subjectchange xtics font/fontsize in terminal pstricks
Message-ID<eee40c39-02e8-47b6-87d0-13c89b9aa266@googlegroups.com>
Hello,

I'm unable to change the xtics fontsize. Can anybody help?

My plotfile currently looks like this:

___________________________
set terminal pstricks
set output "plot.tex"
...
set xdata time
set timefmt x "%Y-%m-%d"
...
set xtics font ",6"
...
plot ...
___________________________

fontsize 6,8,18,30 has no effect.

Thanks a lot,
Uwe

[toc] | [next] | [standalone]


#2573

FromEthan A Merritt <sfeam@users.sourceforge.net>
Date2014-09-03 09:27 -0700
Message-ID<lu7fgv$6fs$1@dont-email.me>
In reply to#2569
u.gotzes@gmail.com wrote:

> Hello,
> 
> I'm unable to change the xtics fontsize. Can anybody help?
> 
> My plotfile currently looks like this:
> 
> ___________________________
> set terminal pstricks

pstricks produces LaTeX output, and therefore the text 
processing is done by LaTeX rather than by gnuplot.
Your choice of terminal bypasses the built-in gnuplot
font and text formatting commands.   If you want gnuplot
to do the text layout, use "set term postscript" 
(or pdf or eps or ...) instead.

	Ethan


> set output "plot.tex"
> ...
> set xdata time
> set timefmt x "%Y-%m-%d"
> ...
> set xtics font ",6"
> ...
> plot ...
> ___________________________
> 
> fontsize 6,8,18,30 has no effect.
> 
> Thanks a lot,
> Uwe

[toc] | [prev] | [standalone]


Back to top | Article view | comp.graphics.apps.gnuplot


csiph-web