![]() |
>[TeX] | >[Index] | >[環境] | >[figure] |
\usepackage{graphicx}をプレアンブルに入れて、図を取り入れる。
|
|
図と表を常に真ん中に配置(\centeringの記述が不要になる)
\makeatletter
\newenvironment{myfigure}[1][\fps@figure]%
{\begin{figure}[#1]\centering}%
{\end{figure}}
\newenvironment{myfigure*}[1][\fps@figure]%
{\begin{figure*}[#1]\centering}%
{\end{figure*}}
\makeatother
|

図の番号と表の番号を通し番号にする。
\makeatletter \let\c@figure\c@table \let\p@figure\p@table \let\cl@figure\cl@table \let\thefigure\thetable \makeatother |




| 脚注:図や表を入れる。 |

| 脚注:キャプションの付けて、図や表を入れる。 |

| 左に表、右に図を並べて入れる。[左右に図][左右に表] |


| 左右に図を並べて入れる。 |

| \usepackage{multicol} |

\documentclass[twocolumn]{jarticle}\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
\makeatother
を入れて、図と表のキャプションを追加。 |

| \documentclass[twocolumn]{jarticle} |

\documentclass[twocolumn]{jarticle}\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
\makeatother
を入れて、図と表のキャプションを追加。 |

| \documentclass[twocolumn]{jarticle} \begin{figure*}と\begin{table*}を利用。 |

| 図・表組 Tips | |
|
|