2016-05-05 7 views
0

文書化にLaTeXを使用しようとしています。私はテーブルをフォーマットすることができません。以下のコードスニペットを参照してください。LaTeXでテーブルの列を書式設定する

\begin{table}[!htbp] 
\begin{center} 
\begin{tabular}{| m{3cm} | m{3cm} | m{3cm}| m{3cm} | m{3cm} |} 
\hline 
Software Project & a_a & b_b & c_b & d_b \\ 
\hline 
Organic & 2.4 & 1.05 & 2.5 & 0.38\\ 
\hline 
Semi-detached & 3.0 & 1.12 & 2.5 & 0.35\\ 
\hline 
Embedded & 3.6 & 1.20 & 2.5 & 0.32\\ 
\hline 

enter image description here

+2

は何を達するためにしたいですか? – Fruchtzwerg

答えて

1

あなたは、私は以下のコード投稿+スクリーンショットのようなものを意味しますか?

それが収まる場合は、以下のものを覚えている:あなたの前文に\usepackage{array}を持っている

  1. チェックを。
  2. tabularの代わりに\centeringを使用すると、centerには、tableになります。
  3. 列の幅を確認します。
  4. a_aは、数学モードでのみ機能します。$a_a$;
  5. 環境が正しく閉じられていることを確認してください(質問に貼り付けたコードに\end{tabular}などがありません)。
\documentclass[11pt,a4paper]{article} 
\usepackage{array} 

\begin{document} 

\begin{table}[!htbp] 
    \centering 
    \begin{tabular}{| m{3.5cm} | m{1.5cm} | m{1.5cm} | m{1.5cm} | m{1.5cm} |} 
    \hline 
    Software Project & $a_a$ & $b_b$ & $c_b$ & $d_b$\\ 
    \hline 
    Organic & 2.4 & 1.05 & 2.5 & 0.38\\ 
    \hline 
    Semi-detached & 3.0 & 1.12 & 2.5 & 0.35\\ 
    \hline 
    Embedded & 3.6 & 1.20 & 2.5 & 0.32\\ 
    \hline 
    \end{tabular} 
\end{table} 

\end{document} 

screenshot of centered tabular in A4 paper