]> git.lyx.org Git - lyx.git/blob - lib/layouts/amsmaths-seq.inc
Replace <programlist> with <screen>, as it is more general.
[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
5 # These are only the theorems styles environnements
6 # The environnements defined are :
7 # - Theorem
8 # - Corollary
9 # - Lemma
10 # - Proposition
11 # - Conjecture
12 # - Criterion
13 # - Algorithm
14 # - Fact
15 # - Axiom
16 # - Definition
17 # - Example
18 # - Condition
19 # - Problem
20 # - Exercise
21 # - Remark
22 # - Claim
23 # - Note
24 # - Notation
25 # - Summary
26 # - Acknowledgement
27 # - Case
28 # - Conclusion
29
30
31 Style Theorem
32         Preamble
33           \theoremstyle{plain}
34           \newtheorem{thm}{Theorem}
35         EndPreamble
36 End
37
38
39 Style Corollary
40         Preamble
41           \theoremstyle{plain}
42           \newtheorem{cor}{Corollary}
43         EndPreamble
44 End
45
46
47 Style Lemma
48         Preamble
49           \theoremstyle{plain}
50           \newtheorem{lem}{Lemma}
51         EndPreamble
52 End
53
54
55 Style Proposition
56         Preamble
57           \theoremstyle{plain}
58           \newtheorem{prop}{Proposition}
59         EndPreamble
60 End
61
62
63 Style Conjecture
64         Preamble
65           \theoremstyle{plain}
66           \newtheorem{conjecture}{Conjecture}
67         EndPreamble
68 End
69
70
71 Style Criterion
72         Preamble
73           \theoremstyle{plain}
74           \newtheorem{criterion}{Criterion}
75         EndPreamble
76 End
77
78
79 Style Algorithm
80         Preamble
81           \theoremstyle{plain}
82           \newtheorem{algorithm}{Algorithm}
83         EndPreamble
84 End
85
86
87 Style Fact
88         Preamble
89           \theoremstyle{plain}
90           \newtheorem{fact}{Fact}
91         EndPreamble
92 End
93
94
95 Style Axiom
96         Preamble
97           \theoremstyle{plain}
98           \newtheorem{ax}{Axiom}
99         EndPreamble
100 End
101
102
103 Style Definition
104         Preamble
105          \theoremstyle{definition}
106          \newtheorem{defn}{Definition}
107         EndPreamble
108 End
109
110
111 Style Example
112         Preamble
113          \theoremstyle{definition}
114           \newtheorem{example}{Example}
115         EndPreamble
116 End
117
118
119 Style Condition
120         Preamble
121          \theoremstyle{definition}
122           \newtheorem{condition}{Condition}
123         EndPreamble
124 End
125
126
127 Style Problem
128         Preamble
129          \theoremstyle{definition}
130           \newtheorem{problem}{Problem}
131         EndPreamble
132 End
133
134
135 Style Exercise
136         Preamble
137          \theoremstyle{definition}
138           \newtheorem{xca}{Exercise}
139         EndPreamble
140 End
141
142
143 Style Remark
144         Preamble
145           \theoremstyle{remark}
146           \newtheorem{rem}{Remark}
147         EndPreamble
148 End
149
150
151 Style Claim
152         Preamble
153           \theoremstyle{remark}
154           \newtheorem{claim}{Claim}
155         EndPreamble
156 End
157
158
159 Style Note
160         Preamble
161           \theoremstyle{remark}
162           \newtheorem{note}{Note}
163         EndPreamble
164 End
165
166
167 Style Notation
168         Preamble
169           \theoremstyle{remark}
170           \newtheorem{notation}{Notation}
171         EndPreamble
172 End
173
174
175 Style Summary
176         Preamble
177           \theoremstyle{remark}
178           \newtheorem{summary}{Summary}
179         EndPreamble
180 End
181
182
183 Style Acknowledgement
184         Preamble
185           \theoremstyle{remark}
186           \newtheorem{acknowledgement}{Acknowledgement}
187         EndPreamble
188 End
189
190
191 Style Case
192         Preamble
193           \theoremstyle{remark}
194           \newtheorem{case}{Case}
195         EndPreamble
196 End
197
198
199 Style Conclusion
200         Preamble
201           \theoremstyle{remark}
202           \newtheorem{conclusion}{Conclusion}
203         EndPreamble
204 End
205
206
207
208