我正在使用 Lyx,虽然我是新手,但我对 Lyx 很着迷。我对 Latex 没有任何背景。
问题 1:如何在 Lyx 中将面包屑 ....... 添加到我的方程式编号中,以便当我查看 pdf 时,我能够得到方程式,后跟 ......... 和方程式编号。
问题 2:在 Lyx 中,如何制作方程编号 (17-1),其中 17 是章节编号,1 是第 17 章中的第一个方程。
答案1
根据需要显示的方程式编号很容易获得,只需重新定义即可\theequation
。
至于方程式编号的点,您可以加载包dotseqn
,但请注意
- 它只适用于
equation
环境(并且eqnarray
,由于间距原因不推荐使用,不适用于来自`amsmath 的多行环境; - 方程环境将会左对齐。
演示:
\documentclass{report}
\usepackage{mathtools}
\usepackage{dotseqn}
\renewcommand{\theequation}{\thechapter-\arabic{equation}}
\begin{document}
\setcounter{chapter}{5}
Some text. Some more text.
\begin{equation}\label{eq-test}
x = \frac{-b\pm\sqrt{b^2-4ac}}{2a}
\end{equation}
\begin{align}\label{eq-test1}
\Delta & =b^2-4ac \\
x & = \frac{-b\pm\sqrt{\Delta}}{2a}\label{eq-test2}
\end{align}
\end{document}