\begin{figure}[htb] |
\centering |
\epsfxsize=380pt |
\epsfbox{hogehoge.ps} |
\caption{図の説明} |
\end{figure} |
\usepackage{graphicx} として使います。
\begin{figure}[htb] |
\centering |
\includegraphics[scale=0.5]{hogehoge.ps} |
\caption{図の説明} |
\end{figure} |
\definecolor{lightgreen}{rgb}{0.2,1.0,0.5} |
\definecolor{red}{rgb}{1.0,0.0,0.0} |
\textcolor{lightgreen}{Latex} |
\textcolor{red}{モデルの記述} |
\colorbox{lightgreen}{Latex} |
\colorbox{red}{\textcolor{lightgreen}{モデルの記述}} |
\begin{table}[hbt] |
\begin{center} |
\begin{tabular}{>{\columncolor{lightgreen}}l} |
背景にlightgreenの色が付いた \\ |
\textcolor{red}{背景にlightgreen、文字にredが付いた} \\ |
{\Huge 文字を大きくすることもできる} \\ |
\textcolor{red}{\bf 色を付けてボールドフォントも使える} \\ |
\end{tabular} |
\end{center} |
\end{table} |
\begin{table}[hbt] |
\begin{center} |
\begin{tabular}{l} |
\rowcolor{lightgreen} 背景にlightgreenの色が付いた \\ |
\rowcolor{red} 背景にredの色が付いた} \\ |
\rowcolor{lightgreen} \textcolor{背景をlightgreenに文字をredにすることもできます} \\ |
\rowcolor{red} \textcolor{lightgreen}{\bf 色を付けてボールドフォントも使える} \\ |
\end{tabular} |
\end{center} |
\end{table} |