页码和页眉

页码和页眉

我是 LaTeX 代码的新手...几个月前我的导师向我推荐了 LyX,我发现用它来写论文很有趣。

我阅读了一些预览问题,并没有找到我真正想要的。

我的问题:

  1. 我希望页码从第 6 页开始。

  2. 从第 6 页到第 50 页,我想添加页眉和页脚:

    • 标题 [L] {补偿机制分析}
    • 标题 [R] 徽标位于我的文档文件路径中:C:\Users\M. Louis\Documents\New Scotia.png
    • 页脚[L] {Mozard LOUIS}
    • 页脚 [R] {计量经济学和数据科学,2020}

上面有橙色的线(见图)。

在此处输入图片描述

答案1

我也在写论文,不过就我的情况而言,大学 (UBC) 提供了一个 LaTeX 模板,其中包含说明,因为他们需要特定的格式。也许您的机构有类似的模板。

否则,实施特定的更改可能需要查看您当前正在使用的模板。

答案2

我不适合使用 LyX。使用 LaTeX,可以实现:

  1. 前六页可能是前言,例如标题页、目录等。我的建议是用 \frontmatter 和 \mainmatter 来区分,但您会在前言中找到罗马页码。要完全抑制页码,我们必须深入挖掘,例如 toc 会重置页面样式(因此也会重置页码方案)。mico 在此处回答了如何处理该问题:https://tex.stackexchange.com/questions/61179/suppress-page-numbers-in-documents-front-matter#:~:text=To%20suppress%20page%20numbering%20in,the%20current%20page%20to%20plain%20

您必须包含包 fancyhdr 并定义您自己的页面样式(将其放在 \begin{document} 之前)\usepackage{fancyhdr}%http://ctan.org/pkg/fancyhdr \fancypagestyle{myheader}{% \fancyhf{}% 清除所有页眉/页脚 \fancyhead[L]{Analyse du mécanisme de Compensation} \fancyhead[R]{\includegraphics[width=1cm]{logo} \fancyfoot[L]{Mozard LOUIS} \fancyfoot[R]{Econometrics and Data Science, 2020} \fancyfoot[C]{\thepage} %居中页码 \renewcommand{\headrulewidth}{1pt}% 1pt 页眉规则 \renewcommand{\headrule}{\hbox to\headwidth{% \color{orange}\leaders\hrule height \headrulewidth\hfill}} \renewcommand{\footrulewidth}{1pt}% 1pt 页脚规则 \renewcommand{\footrule}{\hbox to\footwidth{% \color{orange}\leaders\hrule height \footrulewidth\hfill}} } 然后您可以在任何您想要的地方使用 \pagestyle{myheader}。

刚刚发现您可以在 Lyx 中编辑 LaTeX 序言:文档 > 设置 > LaTeX 序言

相关内容