答案1
我也在写论文,不过就我的情况而言,大学 (UBC) 提供了一个 LaTeX 模板,其中包含说明,因为他们需要特定的格式。也许您的机构有类似的模板。
否则,实施特定的更改可能需要查看您当前正在使用的模板。
答案2
我不适合使用 LyX。使用 LaTeX,可以实现:
前六页可能是前言,例如标题页、目录等。我的建议是用 \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 序言