- UserGuide.lyx: new section about custom numbered list numbering

- Additional.lyx: further cleanup and deletion of section that is now part of the UserGuide

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39334 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2011-07-18 03:01:12 +00:00
parent 57d2c2ea56
commit 7effe4260f
13 changed files with 3501 additions and 3424 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2258,7 +2258,7 @@ Your first cross-reference
\end_layout
\begin_layout Standard
Place the cursor somewhere in section
Place the cursor somewhere in Section
\begin_inset space ~
\end_inset
@ -2271,7 +2271,7 @@ If you want to know more about this document, then see
\begin_inset Newline newline
\end_inset
section, which can be found on page.
Section, which can be found on page.
\end_layout
\begin_layout Standard
@ -2384,8 +2384,11 @@ Section 2
\begin_inset Quotes erd
\end_inset
and depending how much text you have between the start of Section 2 and
this cross-reference you may see
and depending how much text you have between the start of Section
\begin_inset space ~
\end_inset
2 and this cross-reference you may see
\begin_inset Quotes eld
\end_inset
@ -2512,7 +2515,7 @@ status collapsed
\begin_layout Plain Layout
By the way, copying a chapter title may cause an error, because chapters
are not allowed in the article class, see section
are not allowed in the article class, see Section
\begin_inset space ~
\end_inset
@ -4530,7 +4533,7 @@ LyX cannot do absolutely everything that LaTeX can do.
\backslash
usepackage{foo}
\family default
in the preamble (see section
in the preamble (see Section
\begin_inset space ~
\end_inset
@ -4786,7 +4789,7 @@ After you have done this, you can use citations from any bibliographies
Insert\SpecialChar \menuseparator
Citation
\family default
(see section
(see Section
\begin_inset space ~
\end_inset

View File

@ -9058,6 +9058,391 @@ Itemize
You have a huge variety of options at your disposal.
\end_layout
\begin_layout Subsection
Custom Numbering of Numbered Lists
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Lists ! Enumerate ! Customized
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
The default numbering of numbered lists can be changed by adding this command
in TeX Code (shortcut
\begin_inset Info
type "shortcut"
arg "ert-insert"
\end_inset
)
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
For more about TeX Code, look at section
\begin_inset space ~
\end_inset
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:TeX-Code"
\end_inset
.
\end_layout
\end_inset
to your document preamble or in the text:
\end_layout
\begin_layout Standard
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
roman{enumi}}
\end_layout
\begin_layout Standard
\emph on
enumi
\emph default
is hereby the counter of the enumeration in the first level.
The command
\series bold
\backslash
roman
\series default
outputs the counter as small Roman numeral.
For capital Roman numerals replace in the command above
\series bold
\backslash
roman
\series default
by
\series bold
\backslash
Roman
\series default
.
For Arabic numerals use
\series bold
\backslash
arabic
\series default
.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with capital or small Latin letters use
\series bold
\backslash
Alph
\series default
or
\series bold
\backslash
alph
\series default
, respectively.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with symbols use
\series bold
\backslash
fnsymbol
\series default
.
\end_layout
\begin_layout Standard
\noindent
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
Note:
\series default
You can only number 26
\begin_inset space ~
\end_inset
items with Latin letters, because this numbering is limited to single letters.
\end_layout
\end_inset
\begin_inset Newline newline
\end_inset
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
Note:
\series default
You can only number 9
\begin_inset space ~
\end_inset
items with symbols.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
To change the numbering for the list sublevels, replace each 'i' in the
command by the small Roman numeral of the level (enumi, enumii, enumiii,
enumiv).
\end_layout
\begin_layout Standard
As example a list with custom numbering:
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\end_inset
\end_layout
\begin_layout Enumerate
Level 1
\end_layout
\begin_deeper
\begin_layout Enumerate
Level 2
\end_layout
\begin_layout Enumerate
Level 2
\end_layout
\begin_deeper
\begin_layout Enumerate
Level 3
\end_layout
\begin_deeper
\begin_layout Enumerate
Level 4
\end_layout
\end_deeper
\end_deeper
\end_deeper
\begin_layout Standard
For this list these commands were used:
\end_layout
\begin_layout Standard
\noindent
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
arabic{enumi}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
alph{enumi})}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
roman{enumiii}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
Alph{enumiv}.}
\end_layout
\end_inset
\begin_inset Note Note
status open
\begin_layout Plain Layout
set the numbering back to the default
\end_layout
\end_inset
\end_layout
\begin_layout Section
Spacing, pagination and line breaks
\begin_inset Index idx

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5678,16 +5678,6 @@ Zitat!(kurz)
\end_inset
LaTeX-Bezeichnung: Quote
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Quote
\end_layout
\end_inset
\end_layout
\begin_layout Itemize
@ -5706,16 +5696,6 @@ Zitat!(lang)
\end_inset
LaTeX-Bezeichnung: Quotation
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Quotation
\end_layout
\end_inset
\end_layout
\begin_layout Itemize
@ -5734,16 +5714,6 @@ Gedicht
\family default
LaTeX-Bezeichnung: Verse
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Verse
\end_layout
\end_inset
\end_layout
\begin_layout Itemize
@ -5767,19 +5737,7 @@ listung
\family default
LaTeX-Bezeichnung: Itemize
\family sans
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Itemize
\end_layout
\end_inset
LaTeX-Bezeichnung: Itemize
\end_layout
\begin_layout Itemize
@ -5798,16 +5756,6 @@ Aufzahlung@Aufzählung
\family default
LaTeX-Bezeichnung: Enumerate
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Enumerate
\end_layout
\end_inset
\end_layout
\begin_layout Itemize
@ -5826,16 +5774,6 @@ Beschreibung
\family default
LaTeX-Bezeichnung: Description
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Description
\end_layout
\end_inset
\end_layout
\begin_layout Itemize
@ -5854,16 +5792,6 @@ Liste
\family default
LaTeX-Bezeichnung: List
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
List
\end_layout
\end_inset
\end_layout
\begin_layout Standard
@ -11504,6 +11432,393 @@ Auflistung
Sie haben jede Menge Möglichkeiten zur Auswahl.
\end_layout
\begin_layout Subsection
Benutzerdefinierte Nummerierung von Nummerierten Listen
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
Liste ! Aufzahlung@Aufzählung ! Benutzerdefiniert
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
Die voreingestellte Nummerierung von nummerierten Listen kann geändert werden,
indem man diesen Befehl als TeX-Code (Tastenkürzel
\family sans
Strg+L
\family default
)
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
Für mehr über TeX-Code, siehe Abschnitt
\begin_inset space ~
\end_inset
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:TeX-Code"
\end_inset
.
\end_layout
\end_inset
in in die Dokumentpräambel oder den Text einfügt:
\end_layout
\begin_layout Standard
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
roman{enumi}}
\end_layout
\begin_layout Standard
\emph on
enumi
\emph default
ist hierbei der Zähler der Nummerierung der ersten Stufe.
Der Befehl
\series bold
\backslash
roman
\series default
gibt den Zähler als kleine römische Zahl.
Für große römische Zahlen ersetzen Sie in obigem Befehl
\series bold
\backslash
roman
\series default
durch
\series bold
\backslash
Roman
\series default
.
Für arabische Zahlen verwenden Sie
\series bold
\backslash
arabic
\series default
.
Um Punkte mit großen oder kleinen Buchstaben zu
\begin_inset Quotes gld
\end_inset
nummerieren
\begin_inset Quotes grd
\end_inset
, verwenden Sie die Befehle
\series bold
\backslash
Alph
\series default
oder
\series bold
\backslash
alph
\series default
.
Für die
\begin_inset Quotes gld
\end_inset
Nummerierung
\begin_inset Quotes grd
\end_inset
mit Symbolen steht der Befehl
\series bold
\backslash
fnsymbol
\series default
zur Verfügung.
\end_layout
\begin_layout Standard
\noindent
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
Bemerkung 1:
\series default
Mit Buchstaben können höchstens 26
\begin_inset space ~
\end_inset
Punkte nummeriert werden, weil nur
\emph on
ein
\emph default
Buchstabe verwendet wird.
\end_layout
\end_inset
\begin_inset Newline newline
\end_inset
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
Bemerkung 2:
\series default
Mit Symbolen können höchstens 9
\begin_inset space ~
\end_inset
Punkte nummeriert werden.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Um die Nummerierung für die anderen Stufen der Liste zu ändern, ersetzen
Sie im Befehl die 'i' jeweils durch die kleine römische Zahl der Stufe
(enumi, enumii, enumiii, enumiv).
\end_layout
\begin_layout Standard
Als Beispiel eine Liste mit benutzerdefinierter Nummerierung:
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\end_inset
\end_layout
\begin_layout Enumerate
Stufe 1
\end_layout
\begin_deeper
\begin_layout Enumerate
Stufe 2
\end_layout
\begin_layout Enumerate
Stufe 2
\end_layout
\begin_deeper
\begin_layout Enumerate
Stufe 3
\end_layout
\begin_deeper
\begin_layout Enumerate
Stufe 4
\end_layout
\end_deeper
\end_deeper
\end_deeper
\begin_layout Standard
Für diese Liste wurden diese Befehle verwendet:
\end_layout
\begin_layout Standard
\noindent
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
arabic{enumi}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
alph{enumi})}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
roman{enumiii}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
Alph{enumiv}.}
\end_layout
\end_inset
\begin_inset Note Note
status open
\begin_layout Plain Layout
setzt die Nummerierung zurück auf die Voreinstellung
\end_layout
\end_inset
\end_layout
\begin_layout Section
Abstände, Seiten- und Zeilenumbrüche
\end_layout
@ -13536,12 +13851,10 @@ Hervorhebungsstil
\end_layout
\begin_layout Subsection
\lang english
LaTeX font support
LaTeX Schriftunterstützung
\begin_inset CommandInset label
LatexCommand label
name "sub:LaTeX-font-support"
name "sub:LaTeX-Schriftunterstützung"
\end_inset
@ -13605,7 +13918,7 @@ status open
\series bold
\lang english
Note:
Achtung:
\series default
In practice, some fonts might fail due to bad metrics and other font deficienci
es; so you might have to experiment.
@ -13626,7 +13939,7 @@ status open
\series bold
\lang english
Note:
Achtung:
\series default
XeTeX and especially LuaTeX, are still rather new and thus not as mature
as traditional LaTeX or PDFLaTeX.
@ -13820,7 +14133,7 @@ you will have to have either XeTeX or LuaTeX installed (see section
\begin_inset CommandInset ref
LatexCommand ref
reference "sub:LaTeX-font-support"
reference "sub:LaTeX-Schriftunterstützung"
\end_inset
@ -16180,7 +16493,7 @@ LuaTeX
\begin_inset CommandInset ref
LatexCommand ref
reference "sub:LaTeX-font-support"
reference "sub:LaTeX-Schriftunterstützung"
\end_inset
@ -16243,8 +16556,9 @@ status collapsed
\begin_layout Plain Layout
\lang english
When you are interested to learn more about this, have a look at the LaTeX-packa
ge
When you are interested to learn more about this, have a look at the
\lang ngerman
LaTeX-Paket
\series bold
pstricks
\series default
@ -16253,9 +16567,7 @@ pstricks
status collapsed
\begin_layout Plain Layout
\lang english
LaTeX-packages ! pstricks
LaTeX-Paket ! pstricks
\end_layout
\end_inset
@ -16540,7 +16852,7 @@ XeTeX
\begin_inset CommandInset ref
LatexCommand ref
reference "sub:LaTeX-font-support"
reference "sub:LaTeX-Schriftunterstützung"
\end_inset
@ -16587,7 +16899,7 @@ pdflatex
\begin_inset CommandInset ref
LatexCommand ref
reference "sub:LaTeX-font-support"
reference "sub:LaTeX-Schriftunterstützung"
\end_inset
@ -33311,7 +33623,14 @@ key "hyperref"
\end_layout
\begin_layout Section
TeX-Code und LaTeX-Syntax
TeX-Code und LaTeX-Syntax
\begin_inset CommandInset label
LatexCommand label
name "sec:TeX-Code"
\end_inset
\begin_inset Index idx
status collapsed

View File

@ -24481,357 +24481,6 @@ examples/multicol.lyx
de separación, y más.
\end_layout
\begin_layout Section
Numeración en el entorno de párrafo
\family sans
Enumeración
\family default
\begin_inset Argument
status collapsed
\begin_layout Plain Layout
Numeración con Enumeración
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
Por omisión, la numeración en el entorno
\family sans
Enumeración
\family default
comienza con números arábigos y acaba con letras mayúsculas.
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
Esto no es así en documentos en español.
El estilo
\family typewriter
spanish
\family default
del programa
\family typewriter
babel
\family sans
\family default
establece de manera predeterminada la secuencia
\begin_inset Quotes fld
\end_inset
1.
\begin_inset space ~
\end_inset
a)
\begin_inset space ~
\end_inset
1)
\begin_inset space ~
\end_inset
a'
\begin_inset Quotes frd
\end_inset
.
\emph on
(N.
del t.)
\end_layout
\end_inset
Supongamos, sin embargo, que quieres un esquema de numeración diferente.
Aquí hay un ejemplo de cómo cambiarlo:
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
Roman{enumi}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
arabic{enumiii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
alph{enumiv}.)}
\end_layout
\begin_layout Standard
\SpecialChar \ldots{}
que cambia el esquema a números romanos en mayúsculas, letras mayúsculas,
números arábigos y letras minúsculas.
\end_layout
\begin_layout Standard
Además, el ejemplo anterior añade un pequeño extra al esquema de numeración.
Así, la etiqueta del primer nivel se ve en realidad como
\begin_inset Quotes fld
\end_inset
I.
\begin_inset Quotes frd
\end_inset
.
Para facilitar la lectura, describiremos cómo se ve el esquema de numeración
con una notación como esta: <
\begin_inset Quotes eld
\end_inset
I.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
A.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
1.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
a.)
\begin_inset Quotes erd
\end_inset
>.
\end_layout
\begin_layout Standard
Como se ve en el ejemplo, hay un comando de etiqueta para cada nivel de
anidación,
\family typewriter
\backslash
labelenumi
\family default
\SpecialChar \ldots{}
\family typewriter
\backslash
labelenumiv
\family default
, así como un contador
\family typewriter
enumi
\family default
\SpecialChar \ldots{}
\family typewriter
enumiv
\family default
.
Hay además cinco comandos de
\begin_inset Quotes fld
\end_inset
números
\begin_inset Quotes frd
\end_inset
,
\family typewriter
\backslash
arabic{}
\family default
,
\family typewriter
\backslash
roman{}
\family default
,
\family typewriter
\backslash
Roman{}
\family default
,
\family typewriter
\backslash
alph{}
\family default
, and
\family typewriter
\backslash
Alph{}
\family default
, cada uno de los cuales lleva un contador como argumento.
\family typewriter
\family default
Puedes añadir caracteres antes y después de los mismos, pero sin necesidad
de poner espacios.
\end_layout
\begin_layout Standard
Con esto puedes conseguir numeraciones a capricho.
Por ejemplo:
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
alph{enumiii}+}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
genera el esquema un poco estrafalario: <
\begin_inset Quotes eld
\end_inset
#A#
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
A.1
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
a+
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
(i)
\begin_inset Quotes erd
\end_inset
>.
\end_layout
\begin_layout Section
Mayúsculas capitulares
\end_layout
@ -25012,6 +24661,13 @@ bigdrop
dropping.
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Section
Párrafos con formas diversas
\end_layout

View File

@ -9256,6 +9256,427 @@ Enumeración*
Tienes a tu disposición una amplia variedad de opciones.
\end_layout
\begin_layout Subsection
\lang english
Custom Numbering of Numbered Lists
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
\lang english
Lists ! Enumerate ! Customized
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
\lang english
The default numbering of numbered lists can be changed by adding this command
in TeX Code (shortcut
\begin_inset Info
type "shortcut"
arg "ert-insert"
\end_inset
)
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
\lang english
For more about TeX Code, look at section
\begin_inset space ~
\end_inset
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:Código-TeX"
\end_inset
.
\end_layout
\end_inset
to your document preamble or in the text:
\end_layout
\begin_layout Standard
\series bold
\lang english
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
roman{enumi}}
\end_layout
\begin_layout Standard
\emph on
\lang english
enumi
\emph default
is hereby the counter of the enumeration in the first level.
The command
\series bold
\backslash
roman
\series default
outputs the counter as small Roman numeral.
For capital Roman numerals replace in the command above
\series bold
\backslash
roman
\series default
by
\series bold
\backslash
Roman
\series default
.
For Arabic numerals use
\series bold
\backslash
arabic
\series default
.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with capital or small Latin letters use
\series bold
\backslash
Alph
\series default
or
\series bold
\backslash
alph
\series default
, respectively.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with symbols use
\series bold
\backslash
fnsymbol
\series default
.
\end_layout
\begin_layout Standard
\noindent
\lang english
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 26
\begin_inset space ~
\end_inset
items with Latin letters, because this numbering is limited to single letters.
\end_layout
\end_inset
\begin_inset Newline newline
\end_inset
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 9
\begin_inset space ~
\end_inset
items with symbols.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\lang english
To change the numbering for the list sublevels, replace each 'i' in the
command by the small Roman numeral of the level (enumi, enumii, enumiii,
enumiv).
\end_layout
\begin_layout Standard
\lang english
As example a list with custom numbering:
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\end_inset
\end_layout
\begin_layout Enumerate
\lang english
Level 1
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 3
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 4
\end_layout
\end_deeper
\end_deeper
\end_deeper
\begin_layout Standard
\lang english
For this list these commands were used
\lang spanish
:
\end_layout
\begin_layout Standard
\noindent
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
arabic{enumi}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
alph{enumi})}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
roman{enumiii}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
Alph{enumiv}.}
\end_layout
\end_inset
\lang english
\begin_inset Note Note
status open
\begin_layout Plain Layout
\lang english
set the numbering back to the default
\end_layout
\end_inset
\end_layout
\begin_layout Section
Espacios, paginación y saltos de línea
\begin_inset Index idx

View File

@ -24930,308 +24930,6 @@ example/fr/MultiColonnes.lyx
, les lignes de séparation verticale, et plus encore.
\end_layout
\begin_layout Section
Numérotation dans l'environnement de paragraphe
\family sans
Énumération
\begin_inset Argument
status collapsed
\begin_layout Plain Layout
Numérotation dans les
\family sans
Énumérations
\end_layout
\end_inset
\end_layout
\begin_layout Standard
La numérotation par défaut dans l'environnement de paragraphe
\family sans
Énumération
\family default
commence par les chiffres arabes et finit par les lettres majuscules.
Supposons cependant que vous vouliez un autre schéma de numérotation.
Voici un rapide exemple de ce qu'il vous faudra écrire :
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
Romain{enumi}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
arabic{enumiii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
alph{enumiv}.)}
\end_layout
\begin_layout Standard
Ceci remplace le schéma existant par, dans l'ordre, les chiffres romains,
les lettres majuscules, les chiffres arabes et les lettres minuscules.
\end_layout
\begin_layout Standard
En fait, cet exemple n'est pas seulement une redéfinition de la numérotation.
Par exemple, le marqueur du premier niveau devient en fait
\family sans
\begin_inset Quotes fld
\end_inset
I.
\begin_inset Quotes frd
\end_inset
\family default
.
Pour faciliter la lecture, nous allons décrire les schémas de numérotation
avec cette notation :
\family sans
<
\begin_inset Quotes fld
\end_inset
I.
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
A.
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
1.
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
a.)
\begin_inset Quotes frd
\end_inset
>
\family default
.
\end_layout
\begin_layout Standard
Comme vous pouvez le voir dans l'exemple, il existe pour chaque niveau d'emboîte
ment une commande :
\family typewriter
\backslash
labelenumi
\family default
\SpecialChar \ldots{}
\family typewriter
\backslash
labelenumiv
\family default
, et un compteur :
\family typewriter
enumi
\family default
\SpecialChar \ldots{}
\family typewriter
enumiv
\family default
.
Il existe aussi cinq commandes de mise en forme des numéros :
\family typewriter
\backslash
arabic{}
\family default
,
\family typewriter
\backslash
roman{}
\family default
,
\family typewriter
\backslash
Romain{}
\family default
,
\family typewriter
\backslash
alph{}
\family default
, et
\family typewriter
\backslash
Alph{}
\family default
, chacune prenant un compteur pour paramètre.
Vous pouvez ajouter des caractères avant et après celui-ci, les espaces
étant quant à elles générées automatiquement.
\end_layout
\begin_layout Standard
Ça peut devenir vraiment amusant avec, par exemple :
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
alph{enumiii}+}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
qui donne le schéma de numérotation :
\family sans
<
\begin_inset Quotes fld
\end_inset
#A#
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
A.1
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
a+
\begin_inset Quotes frd
\end_inset
\family default
,
\family sans
\begin_inset Quotes fld
\end_inset
(i)
\begin_inset Quotes frd
\end_inset
>
\family default
.
\end_layout
\begin_layout Section
Lettrines
\end_layout
@ -25403,6 +25101,13 @@ dropping
légèrement plus simple.
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Section
Paragraphes de forme inhabituelle
\end_layout

View File

@ -9495,6 +9495,428 @@ ListePuces
Vous avez une énorme variété d'options à votre disposition.
\end_layout
\begin_layout Subsection
\lang english
Custom Numbering of Numbered Lists
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
\lang english
Lists ! Enumerate ! Customized
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
\lang english
The default numbering of numbered lists can be changed by adding this command
in TeX Code (shortcut
\begin_inset Info
type "shortcut"
arg "ert-insert"
\end_inset
)
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
\lang english
For more about TeX Code, look at section
\begin_inset space ~
\end_inset
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:Code-TeX"
\end_inset
.
\end_layout
\end_inset
to your document preamble or in the text:
\end_layout
\begin_layout Standard
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
roman{enumi}}
\end_layout
\begin_layout Standard
\emph on
\lang english
enumi
\emph default
is hereby the counter of the enumeration in the first level.
The command
\series bold
\backslash
roman
\series default
outputs the counter as small Roman numeral.
For capital Roman numerals replace in the command above
\series bold
\backslash
roman
\series default
by
\series bold
\backslash
Roman
\series default
.
For Arabic numerals use
\series bold
\backslash
arabic
\series default
.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with capital or small Latin letters use
\series bold
\backslash
Alph
\series default
or
\series bold
\backslash
alph
\series default
, respectively.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with symbols use
\series bold
\backslash
fnsymbol
\series default
.
\end_layout
\begin_layout Standard
\noindent
\lang english
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 26
\begin_inset space ~
\end_inset
items with Latin letters, because this numbering is limited to single letters.
\end_layout
\end_inset
\begin_inset Newline newline
\end_inset
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 9
\begin_inset space ~
\end_inset
items with symbols.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\lang english
To change the numbering for the list sublevels, replace each 'i' in the
command by the small Roman numeral of the level (enumi, enumii, enumiii,
enumiv).
\end_layout
\begin_layout Standard
\lang english
As example a list with custom numbering
\lang french
:
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\end_inset
\end_layout
\begin_layout Enumerate
\lang english
Level 1
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 3
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 4
\end_layout
\end_deeper
\end_deeper
\end_deeper
\begin_layout Standard
\lang english
For this list these commands were used
\lang french
:
\end_layout
\begin_layout Standard
\noindent
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
arabic{enumi}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
alph{enumi})}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
roman{enumiii}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
Alph{enumiv}.}
\end_layout
\end_inset
\lang english
\begin_inset Note Note
status open
\begin_layout Plain Layout
\lang english
set the numbering back to the default
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\end_layout

View File

@ -20684,289 +20684,6 @@ examples/multicol.lyx
を読んでください。
\end_layout
\begin_layout Section
箇条書き(連番)段落環境での番号振り
\begin_inset Argument
status collapsed
\begin_layout Plain Layout
箇条書き(連番)の番号振り
\end_layout
\end_inset
\end_layout
\begin_layout Standard
既定での
\begin_inset Flex MenuItem
status collapsed
\begin_layout Plain Layout
箇条書き(連番)
\end_layout
\end_inset
段落環境での番号の付け方はアラビア数字で始まり、アルファベットの大文字で終わります。違う番号の付け方をしたい場合にはどうしたらいいのでしょうか。次の例を見てくだ
さい。
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
Roman{enumi}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
arabic{enumiii}.}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
alph{enumiv}.)}
\end_layout
\begin_layout Standard
これは番号の付け方をまず大文字のローマ数字、次に大文字のアルファベット、アラビア数字、小文字のアルファベットにします。
\end_layout
\begin_layout Standard
前の例にはもう少しおまけがついていて、番号の後に点が入ります。例えば初めのレベルのレベルは
\begin_inset Quotes eld
\end_inset
I.
\begin_inset Quotes erd
\end_inset
のようになります。読みやすいように、番号の付け方を説明するのに<
\begin_inset Quotes eld
\end_inset
I.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes erd
\end_inset
A.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes erd
\end_inset
1.
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
a.)
\begin_inset Quotes erd
\end_inset
>のような表示方法を使うことにしましょう。
\end_layout
\begin_layout Standard
例を見て分かるように、各々のネストのレベルにラベルコマンド
\family typewriter
\backslash
labelenumi
\family default
\SpecialChar \ldots{}
\family typewriter
\backslash
labelenumiv
\family default
とカウンタ
\family typewriter
enumi
\family default
\SpecialChar \ldots{}
\family typewriter
enumiv
\family default
があります。使うことのできる番号印刷用のコマンドは
\family typewriter
\backslash
arabic{}
\family default
\family typewriter
\backslash
roman{}
\family default
\family typewriter
\backslash
Roman{}
\family default
\family typewriter
\backslash
alph{}
\family default
\family typewriter
\backslash
Alph{}
\family default
の5つでカウンタを一つ引数として取ります。これらの前または後ろに好きな文字を加えることができます。ただしスペースを加える必要はありません。
\end_layout
\begin_layout Standard
これらの機能を使った例をお見せしましょう。
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
alph{enumiii}+}
\end_layout
\begin_layout LyX-Code
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
この例は番号の付け方を <
\begin_inset Quotes eld
\end_inset
#A#
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes erd
\end_inset
A.1
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes erd
\end_inset
a+
\begin_inset Quotes erd
\end_inset
,
\begin_inset space ~
\end_inset
\begin_inset Quotes eld
\end_inset
(i)
\begin_inset Quotes erd
\end_inset
>のようにします。
\end_layout
\begin_layout Section
Dropped Capitals
\end_layout
@ -21096,6 +20813,13 @@ dropping
コマンドも持っています。
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Section
標準的でない形の段落
\end_layout

View File

@ -15118,6 +15118,430 @@ Moosegroin, MT 00100
を入れることも簡単にできます。膨大な選択肢を自由にお使いいただけるのです。
\end_layout
\begin_layout Subsection
\lang english
Custom Numbering of Numbered Lists
\begin_inset Index idx
status collapsed
\begin_layout Plain Layout
\lang english
Lists ! Enumerate ! Customized
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\noindent
\lang english
The default numbering of numbered lists can be changed by adding this command
in TeX Code (shortcut
\begin_inset Info
type "shortcut"
arg "ert-insert"
\end_inset
)
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
\lang english
For more about TeX Code, look at section
\lang japanese
\begin_inset space ~
\end_inset
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:TeXコード"
\end_inset
.
\end_layout
\end_inset
to your document preamble or in the text:
\end_layout
\begin_layout Standard
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
roman{enumi}}
\end_layout
\begin_layout Standard
\emph on
\lang english
enumi
\emph default
is hereby the counter of the enumeration in the first level.
The command
\series bold
\backslash
roman
\series default
outputs the counter as small Roman numeral.
For capital Roman numerals replace in the command above
\series bold
\backslash
roman
\series default
by
\series bold
\backslash
Roman
\series default
.
For Arabic numerals use
\series bold
\backslash
arabic
\series default
.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with capital or small Latin letters use
\series bold
\backslash
Alph
\series default
or
\series bold
\backslash
alph
\series default
, respectively.
To
\begin_inset Quotes eld
\end_inset
number
\begin_inset Quotes erd
\end_inset
items with symbols use
\series bold
\backslash
fnsymbol
\series default
.
\end_layout
\begin_layout Standard
\noindent
\lang english
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 26
\begin_inset space ~
\end_inset
items with Latin letters, because this numbering is limited to single letters.
\end_layout
\end_inset
\begin_inset Newline newline
\end_inset
\begin_inset Note Greyedout
status open
\begin_layout Plain Layout
\series bold
\lang english
Note:
\series default
You can only number 9
\begin_inset space ~
\end_inset
items with symbols.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\lang english
To change the numbering for the list sublevels, replace each 'i' in the
command by the small Roman numeral of the level (enumi, enumii, enumiii,
enumiv).
\end_layout
\begin_layout Standard
\lang english
As example a list with custom numbering
\lang japanese
:
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\end_inset
\end_layout
\begin_layout Enumerate
\lang english
Level 1
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_layout Enumerate
\lang english
Level 2
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 3
\end_layout
\begin_deeper
\begin_layout Enumerate
\lang english
Level 4
\end_layout
\end_deeper
\end_deeper
\end_deeper
\begin_layout Standard
\lang english
For this list these commands were used
\lang japanese
:
\end_layout
\begin_layout Standard
\noindent
\series bold
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
#
\backslash
Alph{enumi}
\backslash
#}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
Alph{enumi}.
\backslash
arabic{enumii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
fnsymbol{enumiii}}
\begin_inset Newline newline
\end_inset
\backslash
renewcommand{
\backslash
labelenumiv}{(
\backslash
roman{enumiv})}
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumi}{
\backslash
arabic{enumi}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumii}{
\backslash
alph{enumi})}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiii}{
\backslash
roman{enumiii}.}
\end_layout
\begin_layout Plain Layout
\backslash
renewcommand{
\backslash
labelenumiv}{
\backslash
Alph{enumiv}.}
\end_layout
\end_inset
\lang english
\begin_inset Note Note
status open
\begin_layout Plain Layout
\lang english
set the numbering back to the default
\end_layout
\end_inset
\end_layout
\begin_layout Section
余白取りとページ付けおよび改行
\begin_inset Index idx

View File

@ -58,8 +58,10 @@ What's new
* DOCUMENTATION AND LOCALIZATION
- UserGuide: new section how to define custom header/footer lines
(bug 7196).
- UserGuide:
- new section how to define custom header/footer lines
(bug 7196).
- new section how to change numbering style of numbered lists
- EnbeddedObjects manual: describe that LyX supports now the changing of
the color of the greyed-out box text