Description:
In epslatex terminal tic label font size can't be changed.
Steps to reproduce:
Run the following script with different font sizes.
set terminal epslatex
set output "out.tex"
set title "t4"
set tics font "helvetica,20"
plot sin(x)
expected behavior:
font size must change on the plot when changing font size on the line
set {x,y,}tics font "helvetica,20"
Is it a bug/feature/just me?
gnuplot 4.6 patchlevel 3 (Gentoo revision r0)
Gentoo Linux
It's just you.
The whole point of using one of the latex terminals is that the text and font handling is left to latex. Gnuplot provides the graphics part, as an *.eps file in this case, but latex provides the fonts and text processing.
The only effect of specifying a font size in this situation is to give gnuplot a hint that it needs to leave more space for the tic labels. But even with the hint, gnuplot can only make a rough guess at what latex will actually do when in chooses a font and processes the document.
so I'll have to edit gnuplot output file
No, you can use something like
or similar.