GNUPlot generated EPS figure in latex

Click For Summary

Discussion Overview

The discussion focuses on the workflow for including .eps graphics generated with gnuplot into LaTeX documents. Participants explore issues related to managing white space in figures, the appropriate LaTeX compiler for .eps files, and the integration of PNGs with vector graphics in LaTeX.

Discussion Character

  • Technical explanation
  • Debate/contested
  • Exploratory

Main Points Raised

  • One participant seeks advice on generating bounding boxes for .eps files to reduce white space, noting that manual editing is impractical for multiple files.
  • Another participant suggests using the graphicx package to crop graphics for display without altering the original files.
  • There is a question about which LaTeX compiler to use, with a participant noting that PDFLATEX does not support .eps files directly and requires conversion to PDFs.
  • A later reply clarifies that the axis or legend of the diagram, rather than the label, should not be part of the graphic to avoid unnecessary conversions.
  • One participant argues that regenerating the PDF is not impractical if the process is scripted, suggesting the use of tools like make for automation.
  • Another participant shares their experience with a complex workflow involving multiple programs and scripting to manage the generation of PDF documents efficiently.

Areas of Agreement / Disagreement

Participants express differing views on the practicality of regenerating PDFs and the necessity of scripting for efficiency. There is no consensus on the best approach to managing .eps files and their integration into LaTeX.

Contextual Notes

Some limitations include the dependence on specific LaTeX packages and the need for scripting knowledge to automate the workflow. The discussion does not resolve the best practices for handling graphics in LaTeX.

mzh
Messages
61
Reaction score
0
Dear Forum
I would like to establish a workflow of how to include .eps graphics generated with gnuplot into Latex documents and it would be great if other could contribute to this.
At the moment its like this. I plot some data with gnuplot and save it to a .eps file. However, the "white-space" margin to the left and right are too large (so placing to figures next to each other looks bad).
First question: What is the smartest way of generating a bounding box that does not include so much white space? Of course, I can edit the eps file, but still, doing it for 5, 10 or more files is impractical.
Second question: what latex compiler do I need to be able to compile the document with the eps figures? PDFLATEX does not work, it requires PNGs or PDFs. So i need to convert the eps files first to pdfs, which is also impractical to do everytime I need to change a label.
Third question: How can PNGs be combined with vector graphics in the same latex document?

So, I really would like to establish this for me now once and for all. Maybe its also usefull to others.

Thanks for your feedback.
 
Physics news on Phys.org
Consult for example http://en.wikibooks.org/wiki/LaTeX/Importing_Graphics

I use the following packages:
graphicx (for importing raster graphics [I use png and sometimes eps])
pstricks (for fancy vector graphics).
You can use the ordinary picture environment if you don't need fancy graphics.

graphicx can display a specified region of your graphics file, effectively cropping for display without altering the original.

In a pspicture or picture environment,
I import the graphics [using includegraphics from graphicx],
then draw my vector graphics on top of it (for example, adding text, symbols, arrows, or other LaTeX graphics). Some trial and error is involved to do the positioning.

Scripting (e.g., with perl or python) can help with repetitive tasks.
I use ImageMagick's identify to help get the pixel dimensions of my graphics files.
I use a perl script to read its output and have it write the includegraphics command with bounding box dimensions and scaling information.
I actually use an additional program to send its output to my clipboard so that I can paste it in my editor.
 
Last edited:
mzh said:
Second question: what latex compiler do I need to be able to compile the document with the eps figures? PDFLATEX does not work, it requires PNGs or PDFs. So i need to convert the eps files first to pdfs, which is also impractical to do everytime I need to change a label.
You shouldn't have to reconvert every time you change the label. The label should not be a part of the graphic. Label the figure with the \caption command:

Code:
\begin{figure}
\centering
\includegraphics{name_of_file_containing_graph}
\caption{Caption that gives meaning to the graph}
\label{some_unique_label}
\end{figure}
 
@pf mentor: sorry, was not clear here. didnt mean the lable. Rather say the axis or the key/legend of the diagram.
 
Why is regenerating the pdf impractical every time you change something in the diagram? After all, you regenerate the .eps file every time you change something in the diagram.

The solution is to script the process. If you are on a Unix derivative, use make. I often use a complex web of programs to create my pdf documents. Some figures are specified as graphviz .dot files that must be processed by dot, others are files that must be processed by gnuplot (and occasionally post-processed by ps2pdf), and so on. Some of those .dot files and gnuplot data files are automatically generated by other programs.

I would be forced to type that entire mess by hand if I didn't have it all scripted. That would be nigh impossible to get right. Fortunately, it is scripted. It can take a while to get the scripts right, but once you have them right they're pretty much static. And portable. One of the projects I work on has thousands of pages of pdf documentation generated by latex. We would be DOA if it weren't for all the scripting magic used to create those documents.
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 16 ·
Replies
16
Views
18K
  • · Replies 4 ·
Replies
4
Views
43K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
5K
  • · Replies 1 ·
Replies
1
Views
7K
  • · Replies 1 ·
Replies
1
Views
6K
  • · Replies 4 ·
Replies
4
Views
21K
  • · Replies 15 ·
Replies
15
Views
35K