我使用 gnuplot 及其epslatex
终端。当我在文档中包含 gnuplot 生成的图形并像往常一样将其居中时,它经常会向右移动 — — 因为左侧的标签会影响 LaTeX 计算的图形宽度:
\documentclass[12pt]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\lipsum[1]
\begin{figure}
\caption{I am visually shifted right!}
\centering
\input{myplot}
% Plot source:
%
% set terminal epslatex color
% set output 'myplot.tex'
% set format '$%g$'
% set ylabel 'A label'
% plot 100000 * sin(x) title '$100000 \sin x$'
%
\end{figure}
\end{document}
结果:
问题是:适当地对齐这样的图,使得图的中心与页面水平中心匹配?(手动插入匹配的负水平空间不算数。(-:
)
答案1
lmargin at screen 0
您可以使用和在 gnuplot 中设置绘图的边距rmargin at screen 1.0
,以便绘图占据整个画布。标签仍将正确放置: