
私の問題はかなり基本的なものだと思いますが、私は Latex 初心者なので、解決できませんでした。「図表一覧」のタイトルを斜体にしたいです。また、図表一覧では、図に番号を使用する代わりに、図 1、図 2 などの図番号自体を使用したいと思います。
答え1
パッケージを使用しますtocloft
:
\documentclass...
\usepackage{tocloft}
\renewcommand{\cftloftitlefont}{\Large\itshape} % italic LoF title
\setlength{\cftfignumwidth}{5em} % space for Figure and number; change to suit
\renewcommand{\cftfigpresnum}{Figure} % put Figure before number
マニュアル(texdoc tocloft
)を読んで、上記のコードに適切な調整を加えます。