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