]> git.lyx.org Git - lyx.git/blob - lib/layouts/amsmaths-seq.inc
include intl/libintl.h that is relative to $TOP_SRCDIR/src
[lyx.git] / lib / layouts / amsmaths-seq.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 # Tinkered with Sep. '07 by Paul Rubin <rubin@msu.edu>
5
6 # These are only the theorems styles environnements
7 # The environnements 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 # - Conclusion
29 # - Assumption
30 # - Case (regular only -- defined as an enumeration)
31
32 Format 5
33
34 # Use a simpler preamble.
35
36 Preamble
37 EndPreamble
38
39
40 # but more counters
41
42 # Do not restart theorem counter after section change
43 Counter
44         Name                  thm
45 End
46
47 Counter
48         Name                  corollary
49 End
50
51
52 Counter
53         Name                  lemma
54 End
55
56
57 Counter
58         Name                  proposition
59 End
60
61
62 Counter
63         Name                  conjecture
64 End
65
66
67 Counter
68         Name                  criterion
69 End
70
71
72 Counter
73         Name                  algorithm
74 End
75
76
77 Counter
78         Name                  fact
79 End
80
81
82 Counter
83         Name                  axiom
84 End
85
86
87 Counter
88         Name                  definition
89 End
90
91
92 Counter
93         Name                  example
94 End
95
96
97 Counter
98         Name                  condition
99 End
100
101
102 Counter
103         Name                  problem
104 End
105
106
107 Counter
108         Name                  exercise
109 End
110
111
112 Counter
113         Name                  remark
114 End
115
116
117 Counter
118         Name                  claim
119 End
120
121
122 Counter
123         Name                  note
124 End
125
126
127 Counter
128         Name                  notation
129 End
130
131
132 Counter
133         Name                  summary
134 End
135
136
137 Counter
138         Name                  acknowledgement
139 End
140
141
142 Counter
143         Name                  conclusion
144 End
145
146 Counter
147         Name                  assumption
148 End
149
150 Style Theorem
151         LabelCounter          thm
152         LabelString           "Theorem \arabic{thm}."
153         Preamble
154           \theoremstyle{plain}
155           \newtheorem{thm}{Theorem}
156         EndPreamble
157 End
158
159
160 Style Corollary
161         LabelCounter          corollary
162         DependsOn             ""
163         LabelString           "Corollary \arabic{corollary}."
164         Preamble
165           \theoremstyle{plain}
166           \newtheorem{cor}{Corollary}
167         EndPreamble
168 End
169
170
171 Style Lemma
172         LabelCounter          lemma
173         DependsOn             ""
174         LabelString           "Lemma \arabic{lemma}."
175         Preamble
176           \theoremstyle{plain}
177           \newtheorem{lem}{Lemma}
178         EndPreamble
179 End
180
181
182 Style Proposition
183         LabelCounter          proposition
184         DependsOn             ""
185         LabelString           "Proposition \arabic{proposition}."
186         Preamble
187           \theoremstyle{plain}
188           \newtheorem{prop}{Proposition}
189         EndPreamble
190 End
191
192
193 Style Conjecture
194         LabelCounter          conjecture
195         DependsOn             ""
196         LabelString           "Conjecture \arabic{conjecture}."
197         Preamble
198           \theoremstyle{plain}
199           \newtheorem{conjecture}{Conjecture}
200         EndPreamble
201 End
202
203
204 Style Criterion
205         LabelCounter          criterion
206         DependsOn             ""
207         LabelString           "Criterion \arabic{criterion}."
208         Preamble
209           \theoremstyle{plain}
210           \newtheorem{criterion}{Criterion}
211         EndPreamble
212 End
213
214
215 Style Algorithm
216         LabelCounter          algorithm
217         DependsOn             ""
218         LabelString           "Algorithm \arabic{algorithm}."
219         Preamble
220           \theoremstyle{plain}
221           \newtheorem{algorithm}{Algorithm}
222         EndPreamble
223 End
224
225
226 Style Fact
227         LabelCounter          fact
228         DependsOn             ""
229         LabelString           "Fact \arabic{fact}."
230         Preamble
231           \theoremstyle{plain}
232           \newtheorem{fact}{Fact}
233         EndPreamble
234 End
235
236
237 Style Axiom
238         LabelCounter          axiom
239         DependsOn             ""
240         LabelString           "Axiom \arabic{axiom}."
241         Preamble
242           \theoremstyle{plain}
243           \newtheorem{ax}{Axiom}
244         EndPreamble
245 End
246
247
248 Style Definition
249         LabelCounter          definition
250         DependsOn             ""
251         LabelString           "Definition \arabic{definition}."
252         Preamble
253          \theoremstyle{definition}
254          \newtheorem{defn}{Definition}
255         EndPreamble
256 End
257
258
259 Style Example
260         LabelCounter          example
261         DependsOn             ""
262         LabelString           "Example \arabic{example}."
263         Preamble
264          \theoremstyle{definition}
265           \newtheorem{example}{Example}
266         EndPreamble
267 End
268
269
270 Style Condition
271         LabelCounter          condition
272         DependsOn             ""
273         LabelString           "Condition \arabic{condition}."
274         Preamble
275          \theoremstyle{definition}
276           \newtheorem{condition}{Condition}
277         EndPreamble
278 End
279
280
281 Style Problem
282         LabelCounter          problem
283         DependsOn             ""
284         LabelString           "Problem \arabic{problem}."
285         Preamble
286          \theoremstyle{definition}
287           \newtheorem{problem}{Problem}
288         EndPreamble
289 End
290
291
292 Style Exercise
293         LabelCounter          exercise
294         DependsOn             ""
295         LabelString           "Exercise \arabic{exercise}."
296         Preamble
297          \theoremstyle{definition}
298           \newtheorem{xca}{Exercise}
299         EndPreamble
300 End
301
302
303 Style Remark
304         LabelCounter          remark
305         DependsOn             ""
306         LabelString           "Remark \arabic{remark}."
307         Preamble
308           \theoremstyle{remark}
309           \newtheorem{rem}{Remark}
310         EndPreamble
311 End
312
313
314 Style Claim
315         LabelCounter          claim
316         DependsOn             ""
317         LabelString           "Claim \arabic{claim}."
318         Preamble
319           \theoremstyle{remark}
320           \newtheorem{claim}{Claim}
321         EndPreamble
322 End
323
324
325 Style Note
326         LabelCounter          note
327         DependsOn             ""
328         LabelString           "Note \arabic{note}."
329         Preamble
330           \theoremstyle{remark}
331           \newtheorem{note}{Note}
332         EndPreamble
333 End
334
335
336 Style Notation
337         LabelCounter          notation
338         DependsOn             ""
339         LabelString           "Notation \arabic{notation}."
340         Preamble
341           \theoremstyle{remark}
342           \newtheorem{notation}{Notation}
343         EndPreamble
344 End
345
346
347 Style Summary
348         LabelCounter          summary
349         DependsOn             ""
350         LabelString           "Summary \arabic{summary}."
351         Preamble
352           \theoremstyle{remark}
353           \newtheorem{summary}{Summary}
354         EndPreamble
355 End
356
357
358 Style Acknowledgement
359         LabelCounter          acknowledgement
360         DependsOn             ""
361         LabelString           "Acknowledgement \arabic{acknowledgement}."
362         Preamble
363           \theoremstyle{remark}
364           \newtheorem{acknowledgement}{Acknowledgement}
365         EndPreamble
366 End
367
368
369 Style Conclusion
370         LabelCounter          conclusion
371         DependsOn             ""
372         LabelString           "Conclusion \arabic{conclusion}."
373         Preamble
374           \theoremstyle{remark}
375           \newtheorem{conclusion}{Conclusion}
376         EndPreamble
377 End
378
379
380 Style Assumption
381         LabelCounter          assumption
382         DependsOn             ""
383         LabelString           "Assumption \arabic{assumption}."
384         Preamble
385           \theoremstyle{plain}
386           \newtheorem{assumption}{Assumption}
387         EndPreamble
388 End