Lyx:页眉/页脚停止工作 {scrpage2}

Lyx:页眉/页脚停止工作 {scrpage2}

我在另一个帖子里发了这篇文章,然后被告知要开一个新帖子。下面开始:

如何在 Lyx 2.2.2 中添加页眉和页脚

我有这个序言并且它起作用了。

\usepackage{scrpage2}
\pagestyle{scrheadings}
\ihead{4776020 Stephan Goldenberg}
\ohead{01801 WS 2016/2017 EA 3}
\ifoot{\today}
\ofoot{\pagemark}

但 Lyx 的更新显然破坏了它。我该如何恢复页眉和页脚?

编辑:不过我不了解 Latex。请用新手的话 :)

编辑 2:我按照用户指南做了,但仍然没有页眉和页脚。我删除了序言,错误消失了,但仍然没有页眉和页脚。

在此处输入图片描述

我无法让它工作,Lyx 看起来坏了。

我新建了一个空白文档。页面样式设置为花式,在模块部分添加了自定义页眉/页脚行,前言为空。但仍然没有页眉和页脚。显然我对此感到麻木,我放弃了。

在此处输入图片描述

% Preview source code

%% LyX 2.2.2 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[a4paper,ngerman]{amsart}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{amsthm}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\pdfpageheight\paperheight
\pdfpagewidth\paperwidth


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
\numberwithin{figure}{section}

\makeatother

\usepackage{babel}
\begin{document}

\lhead{4776020 Stephan Goldenberg}

\rhead{01801 WS 2016/2017 EA 3}

\lfoot{\textbackslash{}today}

\rfoot{\textbackslash{}pagemark}

Aufgabe 3.1:
...

\_10010101
\end{document}

答案1

有几件事会导致您遇到问题:

  1. 看来amsart您使用的类只为第一页设置了不同的页面样式。我确信如果您在第二页添加一些文本,您会看到页眉和页脚出现。

    要使第一页fancy也具有页面样式,请将光标放在文档的开始处,按Ctrl+L\thispagestyle{fancy}在出现的框中输入。

    在标准article类中这不是必需的。

  2. 如果您直接在 LyX 中输入,LyX 会假定您实际上想要在 PDF 中\today显示一个反斜杠,后跟,因此它会插入。要在文档中使用 LaTeX 代码,您需要添加 TeX 代码插入,如上所述,使用+ (或插入 -> TeX 代码)。today\textbackslash{}todayCtrlL

  3. 如果未清除页面样式的页眉和页脚fancy,则将保留默认设置,并在页脚的中心字段中包含页码。要删除它,请添加中心页脚与左右脚同样操作,保持空白。

下面是一个.lyx使用的示例文件amsart,但所有页面上都有自定义的页眉和页脚:

#LyX 2.2 created this file. For more info see http://www.lyx.org/
\lyxformat 508
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass amsart
\use_default_options true
\begin_modules
theorems-ams
eqs-within-sections
figs-within-sections
customHeadersFooters
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle fancy
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Left Header
4776020 Stephan Goldenberg
\end_layout

\begin_layout Right Header
01801 WS 2016/2017 EA 3
\end_layout

\begin_layout Left Footer
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
today
\end_layout

\end_inset


\end_layout

\begin_layout Right Footer
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
thepage
\end_layout

\end_inset


\end_layout

\begin_layout Center Footer

\end_layout

\begin_layout Standard
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
thispagestyle{fancy}
\end_layout

\end_inset


\end_layout

\begin_layout Standard
Some text
\end_layout

\begin_layout Standard
\begin_inset Newpage newpage
\end_inset


\end_layout

\begin_layout Standard
Next page
\end_layout

\end_body
\end_document

以下是 LyX GUI 和输出的屏幕截图:

在此处输入图片描述

相关内容