]> git.lyx.org Git - lyx.git/blob - lib/layouts/stdfloats.inc
Two places where coverity urges us to limit string length
[lyx.git] / lib / layouts / stdfloats.inc
1 # Author : Lars Gullik Bjønnes <larsbj@lyx.org>
2
3 # This include file contains all the floats that are defined as standard
4 # in most LyX layouts.
5
6
7 Format 63
8
9 OutlinerName table        "Tables" #no AddToToc (built-in)
10 OutlinerName figure       "Figures" #no AddToToc (built-in)
11 OutlinerName algorithm    "Algorithms" #no AddToToc (built-in)
12
13 Float
14         Type                  table
15         GuiName               Table
16         Placement             tbp
17         Extension             lot
18         NumberWithin          none
19         Style                 plain
20         ListName              "List of Tables"
21         IsPredefined          true
22         UsesFloatPkg          false
23         ListCommand           listoftables
24         RefPrefix             tab
25 End
26
27
28 Float
29         Type                  figure
30         GuiName               Figure
31         Placement             tbp
32         Extension             lof
33         NumberWithin          none
34         Style                 plain
35         ListName              "List of Figures"
36         IsPredefined          true
37         UsesFloatPkg          false
38         ListCommand           listoffigures
39         RefPrefix             fig
40 End
41
42
43 Float
44         Type                  algorithm
45         GuiName               Algorithm
46         Placement             tbp
47         Extension             loa
48         NumberWithin          none
49         Style                 ruled
50         ListName              "List of Algorithms"
51         IsPredefined          false
52         UsesFloatPkg          true
53         RefPrefix             alg
54 End
55
56
57 InsetLayout FloatList
58   HTMLTag h2
59   HTMLStyle
60     a.lyxtoc-floats { 
61       text-decoration: none; 
62       color: black;
63     }
64     a.lyxtoc-floats:visited { color: black; }
65     div.lyxtoc-floats { 
66       margin: 0em 0em 0.1em 1em;
67       font-size: large;
68       font-weight: normal;
69     }
70   EndHTMLStyle
71 End