Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Ethan A Merritt Newsgroups: comp.graphics.apps.gnuplot Subject: Re: change xtics font/fontsize in terminal pstricks Date: Wed, 03 Sep 2014 09:27:10 -0700 Organization: gnuplot development Lines: 34 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Injection-Date: Wed, 3 Sep 2014 16:27:12 +0000 (UTC) Injection-Info: mx05.eternal-september.org; posting-host="8e86a57dfa599721f116da4577f3d1af"; logging-data="6652"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18t1EDSOKQYtwjqVwCNP5z5" User-Agent: KNode/4.10.5 Cancel-Lock: sha1:KxxA2X8jfhBrzQ9ZkglkKEDWJuU= Xref: csiph.com comp.graphics.apps.gnuplot:2573 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