在 Lyx 中,如何将“部分”部分更改为“章节”?

在 Lyx 中,如何将“部分”部分更改为“章节”?

我正在使用默认的 Lyx 文档“文章”。

我的章节范围从“部分”到“子部分”。当我编译我的 pdf 时,我想替换“部分1 标题 1”、“第 2 部分标题 2”等由“章节1 标题1”、“第 2 章标题2”等等。知道怎么做吗?提前谢谢大家!

答案1

由于您使用的是 LyX,这意味着默认情况下您也在使用babel包(对于诸如此类的事情,MWE 始终是必不可少的)。因此,您需要在前言中添加一些类似以下内容的内容:

\addto\captionsenglish{%
  \renewcommand{\partname}%
    {Fake Chapter}%
}

然而,Lyx 将把babel代码中的\makeatletter--块(请参阅“查看”菜单中的完整源代码),因此无法工作。\makeatother

因此,你还需要\usepackage{babel} 在序言中,要获得作为此 MWE 工作的文件:

\documentclass[english]{article}
\usepackage{babel}
\addto\captionsenglish{%
  \renewcommand{\partname}%
    {Fake Chapter}%
}
\begin{document}
\part{Some part or chapter}
The \textbackslash{}thepart{} is \thepart{} and the  \textbackslash{}partname{} is \partname{}

That is all. 
\end{document}

babel或者通过 Lyx 菜单停用并仅放入\renewcommand{\partname}{Fake Chapter}序言中。

相关内容