我不想在每个页面的标题上显示每个章节的名称。我还想在摘要,确认,内容列表,图表列表和表格列表的标题中没有任何内容。但目前我在每个页面都有标题,例如:
alt text http://i41.tinypic.com/20ksyl3.jpg
谢谢和问候!
编辑:
我刚用\ thispagestyle {plain}替换了\ thispagestyle {botcenter}。据说后者清除标题(http://en.wikibooks.org/wiki/LaTeX/Page_Layout),但事实并非如此。我该怎么办?
谢谢!
编辑:
我现在才意识到它可能是显示标题的花式页面样式。
\pagestyle{fancy}
\fancyhf{}
\setlength{\headheight}{15pt}
\lhead{\leftmark}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0pt}
\fancypagestyle{plain}{% Redefine ``plain'' style for chapter boundaries
\fancyhf{} % clear all header and footer fields
\fancyfoot[C]{\thepage} % except the center
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
如何删除标题并保留页脚?我觉得页脚需要显示页码吗?
谢谢!
编辑:
我的pdf文件也没有内容列表第一页,表格列表和数据列表的页码。这是正常的吗?如果不是,如何解决?谢谢!
答案 0 :(得分:3)
我认为您应该使用\pagestyle
进行试验,如果不能提供足够的控制,请fancyhdr
包。他们将如何与我推测的内容互动是一个我不确定的自定义文档类。
答案 1 :(得分:1)
编辑:我清除了其他的ramblings。您唯一需要做的就是从\leftmark
中删除\lhead
。
答案 2 :(得分:1)
我是通过 \fancyhead{}
和 \renewcommand{\headrulewidth}{0pt}
完成的。