mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
4345331870
The current spelling is not strictly wrong, but flagged as unusual or historical by some authorities. It is also found fault with many spell checkers. Thus we decided to move to the more standard "-ible" form once and for all. See #10678 for discussion This last part updates the layout format and changes collapsable color. This will all also all be backported to 2.3.x, for the sake of backwards compatibility (cherry-picking).
79 lines
1.6 KiB
Plaintext
79 lines
1.6 KiB
Plaintext
#\DeclareLyXModule{Logical Markup}
|
|
#DescriptionBegin
|
|
#Defines some character styles for logical markup: noun, emph, strong, and code.
|
|
#DescriptionEnd
|
|
#Category: charstyles
|
|
|
|
# Author : Martin vermeer <martin.vermeer@hut.fi>
|
|
|
|
Format 65
|
|
|
|
InsetLayout Flex:Noun
|
|
LyxType charstyle
|
|
LabelString noun
|
|
LatexType command
|
|
LatexName noun
|
|
Font
|
|
Shape Smallcaps
|
|
EndFont
|
|
Requires noun
|
|
InToc true
|
|
HTMLTag span
|
|
HTMLAttr class='noun'
|
|
HTMLStyle
|
|
span.noun {
|
|
font-family: sans-serif;
|
|
}
|
|
EndHTMLStyle
|
|
ResetsFont true
|
|
End
|
|
|
|
|
|
InsetLayout Flex:Emph
|
|
LyxType charstyle
|
|
LabelString emph
|
|
LatexType command
|
|
LatexName emph
|
|
Font
|
|
Shape Italic
|
|
EndFont
|
|
InToc true
|
|
HTMLTag em
|
|
ResetsFont true
|
|
End
|
|
|
|
|
|
InsetLayout Flex:Strong
|
|
LyxType charstyle
|
|
LabelString strong
|
|
LatexType command
|
|
LatexName strong
|
|
Font
|
|
Series Bold
|
|
EndFont
|
|
Preamble
|
|
\providecommand*{\strong}[1]{\textbf{#1}}
|
|
EndPreamble
|
|
InToc true
|
|
HTMLTag strong
|
|
ResetsFont true
|
|
End
|
|
|
|
|
|
InsetLayout Flex:Code
|
|
LyxType charstyle
|
|
LabelString code
|
|
LatexType command
|
|
LatexName code
|
|
Font
|
|
Family Typewriter
|
|
EndFont
|
|
Preamble
|
|
\providecommand*{\code}[1]{\texttt{#1}}
|
|
EndPreamble
|
|
InToc true
|
|
HTMLTag code
|
|
ResetsFont true
|
|
Spellcheck false
|
|
End
|