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