I produce an EPS figure with Gnuplot, with the command:
set term post solid rounded enhanced color 'Helvetica, 16'
replot
I need to plot this figure on a poster which I am writing with LaTeX. I am writing the poster with the multicolumn environment, which doesn't recognise the command \begin{figure} (probably this is not essential to answer my question).
I am able to upload the figure, but I have the following problem: the image appears only in a corner of the figure, the remaining part of the figure is empty. I think it is a problem with the EPS file, as I find the same problem when I try to print directly the EPS file from the printer: when I open the file, the image correctly covers the whole "paper", but when I print it the image is located in a small corner of the A4 paper.
Can anyone help me? It's one day I am trying to solve this problem!!
\includegraphics[bb= 100 200 300 400]where the four numbers are the coordinates of the bottom left and top right in postscript points (bp) or you can use any other TeX unit. – David Carlisle Nov 17 '12 at 10:52\fbox{\includegraphics.....}then with the fbox you can see the space TeX is leaving for the figure and measure the distance to the bottom left corner of the actual figure – David Carlisle Nov 17 '12 at 10:53set terminal postscript epshelps to get real Encapsulated PostScript.epstoolhelps to fix the bounding box, if it is not correct. Howeverepstooldoes not convert a PostScript file to Encapsulated PostScript. – Heiko Oberdiek Nov 17 '12 at 10:55