LyX tips and tricks
In this article I will describe interesting hack and possibilities which I use
from time to time in LyX, like default setting for all code listings,
shortcut for --Separator--
layout and so on …
In this article I will describe interesting hack and possibilities which I use
from time to time in LyX, like default setting for all code listings,
shortcut for --Separator--
layout and so on …
В TeX начать нумерованный список с некоторого отличного от единицы числа можно следующим способом:
\begin{enumerate}
\setcounter{enumi}{-1}
\item Нулевой
\item Первый
\item Второй
\end{enumerate}
В LyX же необходимо сделать следующее:
[Alt+P E]
[Ctrl+L]
[0.]\setcounter{enumi}{0}
. Выходим из TeX-блока и пишем на этой же строке нужный первый элемент в списке.Всё, список будет начинаться с заданного числа (в данном случае -- с нуля). …