では TeX ファイル (source code)を見てみます。
\documentclass[a4paper,11pt]{report}
\begin{document}
\title{A Simple Document}
\author{Me}
\maketitle
\tableofcontents
\begin{abstract}
A brief document to illustrate how to use \LaTeX.
\end{abstract}
\chapter{Introduction}
\section{The First Section}
This is a simple \LaTeX\ document.
Here is the first paragraph.
\section{The Next Section}
Here is the second paragraph. As you can see it's a very
short document\footnote{with a footnote}.
This document was created on: \today.
\chapter{Another Chapter}
Here's another very interesting chapter.
We're going to put a picture here later.
\chapter*{Acknowledgements}
I would like to acknowledge all those
very helpful people who have assisted me in my work.
\appendix
\chapter{Tables}
We will turn this tabular environment into a table later.
\begin{tabular}{lrr}
& \multicolumn{2}{c}{\bfseries Expenditure}\\
& \multicolumn{1}{c}{Year1} & \multicolumn{1}{c}{Year2}\\
\bfseries Travel & 100,000 & 110,000\\
\bfseries Equipment & 50,000 & 60,000
\end{tabular}
\end{document}
内容の 相違は
$ diff -s \ ../../../y_work/002report/report-toc.tex ../../../y_work/001report/report.tex 9c9 < \tableofcontents --- >
1回目の ”platex” 処理を 行います
$ platex report-toc.tex This is pTeX, Version 3.14159-p3.1.3 (euc) (Web2C 7.4.5) (./report-toc.tex pLaTeX2e <2001/09/04>+0 (based on LaTeX2e <2001/06/01> patch level 0) (/usr/share/texmf/tex/latex/base/report.cls Document Class: report 2001/04/21 v1.4e Standard LaTeX document class (/usr/share/texmf/tex/latex/base/size11.clo)) No file report-toc.aux. [1] No file report-toc.toc. [1] [1] Chapter 1. [1] Chapter 2. [2] [3] Appendix A. [4] (./report-toc.aux) ) Output written on report-toc.dvi (7 pages, 2400 bytes). Transcript written on report-toc.log.
出来上がったものは
$ ls -l | sed 1d -rw-r--r-- 1 fdopstm users 616 7月 8日 18:30 report-toc.aux -rw-r--r-- 1 fdopstm users 2400 7月 8日 18:30 report-toc.dvi -rw-r--r-- 1 fdopstm users 4109 7月 8日 18:30 report-toc.log -rw-r--r-- 1 fdopstm users 1041 7月 8日 11:11 report-toc.tex -rw-r--r-- 1 fdopstm users 290 7月 8日 18:30 report-toc.toc
”report-toc.dvi”ファイルが出来ています。”\tableofcontents” を 追加しない 場合も 出来ていました(当り前ですが)。 これの容量を 見る と、
-rw-r--r-- 1 fdopstm users 2296 7月 8日 10:18 report.dvi
ファイルの 容量としては 今回の ”\tableofcontents”を 追加した方が 大 きいようです。内容を 見てみましょう。
7 枚 有るということです。(しかしながら 頁の 表示は 4 迄です)” \tableofcontents”を 追加しなかったものは 6枚 でありました、一枚余分に 表示されるようです。参考に 頁の 表示部分のみ 見ておきます。
こちらは 6枚 でした。
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り付けています。
頁は 表示 されません。”頁 1A” は 便宜上 付けた。
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。”\tableofcontents”を 追加しないものには無かった ”contents”の 部分
頁は 表示 されるのですが ?? ”頁 1”に なっている 後のものにも ”頁 1”が出てくる。不思議であるが これが正解なのか? また ”contents”の 内容が 無い なんて 洒落てますな! log ファイルに ”No file report-toc.toc.”という ものが 有りましたが これが 関係しているの でしょうか?
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。”abstract”の 部分です。 (ちなみに”book”には存在しないもので す)。
頁は 表示 されません。”頁 1B” は 便宜上 付けた。
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。
頁 1 ”contents”の部分も 頁 1 でした?
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。
頁 2 です。
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。
頁 3 です。
これは文字の部分だけ 切り取っています(適宜 拡大している)。合わせて xdvi の 頁部分も 張り 付けています。
頁 4 です。
”contents”の 頁が 増えたのみで後は ”\tableofcontents”を 追加する 前の 内容と 同じ様です。 もう一度 ”platex”する必要があります。
にゃんたろう 拝!
2008年 7月 8日 (火) 21:01:34 JST 作成