mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 22:06:15 +00:00
- theorems-without-preamble.inc: new file to provide theorem environments without any preamble code or required packages
- ijmpc.layout, ijmpd.layout, svcommon.inc: use the new file - svcommon.inc: enable theorem numbering and some other bug fixes - svjour3.lyx: adapt example file - svglobal3.layout: adapt file - theorems.inc: update list git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39126 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
57d216dc7e
commit
dade2afba9
@ -2942,6 +2942,7 @@ lib_layouts_inc_files = Split('''
|
|||||||
theorems-refprefix.inc
|
theorems-refprefix.inc
|
||||||
theorems-starred.inc
|
theorems-starred.inc
|
||||||
theorems-starred-equivalents.inc
|
theorems-starred-equivalents.inc
|
||||||
|
theorems-without-preamble.inc
|
||||||
''')
|
''')
|
||||||
|
|
||||||
|
|
||||||
|
@ -1481,6 +1481,7 @@ dist_layouts_DATA =\
|
|||||||
layouts/theorems-starred.inc \
|
layouts/theorems-starred.inc \
|
||||||
layouts/theorems-starred.module \
|
layouts/theorems-starred.module \
|
||||||
layouts/theorems-std.module \
|
layouts/theorems-std.module \
|
||||||
|
layouts/theorems-without-preamble.inc \
|
||||||
layouts/treport.layout \
|
layouts/treport.layout \
|
||||||
layouts/tufte-book.layout \
|
layouts/tufte-book.layout \
|
||||||
layouts/tufte-handout.layout
|
layouts/tufte-handout.layout
|
||||||
|
@ -39,6 +39,17 @@ Input stdlayouts.inc
|
|||||||
Input lyxmacros.inc
|
Input lyxmacros.inc
|
||||||
|
|
||||||
ProvidesModule theorems-std
|
ProvidesModule theorems-std
|
||||||
|
Input theorems-without-preamble.inc
|
||||||
|
NoStyle Fact
|
||||||
|
NoStyle Note
|
||||||
|
NoStyle Problem
|
||||||
|
NoStyle Solution
|
||||||
|
NoStyle Prob
|
||||||
|
NoStyle Exercise
|
||||||
|
NoStyle Example
|
||||||
|
NoStyle Definition
|
||||||
|
NoStyle Case
|
||||||
|
NoStyle Property
|
||||||
|
|
||||||
NoStyle Chapter
|
NoStyle Chapter
|
||||||
NoCounter chapter
|
NoCounter chapter
|
||||||
@ -301,30 +312,6 @@ Style RomanList
|
|||||||
RefPrefix enu
|
RefPrefix enu
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter theorem
|
|
||||||
End
|
|
||||||
Style Theorem
|
|
||||||
LatexType Environment
|
|
||||||
LatexName theorem
|
|
||||||
Category Theorem
|
|
||||||
Margin First_Dynamic
|
|
||||||
TopSep 0.6
|
|
||||||
BottomSep 0.6
|
|
||||||
Align Block
|
|
||||||
NextNoIndent 1
|
|
||||||
LabelType Counter
|
|
||||||
LabelCounter theorem
|
|
||||||
LabelString "Theorem \thetheorem."
|
|
||||||
LabelSep M
|
|
||||||
Font
|
|
||||||
Shape Italic
|
|
||||||
EndFont
|
|
||||||
LabelFont
|
|
||||||
Series Bold
|
|
||||||
Shape Up
|
|
||||||
EndFont
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Proof
|
Style Proof
|
||||||
LatexType Environment
|
LatexType Environment
|
||||||
LatexName proof
|
LatexName proof
|
||||||
@ -334,75 +321,86 @@ Style Proof
|
|||||||
BottomSep 0.6
|
BottomSep 0.6
|
||||||
Align Block
|
Align Block
|
||||||
LabelType Static
|
LabelType Static
|
||||||
LabelString "Proof."
|
LabelString "Proof:"
|
||||||
LabelSep M
|
LabelSep M
|
||||||
LabelFont
|
LabelFont
|
||||||
Series Bold
|
Series Bold
|
||||||
EndFont
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
EndFont
|
||||||
EndLabelType Box
|
EndLabelType Box
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter corollary
|
Style Theorem
|
||||||
|
OptionalArgs 0
|
||||||
|
LabelString "Theorem \thetheorem."
|
||||||
|
#Font
|
||||||
|
#Shape Up
|
||||||
|
#EndFont
|
||||||
|
#LabelFont
|
||||||
|
#Series Bold
|
||||||
|
#EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
Style Remark
|
||||||
|
LabelString "Remark \theremark."
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
End
|
||||||
|
|
||||||
Style Corollary
|
Style Corollary
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName corollary
|
|
||||||
LabelCounter corollary
|
|
||||||
LabelString "Corollary \thecorollary."
|
LabelString "Corollary \thecorollary."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter lemma
|
|
||||||
End
|
|
||||||
Style Lemma
|
Style Lemma
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName lemma
|
|
||||||
LabelCounter lemma
|
|
||||||
LabelString "Lemma \thelemma."
|
LabelString "Lemma \thelemma."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter proposition
|
|
||||||
End
|
|
||||||
Style Proposition
|
Style Proposition
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName proposition
|
|
||||||
LabelCounter proposition
|
|
||||||
LabelString "Proposition \theproposition."
|
LabelString "Proposition \theproposition."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter prop
|
|
||||||
End
|
|
||||||
Style Prop
|
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName prop
|
|
||||||
LabelCounter prop
|
|
||||||
LabelString "Prop \theprop."
|
|
||||||
End
|
|
||||||
|
|
||||||
Counter question
|
|
||||||
End
|
|
||||||
Style Question
|
Style Question
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName question
|
|
||||||
LabelCounter question
|
|
||||||
LabelString "Question \thequestion."
|
LabelString "Question \thequestion."
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter claim
|
Counter claim
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Claim
|
Style Claim
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName claim
|
|
||||||
LabelCounter claim
|
LabelCounter claim
|
||||||
LabelString "Claim \theclaim."
|
LabelString "Claim \theclaim."
|
||||||
|
Font
|
||||||
|
Shape Italic
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter conjecture
|
|
||||||
End
|
|
||||||
Style Conjecture
|
Style Conjecture
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName conjecture
|
|
||||||
LabelCounter conjecture
|
|
||||||
LabelString "Conjecture \theconjecture."
|
LabelString "Conjecture \theconjecture."
|
||||||
|
Font
|
||||||
|
Shape Italic
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
End
|
||||||
|
|
||||||
|
Style Prop
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter appendix
|
Counter appendix
|
||||||
|
@ -44,6 +44,17 @@ Input stdlayouts.inc
|
|||||||
Input lyxmacros.inc
|
Input lyxmacros.inc
|
||||||
|
|
||||||
ProvidesModule theorems-std
|
ProvidesModule theorems-std
|
||||||
|
Input theorems-without-preamble.inc
|
||||||
|
NoStyle Fact
|
||||||
|
NoStyle Note
|
||||||
|
NoStyle Problem
|
||||||
|
NoStyle Solution
|
||||||
|
NoStyle Prob
|
||||||
|
NoStyle Exercise
|
||||||
|
NoStyle Example
|
||||||
|
NoStyle Definition
|
||||||
|
NoStyle Case
|
||||||
|
NoStyle Property
|
||||||
|
|
||||||
NoStyle Chapter
|
NoStyle Chapter
|
||||||
NoCounter chapter
|
NoCounter chapter
|
||||||
@ -304,48 +315,6 @@ Style RomanList
|
|||||||
RefPrefix enu
|
RefPrefix enu
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter remark
|
|
||||||
Within section
|
|
||||||
End
|
|
||||||
Style Remark
|
|
||||||
LatexName remark
|
|
||||||
Category Theorem
|
|
||||||
LabelCounter remark
|
|
||||||
LabelString "Remark \theremark."
|
|
||||||
LatexType Environment
|
|
||||||
Margin First_Dynamic
|
|
||||||
TopSep 0.6
|
|
||||||
BottomSep 0.6
|
|
||||||
Align Block
|
|
||||||
LabelType Counter
|
|
||||||
LabelSep M
|
|
||||||
NextNoIndent 1
|
|
||||||
LabelFont
|
|
||||||
Series Bold
|
|
||||||
EndFont
|
|
||||||
End
|
|
||||||
|
|
||||||
Counter theorem
|
|
||||||
Within section
|
|
||||||
End
|
|
||||||
Style Theorem
|
|
||||||
LatexType Environment
|
|
||||||
LatexName theorem
|
|
||||||
Category Theorem
|
|
||||||
Margin First_Dynamic
|
|
||||||
TopSep 0.6
|
|
||||||
BottomSep 0.6
|
|
||||||
Align Block
|
|
||||||
NextNoIndent 1
|
|
||||||
LabelType Counter
|
|
||||||
LabelCounter theorem
|
|
||||||
LabelString "Theorem \thetheorem."
|
|
||||||
LabelSep M
|
|
||||||
LabelFont
|
|
||||||
Series Bold
|
|
||||||
EndFont
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Proof
|
Style Proof
|
||||||
LatexType Environment
|
LatexType Environment
|
||||||
LatexName proof
|
LatexName proof
|
||||||
@ -366,67 +335,85 @@ Style Proof
|
|||||||
EndLabelType Box
|
EndLabelType Box
|
||||||
End
|
End
|
||||||
|
|
||||||
|
Counter theorem
|
||||||
|
Within section
|
||||||
|
End
|
||||||
|
Style Theorem
|
||||||
|
OptionalArgs 0
|
||||||
|
LabelString "Theorem \thetheorem."
|
||||||
|
Font
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
EndFont
|
||||||
|
End
|
||||||
|
|
||||||
|
Counter remark
|
||||||
|
Within section
|
||||||
|
End
|
||||||
|
Style Remark
|
||||||
|
LabelString "Remark \theremark."
|
||||||
|
LabelFont
|
||||||
|
Series Bold
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
End
|
||||||
|
|
||||||
Counter corollary
|
Counter corollary
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Corollary
|
Style Corollary
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName corollary
|
|
||||||
LabelCounter corollary
|
|
||||||
LabelString "Corollary \thecorollary."
|
LabelString "Corollary \thecorollary."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter lemma
|
Counter lemma
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Lemma
|
Style Lemma
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName lemma
|
|
||||||
LabelCounter lemma
|
|
||||||
LabelString "Lemma \thelemma."
|
LabelString "Lemma \thelemma."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter proposition
|
Counter proposition
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Proposition
|
Style Proposition
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName proposition
|
|
||||||
LabelCounter proposition
|
|
||||||
LabelString "Proposition \theproposition."
|
LabelString "Proposition \theproposition."
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter prop
|
|
||||||
End
|
|
||||||
Style Prop
|
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName prop
|
|
||||||
LabelCounter prop
|
|
||||||
LabelString "Prop \theprop."
|
|
||||||
End
|
|
||||||
|
|
||||||
Counter question
|
Counter question
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Question
|
Style Question
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName question
|
|
||||||
LabelCounter question
|
|
||||||
LabelString "Question \thequestion."
|
LabelString "Question \thequestion."
|
||||||
|
LabelFont
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter claim
|
Counter claim
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Claim
|
Style Claim
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName claim
|
|
||||||
LabelCounter claim
|
LabelCounter claim
|
||||||
LabelString "Claim \theclaim."
|
LabelString "Claim \theclaim."
|
||||||
|
LabelFont
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter conjecture
|
Counter conjecture
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
Style Conjecture
|
Style Conjecture
|
||||||
CopyStyle Theorem
|
|
||||||
LatexName conjecture
|
|
||||||
LabelCounter conjecture
|
|
||||||
LabelString "Conjecture \theconjecture."
|
LabelString "Conjecture \theconjecture."
|
||||||
|
LabelFont
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
End
|
||||||
|
|
||||||
|
Counter prop
|
||||||
|
Within section
|
||||||
End
|
End
|
||||||
|
|
||||||
Counter appendix
|
Counter appendix
|
||||||
|
@ -20,8 +20,6 @@
|
|||||||
|
|
||||||
|
|
||||||
Format 35
|
Format 35
|
||||||
Columns 2
|
|
||||||
Sides 1
|
|
||||||
PageStyle Plain
|
PageStyle Plain
|
||||||
|
|
||||||
|
|
||||||
@ -36,20 +34,21 @@ Style Standard
|
|||||||
LabelType No_Label
|
LabelType No_Label
|
||||||
End
|
End
|
||||||
|
|
||||||
|
Input stdcounters.inc
|
||||||
|
Input stdfloats.inc
|
||||||
|
Input stdlists.inc
|
||||||
Input stdinsets.inc
|
Input stdinsets.inc
|
||||||
Input stdsections.inc
|
Input stdsections.inc
|
||||||
Input stdstarsections.inc
|
Input stdstarsections.inc
|
||||||
Input stdlayouts.inc
|
Input stdlayouts.inc
|
||||||
Input stdlists.inc
|
|
||||||
Input stdfloats.inc
|
|
||||||
Input stdcounters.inc
|
|
||||||
Input stdtitle.inc
|
Input stdtitle.inc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Input numreport.inc
|
Input numreport.inc
|
||||||
|
|
||||||
|
ProvidesModule theorems-std
|
||||||
|
Input theorems-without-preamble.inc
|
||||||
|
NoStyle Fact
|
||||||
|
NoStyle Prop
|
||||||
|
|
||||||
|
|
||||||
NoStyle Subparagraph
|
NoStyle Subparagraph
|
||||||
NoCounter subparagraph
|
NoCounter subparagraph
|
||||||
@ -107,8 +106,6 @@ Style Back_Matter
|
|||||||
LabelString "--- Back Matter ---"
|
LabelString "--- Back Matter ---"
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Style Part
|
Style Part
|
||||||
Margin Static
|
Margin Static
|
||||||
Align Right
|
Align Right
|
||||||
@ -148,7 +145,6 @@ Style PartBacktext
|
|||||||
HTMLTag h1
|
HTMLTag h1
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Chapter
|
Style Chapter
|
||||||
Align Left
|
Align Left
|
||||||
End
|
End
|
||||||
@ -231,18 +227,15 @@ Style Paragraph
|
|||||||
TocLevel 4
|
TocLevel 4
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Part*
|
Style Part*
|
||||||
Margin Static
|
Margin Static
|
||||||
Align Right
|
Align Right
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Chapter*
|
Style Chapter*
|
||||||
Align Left
|
Align Left
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Section*
|
Style Section*
|
||||||
Font
|
Font
|
||||||
Series Bold
|
Series Bold
|
||||||
@ -251,7 +244,6 @@ Style Section*
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Subsection*
|
Style Subsection*
|
||||||
Font
|
Font
|
||||||
Series Bold
|
Series Bold
|
||||||
@ -303,7 +295,6 @@ Style Sub-run-in_headings
|
|||||||
LatexName subruninhead
|
LatexName subruninhead
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Extrachap
|
Style Extrachap
|
||||||
CopyStyle Chapter*
|
CopyStyle Chapter*
|
||||||
LatexName Extrachap
|
LatexName Extrachap
|
||||||
@ -314,7 +305,6 @@ Style extrachap
|
|||||||
LatexName extrachap
|
LatexName extrachap
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Title
|
Style Title
|
||||||
Align Left
|
Align Left
|
||||||
AlignPossible Block, Center, Left, Right, Center
|
AlignPossible Block, Center, Left, Right, Center
|
||||||
@ -324,7 +314,6 @@ Style Title
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Subtitle
|
Style Subtitle
|
||||||
CopyStyle Title
|
CopyStyle Title
|
||||||
LatexName subtitle
|
LatexName subtitle
|
||||||
@ -336,7 +325,6 @@ Style Subtitle
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Author
|
Style Author
|
||||||
NextNoIndent 1
|
NextNoIndent 1
|
||||||
Align Left
|
Align Left
|
||||||
@ -346,7 +334,6 @@ Style Author
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Institute
|
Style Institute
|
||||||
Category FrontMatter
|
Category FrontMatter
|
||||||
LatexType Command
|
LatexType Command
|
||||||
@ -377,11 +364,11 @@ Style TOC_Title
|
|||||||
Align Left
|
Align Left
|
||||||
LatexType Command
|
LatexType Command
|
||||||
LatexName toctitle
|
LatexName toctitle
|
||||||
LeftMargin "TOC title:xxx"
|
LeftMargin xxx
|
||||||
TopSep 0.4
|
TopSep 0.4
|
||||||
BottomSep 0.4
|
BottomSep 0.4
|
||||||
LabelType Static
|
LabelType Static
|
||||||
LabelSep xxx
|
LabelSep x
|
||||||
LabelString "TOC Title:"
|
LabelString "TOC Title:"
|
||||||
LabelFont
|
LabelFont
|
||||||
Family Typewriter
|
Family Typewriter
|
||||||
@ -392,14 +379,13 @@ End
|
|||||||
Style TOC_Author
|
Style TOC_Author
|
||||||
CopyStyle TOC_Title
|
CopyStyle TOC_Title
|
||||||
LatexName tocauthor
|
LatexName tocauthor
|
||||||
LeftMargin "TOC Author:xxx"
|
|
||||||
LabelString "TOC Author:"
|
LabelString "TOC Author:"
|
||||||
End
|
End
|
||||||
|
|
||||||
Style Running_Title
|
Style Running_Title
|
||||||
CopyStyle TOC_Title
|
CopyStyle TOC_Title
|
||||||
LatexName titlerunning
|
LatexName titlerunning
|
||||||
LeftMargin "Running Title:xxx"
|
InTitle 1
|
||||||
LabelString "Running Title:"
|
LabelString "Running Title:"
|
||||||
End
|
End
|
||||||
|
|
||||||
@ -410,7 +396,6 @@ End
|
|||||||
Style Running_Author
|
Style Running_Author
|
||||||
CopyStyle Running_Title
|
CopyStyle Running_Title
|
||||||
LatexName authorrunning
|
LatexName authorrunning
|
||||||
LeftMargin "Running Author:xxx"
|
|
||||||
LabelString "Running Author:"
|
LabelString "Running Author:"
|
||||||
End
|
End
|
||||||
Style Author_Running
|
Style Author_Running
|
||||||
@ -418,8 +403,9 @@ Style Author_Running
|
|||||||
End
|
End
|
||||||
|
|
||||||
Style Abstract
|
Style Abstract
|
||||||
|
Category FrontMatter
|
||||||
Margin First_Dynamic
|
Margin First_Dynamic
|
||||||
LatexType Command
|
LatexType Environment
|
||||||
LatexName abstract
|
LatexName abstract
|
||||||
LabelType Static
|
LabelType Static
|
||||||
LabelString "Abstract."
|
LabelString "Abstract."
|
||||||
@ -449,7 +435,6 @@ Style Abstract*
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Keywords
|
Style Keywords
|
||||||
Margin First_Dynamic
|
Margin First_Dynamic
|
||||||
LatexType Command
|
LatexType Command
|
||||||
@ -470,8 +455,6 @@ Style Keywords
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Style Dedication
|
Style Dedication
|
||||||
Category FrontMatter
|
Category FrontMatter
|
||||||
Margin Static
|
Margin Static
|
||||||
@ -549,6 +532,7 @@ End
|
|||||||
|
|
||||||
|
|
||||||
Style Acknowledgement
|
Style Acknowledgement
|
||||||
|
Category BackMatter
|
||||||
Margin First_Dynamic
|
Margin First_Dynamic
|
||||||
LatexType Environment
|
LatexType Environment
|
||||||
LatexName acknowledgement
|
LatexName acknowledgement
|
||||||
@ -636,96 +620,10 @@ Style Svgraybox
|
|||||||
EndFont
|
EndFont
|
||||||
End
|
End
|
||||||
|
|
||||||
Style Case
|
|
||||||
LatexType Environment
|
|
||||||
Margin First_Dynamic
|
|
||||||
LatexName case
|
|
||||||
LabelString "Case #."
|
|
||||||
Category MainText
|
|
||||||
NextNoIndent 1
|
|
||||||
ParIndent MM
|
|
||||||
LabelSep xx
|
|
||||||
ItemSep 0
|
|
||||||
TopSep 0.5
|
|
||||||
BottomSep 0.5
|
|
||||||
ParSep 0
|
|
||||||
Align Block
|
|
||||||
AlignPossible Block, Left
|
|
||||||
LabelType Static
|
|
||||||
LabelFont
|
|
||||||
Shape Italic
|
|
||||||
EndFont
|
|
||||||
RefPrefix cas
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Claim
|
|
||||||
CopyStyle Case
|
|
||||||
LabelString "Claim."
|
|
||||||
LatexName claim
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Conjecture
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName conjecture
|
|
||||||
LabelString "Conjecture #."
|
|
||||||
RefPrefix con
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Corollary
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName corollary
|
|
||||||
LabelString "Corollary #."
|
|
||||||
Font
|
|
||||||
Shape Italic
|
|
||||||
EndFont
|
|
||||||
LabelFont
|
|
||||||
Shape Up
|
|
||||||
Series Bold
|
|
||||||
EndFont
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Definition
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName definition
|
|
||||||
LabelString "Definition #."
|
|
||||||
LabelFont
|
|
||||||
Shape Up
|
|
||||||
Series Bold
|
|
||||||
EndFont
|
|
||||||
RefPrefix def
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Example
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName example
|
|
||||||
LabelString "Example #."
|
|
||||||
RefPrefix exa
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Lemma
|
|
||||||
CopyStyle Corollary
|
|
||||||
LatexName lemma
|
|
||||||
LabelString "Lemma #."
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Note
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName note
|
|
||||||
LabelString "Note #."
|
|
||||||
RefPrefix note
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Proof
|
Style Proof
|
||||||
CopyStyle Claim
|
CopyStyle Claim
|
||||||
LatexName proof
|
LatexName proof
|
||||||
LabelString "Proof."
|
LabelString "Proof"
|
||||||
End
|
End
|
||||||
|
|
||||||
Style Proof(QED)
|
Style Proof(QED)
|
||||||
@ -747,105 +645,11 @@ Style Proof(smartQED)
|
|||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
Style Property
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName property
|
|
||||||
LabelString "Property #."
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Proposition
|
|
||||||
CopyStyle Corollary
|
|
||||||
LatexName proposition
|
|
||||||
LabelString "Proposition #."
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Question
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName question
|
|
||||||
LabelString "Question #."
|
|
||||||
RefPrefix que
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Remark
|
|
||||||
CopyStyle Claim
|
|
||||||
LatexName remark
|
|
||||||
LabelString "Remark #."
|
|
||||||
RefPrefix rem
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Theorem
|
|
||||||
CopyStyle Corollary
|
|
||||||
LatexName theorem
|
|
||||||
LabelString "Theorem #."
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Exercise
|
|
||||||
CopyStyle Definition
|
|
||||||
Category Exercise
|
|
||||||
LatexName exercise
|
|
||||||
LabelString "Exercise #."
|
|
||||||
RefPrefix exerc
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Prob
|
|
||||||
CopyStyle Claim
|
|
||||||
Category Exercise
|
|
||||||
LatexName prob
|
|
||||||
LabelString "#"
|
|
||||||
LabelFont
|
|
||||||
Series Bold
|
|
||||||
Shape Up
|
|
||||||
EndFont
|
|
||||||
RefPrefix prob
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
# Current implementation of the Style Preface for backwards compatibility
|
|
||||||
# In future versions the directive "Reqyired Args 1" should be uncommented
|
|
||||||
# so that a required argument is used rather than ERT.
|
|
||||||
Style Sol
|
|
||||||
CopyStyle Prob
|
|
||||||
LatexName sol
|
|
||||||
LabelString "#={label}"
|
|
||||||
# RequiredArgs 1
|
|
||||||
NextNoIndent 0
|
|
||||||
RefPrefix sol
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Problem_(theorem-like)
|
|
||||||
CopyStyle Claim
|
|
||||||
LabelFont
|
|
||||||
Series Bold
|
|
||||||
Shape Up
|
|
||||||
EndFont
|
|
||||||
Category Exercise
|
|
||||||
LatexName problem
|
|
||||||
LabelString "Problem #."
|
|
||||||
RefPrefix prob
|
|
||||||
End
|
|
||||||
|
|
||||||
Style Solution_(theorem-like)
|
|
||||||
CopyStyle Problem_(theorem-like)
|
|
||||||
LatexName solution
|
|
||||||
LabelString "Solution #."
|
|
||||||
RefPrefix sol
|
|
||||||
OptionalArgs 1
|
|
||||||
End
|
|
||||||
|
|
||||||
|
|
||||||
Style Description
|
Style Description
|
||||||
OptionalArgs 1
|
OptionalArgs 1
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
InsetLayout Flex:Email
|
InsetLayout Flex:Email
|
||||||
Decoration Conglomerate
|
Decoration Conglomerate
|
||||||
LyxType custom
|
LyxType custom
|
||||||
@ -888,9 +692,3 @@ End
|
|||||||
# EndFont
|
# EndFont
|
||||||
# KeepEmpty 1
|
# KeepEmpty 1
|
||||||
# End
|
# End
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Input theorems-refprefix.inc
|
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@ NoStyle Sol
|
|||||||
NoStyle Abstract*
|
NoStyle Abstract*
|
||||||
NoStyle TOC_Title
|
NoStyle TOC_Title
|
||||||
NoStyle TOC_Author
|
NoStyle TOC_Author
|
||||||
|
NoStyle Proof(smartQED)
|
||||||
|
|
||||||
|
|
||||||
NoStyle Acknowledgement
|
NoStyle Acknowledgement
|
||||||
|
378
lib/layouts/theorems-without-preamble.inc
Normal file
378
lib/layouts/theorems-without-preamble.inc
Normal file
@ -0,0 +1,378 @@
|
|||||||
|
# This file provides theorem environments without adding preamble code or
|
||||||
|
# requiring packages. THis is useful for classes that define their own theorems
|
||||||
|
# like svjour3 or ijmpc.
|
||||||
|
# Author: Uwe Stöhr <uwestoehr@web.de>
|
||||||
|
|
||||||
|
# The environnements defined are :
|
||||||
|
# - Theorem
|
||||||
|
# - Corollary
|
||||||
|
# - Lemma
|
||||||
|
# - Proposition
|
||||||
|
# - Prop
|
||||||
|
# - Conjecture
|
||||||
|
# - Fact
|
||||||
|
# - Definition
|
||||||
|
# - Example
|
||||||
|
# - Problem
|
||||||
|
# - Solution
|
||||||
|
# - Exercise
|
||||||
|
# - Remark
|
||||||
|
# - Claim
|
||||||
|
# - Case (defined without a counter)
|
||||||
|
# - Property
|
||||||
|
# - Question
|
||||||
|
# - Note
|
||||||
|
# - Prob
|
||||||
|
|
||||||
|
|
||||||
|
Format 35
|
||||||
|
|
||||||
|
|
||||||
|
Counter theorem
|
||||||
|
End
|
||||||
|
Style Theorem
|
||||||
|
Category Theorem
|
||||||
|
Margin First_Dynamic
|
||||||
|
LatexType Environment
|
||||||
|
LatexName theorem
|
||||||
|
NextNoIndent 1
|
||||||
|
OptionalArgs 1
|
||||||
|
LabelSep xx
|
||||||
|
ParIndent MMM
|
||||||
|
ParSkip 0.4
|
||||||
|
ItemSep 0.2
|
||||||
|
TopSep 0.7
|
||||||
|
BottomSep 0.7
|
||||||
|
ParSep 0.3
|
||||||
|
Align Block
|
||||||
|
AlignPossible Left
|
||||||
|
LabelType Counter
|
||||||
|
LabelCounter theorem
|
||||||
|
LabelString "Theorem \thetheorem"
|
||||||
|
Font
|
||||||
|
Shape Italic
|
||||||
|
Size Normal
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Shape Up
|
||||||
|
Series Bold
|
||||||
|
EndFont
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\theoremname}{_(Theorem)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\theoremname}{_(Theorem)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter corollary
|
||||||
|
End
|
||||||
|
Style Corollary
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter corollary
|
||||||
|
LatexName corollary
|
||||||
|
LabelString "Corollary \thecorollary"
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\corollaryname}{_(Corollary)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\corollaryname}{_(Corollary)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter lemma
|
||||||
|
End
|
||||||
|
Style Lemma
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter lemma
|
||||||
|
LatexName lemma
|
||||||
|
LabelString "Lemma \thelemma"
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\lemmaname}{_(Lemma)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\lemmaname}{_(Lemma)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter proposition
|
||||||
|
End
|
||||||
|
Style Proposition
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter proposition
|
||||||
|
LatexName proposition
|
||||||
|
LabelString "Proposition \theproposition"
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\propositionname}{_(Proposition)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\propositionname}{_(Proposition)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter prop
|
||||||
|
End
|
||||||
|
Style Prop
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter prop
|
||||||
|
LatexName prop
|
||||||
|
LabelString "Prop \theprop."
|
||||||
|
Font
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Medium
|
||||||
|
EndFont
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\propname}{_(Prop)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\propname}{_(Prop)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter conjecture
|
||||||
|
End
|
||||||
|
Style Conjecture
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter conjecture
|
||||||
|
LatexName conjecture
|
||||||
|
LabelString "Conjecture \theconjecture"
|
||||||
|
Font
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Series Medium
|
||||||
|
Shape Italic
|
||||||
|
EndFont
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\conjecturename}{_(Conjecture)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\conjecturename}{_(Conjecture)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter fact
|
||||||
|
End
|
||||||
|
Style Fact
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter fact
|
||||||
|
LatexName fact
|
||||||
|
LabelString "Fact \thefact."
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\factname}{_(Fact)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\factname}{_(Fact)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter definition
|
||||||
|
End
|
||||||
|
Style Definition
|
||||||
|
CopyStyle Theorem
|
||||||
|
LabelCounter definition
|
||||||
|
LatexName definition
|
||||||
|
LabelString "Definition \thedefinition"
|
||||||
|
RefPrefix def
|
||||||
|
Font
|
||||||
|
Shape Up
|
||||||
|
EndFont
|
||||||
|
LabelFont
|
||||||
|
Shape Up
|
||||||
|
Series Bold
|
||||||
|
EndFont
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\definitionname}{_(Definition)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\definitionname}{_(Definition)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter example
|
||||||
|
End
|
||||||
|
Style Example
|
||||||
|
CopyStyle Conjecture
|
||||||
|
LabelCounter example
|
||||||
|
LatexName example
|
||||||
|
LabelString "Example \theexample"
|
||||||
|
RefPrefix exa
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\examplename}{_(Example)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\examplename}{_(Example)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter problem
|
||||||
|
End
|
||||||
|
Style Problem
|
||||||
|
CopyStyle Definition
|
||||||
|
Category Exercise
|
||||||
|
LabelCounter problem
|
||||||
|
LatexName problem
|
||||||
|
LabelString "Problem \theproblem"
|
||||||
|
RefPrefix prob
|
||||||
|
OptionalArgs 1
|
||||||
|
RequiredArgs 1
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\problemname}{_(Problem)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\problemname}{_(Problem)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter solution
|
||||||
|
End
|
||||||
|
Style Solution
|
||||||
|
CopyStyle Problem
|
||||||
|
LabelCounter solution
|
||||||
|
LatexName solution
|
||||||
|
LabelString "Solution \thesolution"
|
||||||
|
RefPrefix sol
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\solutionname}{_(Solution)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\solutionname}{_(Solution)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter exercise
|
||||||
|
End
|
||||||
|
Style Exercise
|
||||||
|
CopyStyle Definition
|
||||||
|
LabelCounter exercise
|
||||||
|
LatexName exercise
|
||||||
|
LabelString "Exercise \theexercise"
|
||||||
|
RefPrefix exer
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\exercisename}{_(Exercise)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\exercisename}{_(Exercise)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter remark
|
||||||
|
End
|
||||||
|
Style Remark
|
||||||
|
CopyStyle Conjecture
|
||||||
|
LabelCounter remark
|
||||||
|
LatexName remark
|
||||||
|
LabelString "Remark \theremark"
|
||||||
|
RefPrefix rem
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\remarkname}{_(Remark)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\remarkname}{_(Remark)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Style Claim
|
||||||
|
CopyStyle Remark
|
||||||
|
LatexName claim
|
||||||
|
LabelString "Claim "
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\claimname}{_(Claim)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\claimname}{_(Claim)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter case
|
||||||
|
End
|
||||||
|
Style Case
|
||||||
|
CopyStyle Remark
|
||||||
|
LabelCounter case
|
||||||
|
LatexName case
|
||||||
|
LabelString "Case \thecase"
|
||||||
|
RefPrefix case
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\casename}{_(Case)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\casename}{_(Case)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter property
|
||||||
|
End
|
||||||
|
Style Property
|
||||||
|
CopyStyle Claim
|
||||||
|
LabelCounter property
|
||||||
|
LatexName property
|
||||||
|
LabelString "Property \theproperty"
|
||||||
|
RefPrefix prop
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\propertyname}{_(Property)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\propertyname}{_(Property)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter question
|
||||||
|
End
|
||||||
|
Style Question
|
||||||
|
CopyStyle Claim
|
||||||
|
LabelCounter question
|
||||||
|
LatexName question
|
||||||
|
LabelString "Question \thequestion"
|
||||||
|
RefPrefix que
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\questionname}{_(Question)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\questionname}{_(Question)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter note
|
||||||
|
End
|
||||||
|
Style Note
|
||||||
|
CopyStyle Claim
|
||||||
|
LabelCounter note
|
||||||
|
LatexName note
|
||||||
|
LabelString "Note \thenote"
|
||||||
|
RefPrefix note
|
||||||
|
LangPreamble
|
||||||
|
\providecommand{\notename}{_(Note)}
|
||||||
|
EndLangPreamble
|
||||||
|
BabelPreamble
|
||||||
|
\addto\captions$$lang{\renewcommand{\notename}{_(Note)}}
|
||||||
|
EndBabelPreamble
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
|
Counter prob
|
||||||
|
End
|
||||||
|
Style Prob
|
||||||
|
CopyStyle Claim
|
||||||
|
LabelCounter prob
|
||||||
|
LatexName prob
|
||||||
|
LabelString "\theprob"
|
||||||
|
End
|
@ -10,13 +10,13 @@
|
|||||||
# - Lemma
|
# - Lemma
|
||||||
# - Proposition
|
# - Proposition
|
||||||
# - Conjecture
|
# - Conjecture
|
||||||
|
# - Fact
|
||||||
# - Definition
|
# - Definition
|
||||||
# - Example
|
# - Example
|
||||||
# - Problem
|
# - Problem
|
||||||
# - Exercise
|
# - Exercise
|
||||||
# - Remark
|
# - Remark
|
||||||
# - Claim
|
# - Claim
|
||||||
# - Proof
|
|
||||||
# - Case (regular only -- defined as an enumeration)
|
# - Case (regular only -- defined as an enumeration)
|
||||||
|
|
||||||
Format 35
|
Format 35
|
||||||
|
@ -3,6 +3,11 @@
|
|||||||
\begin_document
|
\begin_document
|
||||||
\begin_header
|
\begin_header
|
||||||
\textclass svglobal3
|
\textclass svglobal3
|
||||||
|
\begin_preamble
|
||||||
|
\RequirePackage{fix-cm}
|
||||||
|
|
||||||
|
\smartqed % flush right qed marks, e.g. at end of proof
|
||||||
|
\end_preamble
|
||||||
\use_default_options true
|
\use_default_options true
|
||||||
\maintain_unincluded_children false
|
\maintain_unincluded_children false
|
||||||
\language english
|
\language english
|
||||||
@ -85,6 +90,55 @@ http://wiki.lyx.org/Examples/Springer
|
|||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Note Note
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
possible document class options are:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
-
|
||||||
|
\begin_inset Quotes eld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\family sans
|
||||||
|
smallextended
|
||||||
|
\family default
|
||||||
|
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
-> gives the second posible format
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
-
|
||||||
|
\begin_inset Quotes eld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\family sans
|
||||||
|
twocolumn
|
||||||
|
\family default
|
||||||
|
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
-> the two column formatting
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
- if no option is given you get the standard/default format
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\begin_layout Title
|
\begin_layout Title
|
||||||
@ -111,6 +165,20 @@ Do you have a subtitle?
|
|||||||
If so, write it here
|
If so, write it here
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Running Title
|
||||||
|
Short form of title
|
||||||
|
\begin_inset Note Note
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
optional
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
\begin_layout Author
|
\begin_layout Author
|
||||||
First Author
|
First Author
|
||||||
\begin_inset ERT
|
\begin_inset ERT
|
||||||
@ -128,6 +196,20 @@ and
|
|||||||
Second Author
|
Second Author
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Running Author
|
||||||
|
Short form of author list
|
||||||
|
\begin_inset Note Note
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
optional
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
\begin_layout Institute
|
\begin_layout Institute
|
||||||
F.
|
F.
|
||||||
Author
|
Author
|
||||||
@ -359,6 +441,40 @@ Your text comes here.
|
|||||||
Separate text sections with
|
Separate text sections with
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Theorem
|
||||||
|
a theorem
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Problem
|
||||||
|
\begin_inset Argument
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
Problem title
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
The problem
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Solution
|
||||||
|
\begin_inset Argument
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Plain Layout
|
||||||
|
Solution title
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
The solution
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Problem (theorem-like)
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
\begin_layout Section
|
\begin_layout Section
|
||||||
Section title
|
Section title
|
||||||
\begin_inset CommandInset label
|
\begin_inset CommandInset label
|
||||||
|
Loading…
Reference in New Issue
Block a user