next up previous contents
: gnuplot のグラフを TEXに張り込む : TEXによる文書作成 : TEXによる文書作成の流れ   目次

TEXソースの例

実験レポート用の TEXソースは、例えば、次のようなものです。

    \documentclass[11pt,a4j,fleqn]{jarticle}
    \usepackage{graphicx} % epsファイルを取り込むためには必要
    \title{hogehoge 実験レポート}
    \author{苗字 名前}
    \begin{document}
    \西暦
    \maketitle
    \section{実験1~~最初の実験}
    \subsection{目的}
    スペクトルをとる。
    \subsection{結果}
    図\ref{hoge}の結果が得られた。
    \begin{figure}\begin{center}
    \includegraphics[width=10cm,clip]{fig1.eps} % set terminal postscript eps
    \end{center}
    \caption{結果の図}
    \label{hoge}
    \end{figure}
    \subsection{考察}
    光を当てると、発光することがわかった。
    \end{document}
もう少しだけ長いサンプルは、/usr/local/stex-local/tex-sample/ 以下にあり ます。