现在我已经打开了编号功能,\leftmark
在页眉中显示带有编号的章节标题。例如
1 章节标题
我该如何删除该号码?
这是我的设置
documentclass[12pt,a4paper,english,openany,oneside]{scrbook}
\usepackage[nouppercase,headsepline,footsepline,automark]{scrpage2}
\clearscrheadfoot
\clearscrheadings
\chead{}
\cfoot{}
\ihead{HeaderLeftText}
\ohead{HeaderRightText}
\ifoot{\rule{0pt}{\ht\strutbox+\dp\strutbox}\SomeChapterNameCommand} % want chapter name here
\ofoot{\rule{0pt}{\ht\strutbox+\dp\strutbox}\thepage}
\pagestyle{scrheadings}
答案1
对于 KOMA-Script 类,标题中章节号的格式由以下方式控制:\chaptermarkformat.
要删除章节号,只需重新定义\chaptermarkformat
为:
\renewcommand*{\chaptermarkformat}{}
答案2
尝试重新定义\chaptermark
:
\renewcommand\chaptermark[1]{\markboth{#1}{}}
如果这不起作用,请在您的问题中添加一些最少的工作代码,显示涉及标题生成的相关设置。