如何在 LaTex 中删除标题

Tim*_*Tim 6 latex

我不想在每个页面的标题上显示每个章节的名称。我也喜欢在摘要、致谢、目录、图表列表和表格列表的标题中没有任何内容。但是我目前在每个页面上都有标题,例如:

替代文字

感谢致敬!


编辑:

我只是替换\thispagestyle{botcenter}\thispagestyle{plain}. 据说后者会清除标题 ( 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}
}
Run Code Online (Sandbox Code Playgroud)

如何删除页眉并保留页脚?我认为需要页脚来显示页码对吗?

谢谢!


编辑:

我的 pdf 文件也没有目录、表格列表和图表列表的第一页的页码。这是正常的吗?如果不是,如何修复?谢谢!

Dzh*_*ang 5

我这样做是通过\fancyhead{}, 以及\renewcommand{\headrulewidth}{0pt}.


Hig*_*ark 4

我认为你应该尝试一下\pagestyle,如果这不能提供足够的控制,那么这个fancyhdr包。我不确定他们将如何与我猜测的自定义文档类进行交互。