我正在尝试使用 xltabular 制作一个符号表。它跨越一页多一点。我正在使用 scrbook 类,其中我的所有章节都从奇数页开始。但是,对于符号表,我发现从偶数页开始更实用,这样可以一次看到所有符号。我使用 实现了这一点\KOMAoptions{open=any}
。左侧页面以章节标题“符号”开始,然后是表格的第一部分,表格在右侧页面上继续。目前,表格的这一部分比章节标题下方的部分要高得多。是否有可能为此页面引入更大的上边距,以便标题继续保持相同的高度?所以我的目标是
------------------------------ ------------------------------
| | | |
| Notation | | |
| | | |
| A bla | | x bla |
| B bla | | y bla |
... ...
平均能量损失
\documentclass[paper=a4,usegeometry]{scrbook}
\usepackage{amsfonts}
\usepackage{geometry}
\usepackage{xltabular}
\geometry{tmargin=40mm,textheight=219mm,bindingoffset=5mm,textwidth=151.2mm}
\KOMAoptions{headsepline}
\title{My title}
\begin{document}
\maketitle
\mainmatter
\chapter{Usual chapter}
\KOMAoptions{open=any}
\backmatter
\chapter{Notation}
\begin{center}
\begin{xltabular}{\textwidth}{lX}
Symbol & Usage \\\hline
$A$ & Set of bla \\
$\mathfrak B$ & Borel $\sigma$-algebra \\
$C$ \footnotemark& bla \\
$D$ & bla \\
$\mathrm{CV}$ & Coefficient of variation \\
$E$ & bla \\
$F$ & bla \\
$\delta^-$, $\delta^+$ & Incoming and outgoing arcs, respectively \\
$\Delta$ & bla \\
$\mathrm e$ & Euler constant \\
$\mathrm E$ & Expected value \\
$\varepsilon$ & Arbitrarily small positive constant \\
$g$ & Function defined in ... \\
$I$ & bla \\
$J$ & bla \\
$K$ & bla \\
$L$ & Set of bla \\
$L_i$ & bla \\
$M$ & Number of bla \\
$N$ \footnotemark[1] & Bla \\
$n$ & Number of bla \\
$O$ & Big Oh (Landau symbol) \\
$p$ \footnotemark[1] & bla \\
$\bar{p}$ & Expected bla \\
$q$ \footnotemark[1] & bla \\
$\bar{q}$ & Expected bla \\
$\mathrm \Pi$ & bla \\
$\Pr$ & Probability \\
$r$ & bla \\
$R$ & bla \\
$\rho$ & bla \\
$S$ \footnotemark[1] & bla \\
$\mathrm S$ & bla \\
$\mathrm S^{\mathrm p}$ & bla \\
$T$ & bla \\
$\mathrm{Var}$ & Variance \\
$w$ & bla \\
$\phi$ & Golden ratio \\
$x$ & bla \\
$y$ & bla \\
$(\Omega,\mathfrak A,P)$ & Underlying probability space in stochastic scheduling \\
$\mathrm \Omega$ & Big Omega (Landau symbol) \\\hline
\end{xltabular}
\end{center}
\footnotetext{When printed in bold face, this is a random variable.}
\thispagestyle{plain}
Small text here
\KOMAoptions{open=right}
\end{document}