\hfill 和 \hspace 不起作用

\hfill 和 \hspace 不起作用

全部,

我想将三个数字放在一行中,横跨两列。我使用了\hfill和 ,\hspace{}以便让三个数字完全横跨纸张的水平宽度。但是,经过这么多次尝试,我就是做不到。右边总是有一些空间, 和\hfill\hspace{}无法帮助占据空间。下面是一个 MWE。

请使用此链接下载图表http://pan.baidu.com/share/link?shareid=3521927653&uk=3776487005。(打开页面点击下方按钮即可下载,页面为中文。)

在此处输入图片描述

%\documentclass[conference]{IEEEtran}
\documentclass[9.5pt,conference,compsocconf,letterpaper]{IEEEtran} %ICDCS
\usepackage[noend]{algpseudocode}
\usepackage[ruled]{algorithm}
\usepackage{subfigure}
\usepackage{graphicx}
\usepackage{times}
\usepackage{amssymb}
\usepackage{url}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{wrapfig}
\algnewcommand{\LineComment}[1]{\State \(\triangleright\) #1}

\begin{document}

%\title{xxx}
%
%\maketitle


\begin{figure*}[htp]
  % Requires \usepackage{graphicx}
  \begin{minipage}{0.32\textwidth}%
      \centering
      \includegraphics[width=1\textwidth]{merging_and_balancing_multi_thread.eps}%
      \caption{\small Multi-thread monitoring speed with both merging and balancing optimizations.}%
      \label{fig:merging_and_balancing_multi_thread}%
  \end{minipage}\hspace{0.2cm}
  \begin{minipage}{0.33\textwidth}%
      \centering
      \includegraphics[width=1.1\textwidth]{Monitoring_result_and_ground_truth.eps}%
      \caption{\small Popularity monitored by the fixed window and sliding window designs,
                compared with the popularity ground truth.}%
      \label{fig:Monitoring_result_and_ground_truth}%
  \end{minipage}\hfill
  \begin{minipage}{0.32\textwidth}%
      \centering
      \includegraphics[width=1.05\textwidth]{Deviation_distribution.eps}%
      \caption{\small The deviation distribution.}%
      \label{fig:Deviation_distribution}%
  \end{minipage}
  \vspace{-0.6cm}
\end{figure*}


\end{document} 

答案1

图像未裁剪,且有白色边缘。例如,Deviation_distribution.eps有边界框:

%%BoundingBox:    44   238   549   604

真正的边界框可以通过 ghostscript 计算:

$ gs -sDEVICE=bbox -dBATCH -dNOPAUSE Deviation_distribution.eps

结果是:

%%BoundingBox: 49 246 493 585
%%HiResBoundingBox: 49.936780 246.815992 492.839985 584.243982

白色边缘为:

  • 剩下:49bp - 44bp = 5bp
  • 底部:246bp - 238bp = 8bp
  • 右:549bp-493bp=56bp
  • 顶部:604bp - 585bp = 19bp

可以通过将 替换为 ghostscript 设备的结果来.eps修复文件。或者程序%%BoundingBoxbboxepstool --copy --bbox可以使用。

对于 PDF 文件,可以使用pdfcrop

使用裁剪的图像,您可以清理代码(例如,1.1\textwidth通常会导致过度\hbox警告)。

相关内容