LaTeX/command/others の変更点

Top > LaTeX > command > others
  • 追加された行はこの色です。
  • 削除された行はこの色です。
  • LaTeX/command/others へ行く。

CENTER:|>|BGCOLOR(#ACFA58):CENTER:&size(36){''[[&mathjax{\LaTeX};>LaTeX]]''};|
|BGCOLOR(#E0F2F7):CENTER:&size(18){[[LaTeXコマンド集>LaTeX#command]]};|CENTER:&size(18){''その他(テキストモード)''};|

**表 [#q07ad406]

***表の基本 [#z52dce92]
#geshi(latex,number){{
 \begin{table}[htb]
 \begin{tabular}{||c|c|c|} \hline
 a & b & c \\ \hline \hline
 d & e & f \\ \hline
 g & h & i \\ \hline
 \end{tabular}
 \end{table}
}}
#ref(table.png,,nolink)

[htb]の部分で位置指定。
***表の中央寄せ [#m55975fd]
#geshi(latex,number){{
 \begin{table}[htb]
 \centering
 \begin{tabular}{||c|c|c|} \hline
 a & b & c \\ \hline \hline
 d & e & f \\ \hline
 g & h & i \\ \hline
 \end{tabular}
 \end{table}
}}
***表の中央寄せ・絶対位置指定 [#e62cb181]
プリアンブルで宣言
#geshi(latex,number){{
 \usepackage{here}
}}
本文で使用
#geshi(latex,number){{
 \begin{table}[H]
 \centering
 \caption{表の説明}
 \begin{tabular}{||c|c|c|} \hline
 a & b & c \\ \hline \hline
 d & e & f \\ \hline
 g & h & i \\ \hline
 \end{tabular}
 \end{table}
}}