0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

TeX で目次を作ろう

Posted at

TeX では以下のように簡単に目次を作成することができる。例えば、以下のように。

main.tex
\documentclass{jsbook}
\nofiles
\pagenumbering{roman}
\begin{document}
\tableofcontents
\end{document}

TeX の目次は table of contents(toc) ファイルに記述する。

main.toc
\contentsline {chapter}{Hello TeX}{1}
\contentsline {chapter}{\numberline {Chapter 1}hoge}{1}
\contentsline {section}{\numberline {1.1}hogehoge}{2}
\contentsline {chapter}{\numberline {Chapter 2}huga}{4}
\contentsline {section}{\numberline {2.1}hugahuga}{5}

以上の2ファイルを同じディレクトリに置き、コンパイルすればok。

無題.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?