-
Notifications
You must be signed in to change notification settings - Fork 62
/
ctexbeamer.layout
1669 lines (1559 loc) · 37.5 KB
/
ctexbeamer.layout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#% Do not delete the line below; configure depends on this
# \DeclareLaTeXClass[ctexbeamer,amssymb.sty,hyperref.sty,pgf.sty,xcolor.sty,xxcolor.sty]{ctexbeamer}
# \DeclareCategory{Presentations}
# Original Author: Till Tantau <[email protected]>
# Revised and extended by Jürgen Spitzmüller <[email protected]>, Uwe Stöhr <[email protected]>,
# Richard Heck <[email protected]>, Martin Vermeer <[email protected]> and probably others.
Format 66
#
# GLOBAL SETTINGS
#
# Includes
Input stdcounters.inc
Input stdinsets.inc
# Beamer does not work with enumitem.
# See bug #7047.
ExcludesModule enumitem
# General textclass parameters
Columns 1
Sides 1
SecNumDepth 2
TocDepth 2
DefaultStyle Standard
# Pre-loaded packages
Provides hyperref 1
Provides geometry 1
Provides color 1
Provides xcolor 1
# The default font layout
DefaultFont
Family Sans
Series Medium
Shape Up
Size Normal
Color None
EndFont
# Provide an own maketitle command, which can be altered by Title_(Plain_Frame)
Preamble
\newcommand{\SetAdvisor}[1]
{
\def\advisor{#1}
}
EndPreamble
TitleLaTeXName makebeamertitle
AddToPreamble
% this default might be overridden by plain title style
\newcommand\makebeamertitle{
\begin{frame}
\titlepage
\end{frame}
}
EndPreamble
#
# STANDARD STYLE
#
Style Standard
Category MainText
Margin Static
LatexType Paragraph
LatexName dummy
ParIndent MM
ParSkip 0.4
Align Left
AlignPossible Block, Left, Right, Center
LabelType No_Label
End
#
# LISTS
#
Style Itemize
Category List
Margin Static
LatexType Item_Environment
LatexName itemize
Argument 1
LabelString "Overlay Specifications|v"
Tooltip "Overlay specifications for this list"
LeftDelim [<
RightDelim >]
PassThru 1
EndArgument
Argument item:1
LabelString "Custom Item|s"
Tooltip "A customized item string"
EndArgument
Argument item:2
MenuString "Item Overlay Specifications"
LabelString "On Slide"
Tooltip "Overlay specifications for this item"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
NextNoIndent 1
ToggleIndent Never
LeftMargin MMN
LabelSep xx
ItemSep 0.2
TopSep 0.7
BottomSep 0.7
ParSep 0.3
Align Left
LabelType Itemize
End
Style Enumerate
Category List
Margin Static
LatexType Item_Environment
LatexName enumerate
Argument 1
LabelString "Overlay Specifications|v"
Tooltip "Overlay specifications for this list"
LeftDelim [<
RightDelim >]
PassThru 1
EndArgument
Argument 2
LabelString "Mini Template"
Tooltip "Mini template for this list (see beamer manual for details)"
EndArgument
Argument item:1
LabelString "Custom Item|s"
Tooltip "A customized item string"
EndArgument
Argument item:2
MenuString "Item Overlay Specifications"
LabelString "On Slide"
Tooltip "Overlay specifications for this item"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
NextNoIndent 1
ToggleIndent Never
LeftMargin MMN
LabelSep xx
ParSkip 0.0
ItemSep 0.2
TopSep 0.7
BottomSep 0.7
ParSep 0.3
Align Left
LabelType Enumerate
RefPrefix enu
End
Style Description
Category List
Margin First_Dynamic
LatexType Item_environment
LatexName description
Argument 1
LabelString "Overlay Specifications|v"
Tooltip "Overlay specifications for this list"
LeftDelim [<
RightDelim >]
PassThru 1
EndArgument
Argument 2
LabelString "Longest label|s"
Tooltip "The longest label in this list (to determine the indendation width)"
EndArgument
Argument item:1
MenuString "Item Overlay Specifications"
LabelString "On Slide"
Tooltip "Overlay specifications for this item"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
NextNoIndent 1
LeftMargin MM
LabelSep xx
ParSkip 0.4
ItemSep 0.2
TopSep 0.7
BottomSep 0.7
ParSep 0.3
Align Left
LabelType Manual
LabelFont
Series Bold
EndFont
End
#
# SECTIONING
#
Style Part
Category Sectioning
Margin Dynamic
LatexType Command
LatexName part
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Short Title|S"
Tooltip "The part as it appears in the table of contents/running headers"
InsertCotext 1
IsTocCaption 1
EndArgument
NeedProtect 1
NextNoIndent 1
ToggleIndent Never
Labelsep xx
ParSkip 0.4
TopSep 4
BottomSep 4
ParSep 0.8
Align Center
LabelType Static
LabelString "Part"
RefPrefix part
Font
Family Roman
Series Bold
Size Huge
EndFont
LabelFont
Color Latex
EndFont
TocLevel -1
End
Style Section
Category Sectioning
Margin First_Dynamic
LatexType Command
LatexName section
NeedProtect 1
NextNoIndent 1
ToggleIndent Never
LabelSep xx
ParSkip 0.4
TopSep 2
BottomSep 0.25
ParSep 0.7
Align Left
LabelType Static
LabelCounter section
LabelString "Section \arabic{section}"
RefPrefix sec
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Short Title|S"
Tooltip "The section as it appears in the table of contents/running headers"
InsertCotext 1
IsTocCaption 1
EndArgument
Font
Family Roman
Series Bold
Size huge
EndFont
LabelFont
Color latex
EndFont
LabelStringAppendix "\Alph{section}"
TocLevel 1
End
Style Section*
CopyStyle Section
Category Unnumbered
Margin Static
LatexName section
LabelType No_Label
ResetArgs 1
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
LaTeXParam *
End
Style Subsection
Category Sectioning
Margin First_Dynamic
LatexType Command
LatexName subsection
NeedProtect 1
NextNoIndent 1
ToggleIndent Never
LabelSep xx
ParSkip 0.4
TopSep 2
BottomSep 0.25
ParSep 0.5
Align Left
LabelType Static
LabelCounter subsection
LabelString "Subsection \arabic{section}.\arabic{subsection}"
RefPrefix subsec
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Short Title|S"
Tooltip "The subsection as it appears in the table of contents/running headers"
InsertCotext 1
IsTocCaption 1
EndArgument
Font
Family Roman
Series Bold
Size larger
EndFont
LabelFont
Color latex
EndFont
LabelStringAppendix "\arabic{section}.\arabic{subsection}"
TocLevel 2
End
Style Subsection*
CopyStyle Subsection
Category Unnumbered
Margin Static
LatexName subsection
LabelType No_Label
ResetArgs 1
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
LaTeXParam *
End
Style Subsubsection
Category Sectioning
Margin First_Dynamic
LatexType Command
LatexName subsubsection
NeedProtect 1
NextNoIndent 1
ToggleIndent Never
LabelSep xx
ParSkip 0.4
TopSep 2
BottomSep 0.25
ParSep 0.5
Align Left
LabelType Static
LabelCounter subsubsection
LabelString "Subsubsection \arabic{section}.\arabic{subsection}.\arabic{subsubsection}"
RefPrefix sub
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Short Title|S"
Tooltip "The subsubsection as it appears in the table of contents/running headers"
InsertCotext 1
IsTocCaption 1
EndArgument
Font
Family Roman
Series Bold
Size large
EndFont
LabelFont
Color latex
EndFont
LabelStringAppendix "\arabic{section}.\arabic{subsection}.\arabic{subsubsection}"
TocLevel 3
End
Style Subsubsection*
CopyStyle Subsubsection
Category Unnumbered
Margin Static
LatexName subsubsection
LabelType No_Label
ResetArgs 1
Argument 1
LabelString "Mode"
MenuString "Mode Specification|S"
Tooltip "Specify in which mode (article, presentation etc.) this header appears"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
LaTeXParam *
End
#
# FRAMES
#
Style Frame
Category Frames
Margin First_Dynamic
LeftMargin xx
LatexType Environment
LatexName frame
LabelString "Frame"
TocLevel 4
KeepEmpty 1
NextNoIndent 1
Align Left
LabelType Static
LabelSep xx
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Size largest
Family Roman
Color latex
EndFont
Argument 1
LabelString "Action"
MenuString "Overlay Specifications|v"
Tooltip "Overlay specifications for this frame"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Default Overlay Specifications"
Tooltip "Default overlay specifications within this frame"
LeftDelim [<
RightDelim >]
PassThru 1
EndArgument
Argument 3
MenuString "Frame Options"
LabelString "Options"
Tooltip "Frame options (see beamer manual)"
EndArgument
Argument 4
LabelString "Frame Title"
Tooltip "Enter the frame title here"
LeftDelim {
RightDelim }
Decoration conglomerate
Font
Color blue
Size largest
EndFont
AutoInsert 1
IsTocCaption 1
EndArgument
AutoNests
Standard,Itemize,Enumerate,Description,FrameTitle,FrameSubtitle,Column,
Columns,ColumnsCenterAligned,ColumnsTopAligned,Pause,Overprint,OverlayArea,Only,Block,
ExampleBlock,AlertBlock,Bibliography,Quotation,Quote,Verse,Corollary,Definition,Definitions,
Example,Examples,Fact,Lemma,Proof,Theorem,LyX-Code
EndAutoNests
End
Style PlainFrame
CopyStyle Frame
LabelString "Frame (plain)"
Argument 3
MenuString "Frame Options"
LabelString "Options"
Tooltip "Frame options (see beamer manual)"
PresetArg "plain"
EndArgument
End
Style FragileFrame
CopyStyle Frame
LabelString "Frame (fragile)"
Argument 3
MenuString "Frame Options"
LabelString "Options"
Tooltip "Frame options (see beamer manual)"
PresetArg "fragile"
EndArgument
End
Style AgainFrame
Category Frames
KeepEmpty 0
LatexType Command
LatexName againframe
Argument 1
LabelString "Slide"
MenuString "Overlay Specifications|v"
Tooltip "Overlay specifications for this frame"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Default Overlay Specifications"
Tooltip "Default overlay specifications within this frame"
LeftDelim [<
RightDelim >]
PassThru 1
EndArgument
Argument 3
MenuString "Frame Options"
LabelString "Options"
Tooltip "Frame options (see beamer manual)"
EndArgument
Margin First_Dynamic
NextNoIndent 1
ParSkip 0
TopSep 3
BottomSep 3
ParSep 0
LabelType Static
LabelBottomSep 0
LeftMargin M
LabelSep xx
LabelString "Repeat frame with label"
Font
Color latex
EndFont
LabelFont
Family Roman
Color latex
Size Largest
EndFont
TocLevel 4
End
Style FrameTitle
Category Frames
Margin Static
LatexType Command
LatexName frametitle
ParSkip 0.4
ItemSep 0
TopSep 0
BottomSep 1
ParSep 1
Align Block
LabelType No_Label
Font
Color Blue
Size Largest
EndFont
Argument 1
LabelString "On Slide"
MenuString "Overlay Specifications|v"
Tooltip "Specify the overlay settings (see beamer manual)"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Short Frame Title|S"
Tooltip "A short form of the frame title used in some themes"
InsertCotext 1
EndArgument
End
Style FrameSubtitle
Category Frames
Margin Static
LatexType Command
LatexName framesubtitle
ParSkip 0.4
ItemSep 0
TopSep 0
BottomSep 1
ParSep 1
Align Block
LabelType No_Label
Font
Color Blue
EndFont
Argument 1
LabelString "On Slide"
MenuString "Overlay Specifications|v"
Tooltip "Specify the overlay settings (see beamer manual)"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
End
#
# COLUMS
#
Style Column
Category Columns
Margin Static
LatexType Command
LatexName column
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
ParIndent MM
Align Left
LabelType Static
LabelSep xx
LabelString "Start column (increase depth!), width:"
ToggleIndent Never
Argument 1
MenuString "Column Options"
LabelString "Options"
Tooltip "Column options (see beamer manual)"
EndArgument
LeftMargin "Start column (increase depth!), width:xx"
LabelFont
Family Roman
Color latex
EndFont
End
Style Columns
Category Columns
KeepEmpty 1
Margin Static
LatexType Environment
NextNoIndent 0
ParIndent MM
Align Left
LabelType Static
LabelSep xx
LatexName columns
LabelString "Columns"
LeftMargin "Columnsxx"
Argument 1
LabelString "Column Placement Options"
Tooltip "Column placement options (t, T, c, b)"
EndArgument
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Family Roman
Color latex
EndFont
AutoNests
Standard,Itemize,Enumerate,Description,Pause,Overprint,OverlayArea,Only,Block,
ExampleBlock,AlertBlock,Bibliography,Quotation,Quote,Verse,Corollary,Definition,Definitions,
Example,Examples,Fact,Lemma,Proof,Theorem,LyX-Code
EndAutoNests
End
Style ColumnsCenterAligned
CopyStyle Columns
LatexParam [c]
LabelString "Columns (center aligned)"
LeftMargin "Columns (center aligned)xx"
ResetArgs 1
End
Style ColumnsTopAligned
CopyStyle Columns
LatexParam [t]
LabelString "Columns (top aligned)"
LeftMargin "Columns (top aligned)xx"
ResetArgs 1
End
#
# OVERLAYS
#
Style Pause
Category Overlays
KeepEmpty 1
LatexType Command
LatexName pause
Margin First_Dynamic
Argument 1
LabelString "Pause number"
Tooltip "Number of slide where the context below the pause gets visible"
EndArgument
NextNoIndent 1
ParSkip 0
TopSep 0
BottomSep 0.25
ParSep 0
Align Center
LabelType Static
LabelBottomSep 0
LeftMargin MMMMM
LabelString "_ _ _ _ _ _ _ _ _ _ _ _ _ _"
LabelFont
Family typewriter
Series Medium
Size Normal
Color latex
EndFont
End
Style Overprint
Category Overlays
Margin Static
LatexType Item_Environment
LatexName overprint
ItemCommand onslide
Argument 1
MenuString "Overprint Area Width"
LabelString "Width"
Tooltip "The width of the overprint area (default: text width)"
EndArgument
Argument item:1
MenuString "Item Overlay Specifications"
LabelString "On Slide"
Tooltip "Overlay specifications for this item"
LeftDelim <
RightDelim >
PassThru 1
AutoInsert 1
EndArgument
NextNoIndent 1
LeftMargin MMMMMMMMN
LabelSep xx
ItemSep 0.2
TopSep 0.7
BottomSep 0.7
ParSep 0.3
Align Left
LabelType Static
LabelString "Overprint"
LabelFont
Family Roman
Color latex
EndFont
End
Style OverlayArea
Category Overlays
Margin First_Dynamic
LatexType Environment
NextNoIndent 0
ParIndent MM
Align Left
LabelType Static
LabelSep xx
LatexName overlayarea
LabelString "Overlayarea"
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Family Roman
Color latex
EndFont
Argument 1
LabelString "Overlay Area Width"
Tooltip "The width of the overlay area"
Mandatory 1
EndArgument
Argument 2
MenuString "Overlay Area Height"
LabelString "Height"
Tooltip "The height of the overlay area"
Mandatory 1
EndArgument
End
Style Uncover
Category Overlays
Margin First_Dynamic
LatexType Environment
NextNoIndent 0
ParIndent MM
Align Left
LabelType Static
LatexName uncoverenv
LabelSep xx
LabelString "Uncovered on slides"
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Family Roman
Color Latex
EndFont
Argument 1
LabelString "On Slide"
MenuString "Overlay Specifications|v"
Tooltip "Specify the overlay settings (see beamer manual)"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
End
Style Only
Category Overlays
Margin First_Dynamic
LatexType Environment
NextNoIndent 0
ParIndent MM
Align Left
LabelType Static
LatexName onlyenv
LabelSep xx
LabelString "Only on slides"
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Family Roman
Color Latex
EndFont
Argument 1
LabelString "On Slide"
MenuString "Overlay Specifications|v"
Tooltip "Specify the overlay settings (see beamer manual)"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
End
#
# BLOCKS
#
Style Block
Category Blocks
Margin Dynamic
LatexType Environment
NextNoIndent 1
KeepEmpty 1
Align Left
LabelType Static
LabelSep xx
LatexName block
LabelString "Block:"
ParSkip 0.5
TopSep 1
BottomSep 1
ParSep 0
LabelFont
Family Roman
Color latex
EndFont
Argument 1
LabelString "Action"
MenuString "Action Specification|S"
Tooltip "Specify the overlay settings (see beamer manual)"
LeftDelim <
RightDelim >
PassThru 1
EndArgument
Argument 2
LabelString "Block Title"
Tooltip "Enter the block title here"
Mandatory 1
Decoration conglomerate
Font
Color blue
Size large
EndFont
AutoInsert 1
EndArgument
AutoNests
Standard,Itemize,Enumerate,Description,Pause,Overprint,OverlayArea,Only,Quotation,
Quote,Verse,Corollary,Definition,Definitions,Example,Examples,Fact,Lemma,Proof,Theorem,LyX-Code
EndAutoNests
End
Style ExampleBlock
CopyStyle Block
LatexName exampleblock
LabelString "Example Block:"
Font
Color green
EndFont
End
Style AlertBlock
CopyStyle Block
LatexName alertblock
LabelString "Alert Block:"
Font
Color red
EndFont
End
#
# TITLING
#
Style Title
Category Titling
Margin Static
LatexType Command
InTitle 1
LatexName title
ParSkip 0.4
ItemSep 0
TopSep 0
BottomSep 1
ParSep 1
Align Center
LabelType No_Label
Argument 1
LabelString "Short Title|S"
Tooltip "Short title which appears in the sidebar/header"
InsertCotext 1
EndArgument
Font
Size Huge
Series Bold
Color Blue
EndFont
End
Style Title_(Plain_Frame)
CopyStyle Title
Preamble
% plain title style, override default
\renewcommand\makebeamertitle{\frame[plain]{\maketitle}}%
EndPreamble
End
Style Subtitle
Category Titling
Margin Static
LatexType Command
InTitle 1
LatexName subtitle
ParSkip 0.4
ItemSep 0
TopSep 0
BottomSep 1
ParSep 1
Align Center
LabelType No_Label
Argument 1
LabelString "Short Subtitle|S"
Tooltip "Short subtitle which appears in the sidebar/header"
InsertCotext 1
EndArgument
Font
Size Large
Series Bold
Color Blue
EndFont
End
Style Author
Category Titling
Margin Static
LatexType Command