IEEE カンファレンス LaTeX 形式で 2 つの列とテキストを結合した表

IEEE カンファレンス LaTeX 形式で 2 つの列とテキストを結合した表

ここに画像の説明を入力してくださいここに画像の説明を入力してください

1: エイチティー強調されたテキスト出典:http://i.stack.imgur.com/MP5IU.png

拝啓、

ieee ラテックス テンプレートで作成した表が 1 つの列に固定され、幅全体に広がっています。助けてください。ありがとうございます

\begin{table}
  \centering
  \renewcommand\arraystretch{1.5}
  \begin{tabularx}{\textwidth}{p{2cm}p{2cm}p{4.5cm}p{2cm}}
    \toprule
    \centering\textbf{Technique Used} &
    \centering\textbf{Premise Considered} &
    \centering\textbf{Attributes} &
    \centering\textbf{Approach} \cr
    \midrule
    Potential Fields \cite{howard2002mobile} &
    Location information and range &
    Balanced deployment with the help of repulsive mechanism, when in proximity to obstacles &
\cr
\cline{1-3}
%
DSS Algorithm \cite{heo2003intelligent} &
Location information &
A profitable scheme to conserve energy during deployment of a WSN divided into clusters &
\multirow{-2}{2cm}{Virtual forces} \cr
\hline

Co-Fi \cite{ganeriwal2004self} &
Location information &
Ditributed scheme to conserve energy and provide regulated coverage fidelity &
\cr
\cline{1-3}
VEC, VOR, Minmax \cite{wang2006movement} &
Location information &
Identify coverage holes and enabling sensors to move away from dense area &
\multirow{-2}{2cm}{Computational geometry} \cr
\bottomrule
\end{tabularx}
\caption{Location information and varying topology problem.}
\label{tab:1}
\end{table}

答え1

あなたはサイズ変更ボックス環境を使用してテーブルの幅を指定します。この例では、幅を 12cm に設定しています。

\resizebox{12cm}{!} {
  \begin{tabular}
   %the content of your table
  \end{tabular}
 }

答え2

\columnwidth代わりに使用してください\textwidth

\begin{tabularx}{\columnwidth}{@{}p{0.15\columnwidth}p{0.2\columnwidth}
                                  p{0.3\columnwidth}p{0.15\columnwidth}}

完全なコード:

\documentclass{ieeetran}
\usepackage{tabularx,multirow,booktabs,lipsum}
\begin{document}
  \begin{table}
  \centering
  \renewcommand\arraystretch{1.5}
  \begin{tabularx}{\columnwidth}{@{}p{0.15\columnwidth}p{0.2\columnwidth}p{0.3\columnwidth}p{0.15\columnwidth}}
    \toprule
    \centering\textbf{Technique Used} &
    \centering\textbf{Premise Considered} &
    \centering\textbf{Attributes} &
    \centering\textbf{Approach} \cr
    \midrule
    Potential Fields \cite{howard2002mobile} &
    Location information and range &
    Balanced deployment with the help of repulsive mechanism, when in proximity to obstacles &
\cr
\cline{1-3}
%
DSS Algorithm \cite{heo2003intelligent} &
Location information &
A profitable scheme to conserve energy during deployment of a WSN divided into clusters &
\multirow{-2}{0.15\columnwidth}{Virtual forces} \cr
\hline

Co-Fi \cite{ganeriwal2004self} &
Location information &
Ditributed scheme to conserve energy and provide regulated coverage fidelity &
\cr
\cline{1-3}
VEC, VOR, Minmax \cite{wang2006movement} &
Location information &
Identify coverage holes and enabling sensors to move away from dense area &
\multirow{-2}{0.15\columnwidth}{Computational geometry} \cr
\bottomrule
\end{tabularx}
\caption{Location information and varying topology problem.}
\label{tab:1}
\end{table}
\lipsum
\end{document}

ここに画像の説明を入力してください

関連情報