]> git.lyx.org Git - lyx.git/blob - lib/layouts/amsmaths-plain.inc
Whitespace, only whitespace. Part II.
[lyx.git] / lib / layouts / amsmaths-plain.inc
1 # Author : David L. Johnson <dlj0@lehigh.edu>
2 # Probably broken by Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
3 # modified and modularized by Emmanuel GUREGHIAN <gureghia@boston.bertin.fr>
4
5
6 # These are only the plain (unnumbered) theorem styles environments
7 # The environments defined are:
8 # - Theorem
9 # - Corollary
10 # - Lemma
11 # - Proposition
12 # - Conjecture
13 # - Criterion
14 # - Algorithm
15 # - Fact
16 # - Axiom
17 # - Definition
18 # - Example
19 # - Condition
20 # - Problem
21 # - Exercise
22 # - Remark
23 # - Claim
24 # - Note
25 # - Notation
26 # - Summary
27 # - Acknowledgement
28 # - Case
29 # - Conclusion
30
31
32 Style Theorem
33         LatexName             thm*
34         LabelString           "Theorem."
35         Preamble
36           \theoremstyle{plain}
37           \newtheorem*{thm*}{Theorem}
38         EndPreamble
39 End
40
41
42 Style Corollary
43         LatexName             cor*
44         LabelString           "Corollary."
45         Preamble
46           \theoremstyle{plain}
47           \newtheorem*{cor*}{Corollary}
48         EndPreamble
49 End
50
51
52 Style Lemma
53         LatexName             lem*
54         LabelString           "Lemma."
55         Preamble
56           \theoremstyle{plain}
57           \newtheorem*{lem*}{Lemma}
58         EndPreamble
59 End
60
61
62 Style Proposition
63         LatexName             prop*
64         LabelString           "Proposition."
65         Preamble
66           \theoremstyle{plain}
67           \newtheorem*{prop*}{Proposition}
68         EndPreamble
69 End
70
71
72 Style Conjecture
73         LatexName             conjecture*
74         LabelString           "Conjecture."
75         Preamble
76           \theoremstyle{plain}
77           \newtheorem*{conjecture*}{Conjecture}
78         EndPreamble
79 End
80
81
82 Style Criterion
83         LatexName             criterion*
84         LabelString           "Criterion."
85         Preamble
86           \theoremstyle{plain}
87           \newtheorem*{criterion*}{Criterion}
88         EndPreamble
89 End
90
91
92 Style Algorithm
93         LatexName             algorithm*
94         LabelString           "Algorithm #."
95         Preamble
96           \theoremstyle{plain}
97           \newtheorem*{algorithm*}{Algorithm}
98         EndPreamble
99 End
100
101
102 Style Fact
103         LatexName             fact*
104         LabelString           "Fact."
105         Preamble
106           \theoremstyle{plain}
107           \newtheorem*{fact*}{Fact}
108         EndPreamble
109 End
110
111
112 Style Axiom
113         LatexName             ax*
114         LabelString           "Axiom."
115         Preamble
116           \theoremstyle{plain}
117           \newtheorem*{ax*}{Axiom}
118         EndPreamble
119 End
120
121
122 Style Definition
123         LatexName             defn*
124         LabelString           "Definition."
125         Preamble
126           \theoremstyle{definition}
127           \newtheorem*{defn*}{Definition}
128         EndPreamble
129 End
130
131
132 Style Example
133         LatexName             example*
134         LabelString           "Example."
135         Preamble
136           \theoremstyle{definition}
137           \newtheorem*{example*}{Example}
138         EndPreamble
139 End
140
141
142 Style Condition
143         LatexName             condition*
144         LabelString           "Condition."
145         Preamble
146           \theoremstyle{definition}
147           \newtheorem*{condition*}{Condition}
148         EndPreamble
149 End
150
151
152 Style Problem
153         LatexName             problem*
154         LabelString           "Problem."
155         Preamble
156           \theoremstyle{definition}
157           \newtheorem*{problem*}{Problem}
158         EndPreamble
159 End
160
161
162 Style Exercise
163         LatexName             xca*
164         LabelString           "Exercise."
165         Preamble
166           \theoremstyle{definition}
167           \newtheorem*{xca*}{Exercise}
168         EndPreamble
169 End
170
171
172 Style Remark
173         LatexName             rem*
174         LabelString           "Remark."
175         Preamble
176           \theoremstyle{remark}
177           \newtheorem*{rem*}{Remark}
178         EndPreamble
179 End
180
181
182 Style Claim
183         LatexName             claim*
184         LabelString           "Claim."
185         Preamble
186           \theoremstyle{remark}
187           \newtheorem*{claim*}{Claim}
188         EndPreamble
189 End
190
191
192 Style Note
193         LatexName             note*
194         LabelString           "Note."
195         Preamble
196           \theoremstyle{remark}
197           \newtheorem*{note*}{Note}
198         EndPreamble
199 End
200
201
202 Style Notation
203         LatexName             notation*
204         LabelString           "Notation."
205         Preamble
206           \theoremstyle{remark}
207           \newtheorem*{notation*}{Notation}
208         EndPreamble
209 End
210
211
212 Style Summary
213         LatexName             summary*
214         LabelString           "Summary."
215         Preamble
216           \theoremstyle{remark}
217           \newtheorem*{summary*}{Summary}
218         EndPreamble
219 End
220
221
222 Style Acknowledgement
223         LatexName             acknowledgement*
224         LabelString           "Acknowledgement."
225         Preamble
226           \theoremstyle{remark}
227           \newtheorem*{acknowledgement*}{Acknowledgement}
228         EndPreamble
229 End
230
231
232 Style Case
233         LatexName             case*
234         LabelString           "Case."
235         Preamble
236           \theoremstyle{remark}
237           \newtheorem*{case*}{Case}
238         EndPreamble
239 End
240
241
242 Style Conclusion
243         LatexName             conclusion*
244         LabelString           "Conclusion."
245         Preamble
246           \theoremstyle{remark}
247           \newtheorem*{conclusion*}{Conclusion}
248         EndPreamble
249 End