mulitrow でテーブルを作成していますが、問題が発生しています。私が理解している限り、これは複数行の形式です。
\multirow{count}{alignment}{content}
ここで、count はマージする行数、alignment は l、c、r、または * のいずれか、content は行のコンテンツです。私は次のことを試しました:
\multirow{3}{*}{Framing}
しかし、私は問題を抱えています。セルに「Framing」という単語が表示されるのではなく、\multirow 要素が機能していないことを示す「3*Framing」が表示されます。何か案が?
また、セル内のテキストを垂直方向に揃えるにはどうすればよいですか?
更新: \usepackage{multirow} で解決できると思いましたが、まだ問題があります。まず、垂直方向の配置を作成できません。第二に、「フレーミング」セルで奇妙なことが起こります。「Framing」を左に揃える代わりに、文字「l」を含む 1 つの仮想行を取得し、2 つの仮想行の後に「Framing」という単語を取得します!! それは次のようなものです:
______________
| l |
| |
| Framing |
| |
| |
| |
| |
______________
これは、それについて尋ねた人のための私の表です:
\begin{table*}\tiny
\centering
\begin{tabular}{|c|c|c|c|c|p{2in}|}
\hline
Rule & Factor & Best Value & \Delta_t & \Delta_{do} & Comments \\
\hline
% Diagonal Dominance Rule
\multirow{3}{*}{Diagonal Dominance} & Line Angle & 45 & 15 & 30 & The angle between the prominent line of the object and
the diagonal lines \\ % TODO: What object? Make sure it is clear.
& Line Distance & 0 & 0.25 & 1 & The distance, in screen coordinates, from the
prominent line of the object to the diagonal lines. \\ % TODO: Need to define screen coordinates
& Corner Distances & 0 & 0.1 & 0.7 & The distance, in screen coordinates, from the
end of the prominent line of the object to the corners of the screen. \\
\hline
% Framing Rule
\multirow{4}{l}{Framing} & Left Distance & 0 & ${Frame Width}*5\%$ & ${Frame Width}*25\%$ & The distance between the
left side of the frame covering the object and the left or the right side of the intended frame, whichever closer. \\
& Right Distance & 0 & ${Frame Width}*5\%$ & ${Frame Width}*25\%$ & The distance between the
right side of the frame covering the object and the left or the right side of the intended frame, whichever closer. \\
& Top Distance & 0 & ${Frame Height}*5\%$ & ${Frame Height}*25\%$ & The distance between the
top side of the frame covering the object and the upper or the lower side of the intended frame, whichever closer. \\
& Bottom Distance & 0 & ${Frame Height}*5\%$ & ${Frame Height}*25\%$ & The distance between the
bottom side of the frame covering the object and the upper or the lower side of the intended frame, whichever closer. \\
\hline
\end{tabular}
\caption{The factors of each rule and their parameters.}
\label{table:factors}
\end{table*}
よろしく、
ラフィド