戻る

tabular environment その4

     

\multicolumn{<cols spanned>}{<col specifier>}{<text>}

”\multicolumn”で まず ”<cols spanned>” を 2個 にします {2}、揃え 方は 中央揃え {c}、最後の 表示文字は ”Price (\pounds)”にした ものを 見 てみます。Tex のファイル (source code)を 見てみると。

\documentclass[a5paper,12pt]{jarticle}
\begin{document}
\begin{tabular}{lrr}
      & \multicolumn{2}{c}{Price (\pounds)}\\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}
\end{document}

出力は

054-multi-w320h208.png

これで 十分理解できたでしょうか?

補足

出力は

055-check-w206h660.png

少し頭を 冷やしてから見直した方が 良いようです。 雰囲気としては 納得 なのですが つかいこなせるか? TeX のファイル (source code)と共に比べて 見ましょう。

\documentclass[a4paper,10pt]{jarticle}
\begin{document}
\begin{tabular}{lrr}
      & \multicolumn{2}{l}{Price (\pounds)}\\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}

\begin{tabular}{lrr}
      & \multicolumn{2}{c}{Price (\pounds)}\\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}

\begin{tabular}{lrr}
      & \multicolumn{2}{r}{Price (\pounds)}\\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}

\begin{tabular}{lrr}
      & & \multicolumn{1}{r}{Price (\pounds)}\\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}

\begin{tabular}{lrr}
      & \multicolumn{1}{r}{Price (\pounds)} & \\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}

\begin{tabular}{lrr}
 \multicolumn{1}{r}{Price (\pounds)} &  & \\
Item  & ex VAT & inc VAT\\ 
Video & 8.99   & 10.56\\
CD    & 9.99   & 11.74\\
DVD   & 15.00  & 17.63\\
\bfseries Total & 33.98 & 39.93
\end{tabular}
\end{document}

にゃんたろう 拝!

2008年 7月 5日 (土) 21:07:54 JST 作成


戻る

Copyright © 2006.-2008. nyantarou All Rights Reserved.