]> git.lyx.org Git - lyx.git/blob - lib/layouts/multicol.module
update support for multicolumns
[lyx.git] / lib / layouts / multicol.module
1 #\DeclareLyXModule[multicol.sty]{Multiple Columns}
2 #DescriptionBegin
3 #Adds a custom inset whose content is set with multiple columns (2 by default).
4 #See the Additional manual, section 'Multiple Text Columns', for a detailed
5 #description of multiple columns.
6 #DescriptionEnd
7 #Authors: Uwe Stöhr and Jürgen Spitzmüller
8
9 Format 45
10
11 AddToPreamble
12 % used for multiple text columns
13 \usepackage{multicol}
14
15 EndPreamble
16
17 InsetLayout Flex:Multiple_Columns
18   LyXType               custom
19   Decoration            classic
20   LabelString           Columns
21   LatexType             environment
22   LatexName             multicols
23   Argument 1
24     LabelString         "Number of Columns"
25     Tooltip             "Insert the number of columns here"
26     Mandatory           1
27     DefaultArg          2
28   EndArgument
29   Argument 2
30     LabelString         "Preface"
31     Tooltip             "An optional preface"
32   EndArgument
33   Argument 3
34     LabelString         "Space Before Page Break"
35     Tooltip             "Free space that needs to be on the page to start the multiple columns on this page"
36     Requires            2
37   EndArgument
38   Requires              multicol
39 End
40