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