]> git.lyx.org Git - lyx.git/blob - lib/layouts/soul.module
Add soul module
[lyx.git] / lib / layouts / soul.module
1 #\DeclareLyXModule[soul.sty]{Soul Text Markup}
2 #DescriptionBegin
3 #Defines text styles to highlight, space-out, strike-through
4 #underline and capitalize text by means of the soul package.
5 #DescriptionEnd
6 #Requires       
7 #Excludes
8
9 #Author: Stephen [original implementation],
10 #        Juergen Spitzmueller <spitz@lyx.org> [fixes]
11
12 Format 71
13
14 InsetLayout Flex:Spaceletters
15         LyxType         charstyle
16         LabelString     spaced
17         Decoration      conglomerate
18         LatexType       command
19         LatexName       so
20         LabelFont
21             Size        Small
22         EndFont
23         NeedMBoxProtect true
24         MultiPar        true
25         Requires        soul
26 End
27
28 InsetLayout Flex:Strikethrough
29         CopyStyle       Flex:Spaceletters
30         LabelString     strike
31         LatexName       st
32         Font
33             Misc        strikeout
34         EndFont
35 End
36
37 InsetLayout Flex:Underline
38         CopyStyle       Flex:Spaceletters
39         LabelString     ul
40         LatexName       ul
41         Font
42             Misc        underbar
43         EndFont
44 End
45
46 InsetLayout Flex:Highlight
47         CopyStyle       Flex:Spaceletters
48         LabelString     hl
49         LatexName       hl
50         BgColor         yellow
51         Requires        soul,color
52 End
53
54 InsetLayout Flex:Capitalize
55         CopyStyle       Flex:Spaceletters
56         LabelString     caps
57         LatexName       caps
58         Font
59             Shape       smallcaps
60         EndFont
61 End
62
63
64 # Obsolete older forms used on wiki.lyx.org
65
66 InsetLayout Flex:spaceletters
67         ObsoletedBy     Flex:Spaceletters
68 End
69
70 InsetLayout Flex:strikethrough
71         ObsoletedBy     Flex:Strikethrough
72 End
73
74 InsetLayout Flex:underline
75         ObsoletedBy     Flex:Underline
76 End
77
78 InsetLayout Flex:highlight
79         ObsoletedBy     Flex:Highlight
80 End
81
82 InsetLayout Flex:capitalise
83         ObsoletedBy     Flex:Capitalize
84 End
85
86 InsetLayout Flex:Capitalise
87         ObsoletedBy     Flex:Capitalize
88 End