TeX


ページ数表示


ページ数を表示させない

\pagestyle{empty}

タイトルがある場合は

\maketitle\thispagestyle{empty}

章や節

章や節に連番をつけない
\section*{}
章や節の数字を指定す
\setcounter{section}{}

\begin{tabular}{ll}
''& \\''
\end{tabular}
l:左よせ、r:右よせ、c:中央で間に|をいれることで縦線がひける。
横線は\hline

数式

=をそろえた式
\begin{align*}
&=\\
&=\\
\end{align*}
ラベルの変更
\makeatletter
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\@addtoreset{equation}{section}
\makeatother


画像

\usepackage[dvipdfm]{graphicx}
\includegraphics[bb=50 0 600 300]{.ps}
数字は図の座標の始まりと終わりを指定している
最終更新:2008年07月13日 14:06