zpvip 发表于 2012-8-2 14:22

如何把图片目录和表格目录作为带编号的章节放入总目录

本帖最后由 zpvip 于 2012-8-2 15:44 编辑

一般Latex中前面的\listoffigures \listoftables 是没有章节号的,

但我想象下面这样,在章节前面加个I II III,有谁有什么好办法吗?
I   Table of Contents.................I
IIList of Figures..................II
III List of Tables .................III
1   Kapitel 1.........................1
2   Kapitel 2.........................8
3   Kapitel 3........................12我不是说的\pagenumbering{roman}
\pagenumbering{arabic}这个在后面的页码已经搞定了


现在的代码片段\newpage
\tableofcontents
\addcontentsline{toc}{chapter}{Table of Contents}

% figure
\newpage
\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}

% table
\newpage
\listoftables
\addcontentsline{toc}{chapter}{\listtablename}这种直接加个 I 的方式不行, 对不齐
\addcontentsline{toc}{chapter}{I Inhaltsverzeichnis}


谢谢大家了!

bombomman 发表于 2012-8-2 15:09

我原来写的论文目录上的章节前面没编号 ,只有后面的页码。前面是I,II这样的,正文就按数字排,不知道合不合lz意?
页: [1]
查看完整版本: 如何把图片目录和表格目录作为带编号的章节放入总目录