Graphics, Figures & Tables ⇒ Gnuplot LaTeX Output
- devilsadvocate
- Posts: 13
- Joined: Thu Jun 16, 2011 10:21 pm
Gnuplot LaTeX Output
Hi,
I am using gnuplot latex mode of writing. While I am plotting in gnuplot, I am getting my ylabel oriented correctly (text parallel to y-axis). But when I am writing out the .tex file, the text is not rotated. Did anybody face this. How to solve this ?
Regards,
I am using gnuplot latex mode of writing. While I am plotting in gnuplot, I am getting my ylabel oriented correctly (text parallel to y-axis). But when I am writing out the .tex file, the text is not rotated. Did anybody face this. How to solve this ?
Regards,
Last edited by devilsadvocate on Fri Jun 17, 2011 8:53 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Gnuplot LaTeX Output
Think about alternatives by LaTeX packages [1,2]. So you could evade these problems.
[1] View topic: Axis Labels of EPS File missing?
[2] View topic: Math formatting in Gnuplot Graph
Thorsten
[1] View topic: Axis Labels of EPS File missing?
[2] View topic: Math formatting in Gnuplot Graph
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- devilsadvocate
- Posts: 13
- Joined: Thu Jun 16, 2011 10:21 pm
Gnuplot LaTeX Output
Thanks Everybody for help! It worked out. The issue was I was using terminal latex instead of epslatex.
Now another come. I am including generated files in my dokument, like as follows:
There is now no control in size of my figure. Any solution ?
I am gonna include these as sub-figures.
Regards,
Now another come. I am including generated files in my dokument, like as follows:
Code: Select all
\begin{figure}[!ht]
\centering
\input{RESULTS/myGoat.tex}
\caption{Get a Free Goat!}
\label{img:this_goat_is_free}
\end{figure}
I am gonna include these as sub-figures.
Regards,
Gnuplot LaTeX Output
Put your \input command inside a \scalebox command. For example, to make the graph 75% its original size:
Code: Select all
\begin{figure}[!ht]
\centering
\scalebox{0.75}{\input{RESULTS/myGoat.tex}}
\caption{Get a Free Goat!}
\label{img:this_goat_is_free}
\end{figure}
- devilsadvocate
- Posts: 13
- Joined: Thu Jun 16, 2011 10:21 pm
Re: Gnuplot LaTeX Output
This worked!
I can now get rid of my MATLAB plot outputs.
Thanks for the help
Regards,
I can now get rid of my MATLAB plot outputs.
Thanks for the help
Regards,