]> git.lyx.org Git - lyx.git/blob - lib/layouts/amsmaths-plain.inc
fix to the lyxstring bug, better searching for dep files in latex log, use \hfil...
[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 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 # - Case
29 # - Conclusion
30
31 # Theorem-plain style declaration
32 Style Theorem
33   LatexName             thm*
34   LabelString           "Theorem."
35
36   Preamble
37     \theoremstyle{plain}    
38     \newtheorem*{thm*}{Theorem}
39   EndPreamble
40 End  
41
42 # Corollary-plain style declaration
43 Style Corollary
44   LatexName             cor*
45   LabelString           "Corollary."
46
47   Preamble
48     \theoremstyle{plain}    
49     \newtheorem*{cor*}{Corollary}
50   EndPreamble
51 End
52
53 # Lemma-plain style declaration
54 Style Lemma
55   LatexName             lem*
56   LabelString           "Lemma."
57
58   Preamble
59     \theoremstyle{plain}    
60     \newtheorem*{lem*}{Lemma}
61   EndPreamble
62 End
63
64 # Proposition-plain style declaration
65 Style Proposition
66   LatexName             prop*
67   LabelString           "Proposition."
68
69   Preamble
70     \theoremstyle{plain}    
71     \newtheorem*{prop*}{Proposition}
72   EndPreamble
73 End  
74
75 # Conjecture-plain style declaration
76 Style Conjecture
77   LatexName             conjecture*
78   LabelString           "Conjecture."
79
80   Preamble
81     \theoremstyle{plain}    
82     \newtheorem*{conjecture*}{Conjecture}
83   EndPreamble
84 End  
85
86 # Criterion-plain style declaration
87 Style Criterion
88   LatexName             criterion*
89   LabelString           "Criterion."
90
91   Preamble
92     \theoremstyle{plain}    
93     \newtheorem*{criterion*}{Criterion}
94   EndPreamble
95 End  
96
97 # Algorithm-plain style declaration
98 Style Algorithm
99   LatexName             algorithm*
100   LabelString           "Algorithm #."
101
102   Preamble
103     \theoremstyle{plain}    
104     \newtheorem*{algorithm*}{Algorithm} 
105   EndPreamble
106 End  
107
108 # Fact-plain style declaration
109 Style Fact
110   LatexName             fact*
111   LabelString           "Fact."
112
113   Preamble
114     \theoremstyle{plain}    
115     \newtheorem*{fact*}{Fact} 
116   EndPreamble
117 End  
118
119 # Axiom-plain style declaration
120 Style Axiom
121   LatexName             ax*
122   LabelString           "Axiom."
123
124   Preamble
125     \theoremstyle{plain}    
126     \newtheorem*{ax*}{Axiom}
127   EndPreamble
128 End
129
130 # Definition-plain style declaration
131 Style Definition
132   LatexName             defn*
133   LabelString           "Definition."
134
135   Preamble
136     \theoremstyle{definition}
137     \newtheorem*{defn*}{Definition}
138   EndPreamble
139 End  
140
141 # Example-plain style declaration
142 Style Example
143   LatexName             example*
144   LabelString           "Example."
145
146   Preamble
147     \theoremstyle{definition}
148     \newtheorem*{example*}{Example}
149   EndPreamble
150 End  
151
152 # Condition-plain style declaration
153 Style Condition
154   LatexName             condition*
155   LabelString           "Condition."
156
157   Preamble
158     \theoremstyle{definition}
159     \newtheorem*{condition*}{Condition}
160   EndPreamble
161 End  
162
163 # Problem-plain style declaration
164 Style Problem
165   LatexName             problem*
166   LabelString           "Problem."
167
168   Preamble
169     \theoremstyle{definition}
170     \newtheorem*{problem*}{Problem}
171   EndPreamble
172 End  
173
174 # Exercise-plain style declaration
175 Style Exercise
176   LatexName             xca*
177   LabelString           "Exercise."
178
179   Preamble
180     \theoremstyle{definition}
181     \newtheorem*{xca*}{Exercise}
182   EndPreamble
183 End  
184
185 # Remark-plain style declaration
186 Style Remark
187   LatexName             rem*
188   LabelString           "Remark."
189
190   Preamble
191     \theoremstyle{remark}
192     \newtheorem*{rem*}{Remark}
193   EndPreamble
194 End  
195
196 # Claim-plain style declaration
197 Style Claim
198   LatexName             claim*
199   LabelString           "Claim."
200
201   Preamble
202     \theoremstyle{remark}    
203     \newtheorem*{claim*}{Claim} 
204   EndPreamble
205 End  
206
207 # Note-plain style declaration
208 Style Note
209   LatexName             note*
210   LabelString           "Note."
211
212   Preamble
213     \theoremstyle{remark}    
214     \newtheorem*{note*}{Note} 
215   EndPreamble
216 End  
217
218 # Notation style declaration
219 Style Notation
220   LatexName             notation*
221   LabelString           "Notation."
222
223   Preamble
224     \theoremstyle{remark}
225     \newtheorem*{notation*}{Notation}
226   EndPreamble
227 End  
228  
229
230 # Summary style declaration
231 Style Summary
232   LatexName             summary*
233   LabelString           "Summary."
234
235   Preamble
236     \theoremstyle{remark}
237     \newtheorem*{summary*}{Summary}
238   EndPreamble
239 End  
240  
241
242 # Acknowledgement style declaration
243 Style Acknowledgement
244   LatexName             acknowledgement*
245   LabelString           "Acknowledgement."
246
247   Preamble
248     \theoremstyle{remark}
249     \newtheorem*{acknowledgement*}{Acknowledgement}
250   EndPreamble
251 End  
252  
253
254 # Case style declaration
255 Style Case
256   LatexName             case*
257   LabelString           "Case."
258
259   Preamble
260     \theoremstyle{remark}
261     \newtheorem*{case*}{Case}
262   EndPreamble
263 End  
264  
265
266 # Conclusion style declaration
267 Style Conclusion
268   LatexName             conclusion*
269   LabelString           "Conclusion."
270
271   Preamble
272     \theoremstyle{remark}
273     \newtheorem*{conclusion*}{Conclusion}
274   EndPreamble
275 End  
276