]> git.lyx.org Git - lyx.git/blob - lib/layouts/amsmaths-seq.inc
Add lib/doc/Shortcuts.lyx and menu entry Help->Shortcuts. Please help complete this...
[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         LabelString           "Corollary \arabic{corollary}."
163         Preamble
164           \theoremstyle{plain}
165           \newtheorem{cor}{Corollary}
166         EndPreamble
167 End
168
169
170 Style Lemma
171         LabelCounter          lemma
172         LabelString           "Lemma \arabic{lemma}."
173         Preamble
174           \theoremstyle{plain}
175           \newtheorem{lem}{Lemma}
176         EndPreamble
177 End
178
179
180 Style Proposition
181         LabelCounter          proposition
182         LabelString           "Proposition \arabic{proposition}."
183         Preamble
184           \theoremstyle{plain}
185           \newtheorem{prop}{Proposition}
186         EndPreamble
187 End
188
189
190 Style Conjecture
191         LabelCounter          conjecture
192         LabelString           "Conjecture \arabic{conjecture}."
193         Preamble
194           \theoremstyle{plain}
195           \newtheorem{conjecture}{Conjecture}
196         EndPreamble
197 End
198
199
200 Style Criterion
201         LabelCounter          criterion
202         LabelString           "Criterion \arabic{criterion}."
203         Preamble
204           \theoremstyle{plain}
205           \newtheorem{criterion}{Criterion}
206         EndPreamble
207 End
208
209
210 Style Algorithm
211         LabelCounter          algorithm
212         LabelString           "Algorithm \arabic{algorithm}."
213         Preamble
214           \theoremstyle{plain}
215           \newtheorem{algorithm}{Algorithm}
216         EndPreamble
217 End
218
219
220 Style Fact
221         LabelCounter          fact
222         LabelString           "Fact \arabic{fact}."
223         Preamble
224           \theoremstyle{plain}
225           \newtheorem{fact}{Fact}
226         EndPreamble
227 End
228
229
230 Style Axiom
231         LabelCounter          axiom
232         LabelString           "Axiom \arabic{axiom}."
233         Preamble
234           \theoremstyle{plain}
235           \newtheorem{ax}{Axiom}
236         EndPreamble
237 End
238
239
240 Style Definition
241         LabelCounter          definition
242         LabelString           "Definition \arabic{definition}."
243         Preamble
244          \theoremstyle{definition}
245          \newtheorem{defn}{Definition}
246         EndPreamble
247 End
248
249
250 Style Example
251         LabelCounter          example
252         LabelString           "Example \arabic{example}."
253         Preamble
254          \theoremstyle{definition}
255           \newtheorem{example}{Example}
256         EndPreamble
257 End
258
259
260 Style Condition
261         LabelCounter          condition
262         LabelString           "Condition \arabic{condition}."
263         Preamble
264          \theoremstyle{definition}
265           \newtheorem{condition}{Condition}
266         EndPreamble
267 End
268
269
270 Style Problem
271         LabelCounter          problem
272         LabelString           "Problem \arabic{problem}."
273         Preamble
274          \theoremstyle{definition}
275           \newtheorem{problem}{Problem}
276         EndPreamble
277 End
278
279
280 Style Exercise
281         LabelCounter          exercise
282         LabelString           "Exercise \arabic{exercise}."
283         Preamble
284          \theoremstyle{definition}
285           \newtheorem{xca}{Exercise}
286         EndPreamble
287 End
288
289
290 Style Remark
291         LabelCounter          remark
292         LabelString           "Remark \arabic{remark}."
293         Preamble
294           \theoremstyle{remark}
295           \newtheorem{rem}{Remark}
296         EndPreamble
297 End
298
299
300 Style Claim
301         LabelCounter          claim
302         LabelString           "Claim \arabic{claim}."
303         Preamble
304           \theoremstyle{remark}
305           \newtheorem{claim}{Claim}
306         EndPreamble
307 End
308
309
310 Style Note
311         LabelCounter          note
312         LabelString           "Note \arabic{note}."
313         Preamble
314           \theoremstyle{remark}
315           \newtheorem{note}{Note}
316         EndPreamble
317 End
318
319
320 Style Notation
321         LabelCounter          notation
322         LabelString           "Notation \arabic{notation}."
323         Preamble
324           \theoremstyle{remark}
325           \newtheorem{notation}{Notation}
326         EndPreamble
327 End
328
329
330 Style Summary
331         LabelCounter          summary
332         LabelString           "Summary \arabic{summary}."
333         Preamble
334           \theoremstyle{remark}
335           \newtheorem{summary}{Summary}
336         EndPreamble
337 End
338
339
340 Style Acknowledgement
341         LabelCounter          acknowledgement
342         LabelString           "Acknowledgement \arabic{acknowledgement}."
343         Preamble
344           \theoremstyle{remark}
345           \newtheorem{acknowledgement}{Acknowledgement}
346         EndPreamble
347 End
348
349
350 Style Conclusion
351         LabelCounter          conclusion
352         LabelString           "Conclusion \arabic{conclusion}."
353         Preamble
354           \theoremstyle{remark}
355           \newtheorem{conclusion}{Conclusion}
356         EndPreamble
357 End
358
359
360 Style Assumption
361         LabelCounter          assumption
362         LabelString           "Assumption \arabic{assumption}."
363         Preamble
364           \theoremstyle{plain}
365           \newtheorem{assumption}{Assumption}
366         EndPreamble
367 End