-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapterstyle-beamer.tex
796 lines (706 loc) · 24.2 KB
/
chapterstyle-beamer.tex
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
\documentclass{beamer}
\usepackage{xparse}
\usepackage{kotex}
\usepackage{graphicx}
\usepackage{minted}
\usepackage[export]{adjustbox}
\usepackage{textcomp}
\vfuzz=30pt
%%%%%%%%%%%%%%%%%%%%%
% Beamer Settings %
%%%%%%%%%%%%%%%%%%%%%
\usetheme[numbering=fraction]{metropolis}
\usecolortheme{rose}
\useoutertheme[subsection=false]{miniframes}
\setbeamertemplate{itemize item}[square]
\setbeamertemplate{itemize subitem}[triangle]
\setbeamertemplate{itemize subsubitem}[circle]
%%%%%%%%%%%%%%%%%%%
% Font Settings %
%%%%%%%%%%%%%%%%%%%
\usepackage[factor=500]{microtype}
\usepackage[mathrm=sym]{unicode-math}
\setsansfont{Roboto}[
BoldFont = *-Medium,
BoldItalicFont = *-MediumItalic
]
\setmonofont{Inconsolata}
\setsanshangulfont{NanumGothic}[AutoFakeSlant=0.18]
%%%%%%%%%%%%%%%%%%%%%
% Minted Settings %
%%%%%%%%%%%%%%%%%%%%%
\renewcommand\theFancyVerbLine{\textsf{\tiny\arabic{FancyVerbLine}}}
\newminted{latex}{
escapeinside=||,
mathescape,
autogobble,
linenos,
breaklines,
numbersep=5pt,
frame=single,
fontsize=\scriptsize}
\newmintinline[ltxverb]{latex}{escapeinside=||}
%%%%%%%%%%%%%%%%%%%%%%%
% Custom Settings %
%%%%%%%%%%%%%%%%%%%%%%%
\def\tbs{\textbackslash}
\newcommand*{\numberofpages}[1]{%
\the\XeTeXpdfpagecount"#1" %
}
%%%%%%%%%%%%%%%%%%%%%%%
% Document Settings %
%%%%%%%%%%%%%%%%%%%%%%%
\title{%
{\large Memoir로 해보는 Book Design}\\
Chapter Style
}
\author{이재호}
\institute{서울대학교 전기$\cdot$정보공학부/KTUG}
\date{2019년 11월 16일}
%%%%%%%%%%%%%%
% Document %
%%%%%%%%%%%%%%
\begin{document}
\maketitle
\section{Overview}
\begin{frame}[fragile]{Memoir 챕터}
\begin{columns}
\begin{column}{0.6\textwidth}
Memoir의 기본 챕터의 모양\vspace*{\baselineskip}
\pause
\begin{latexcode}
\documentclass[a4paper]{memoir}
\usepackage{lipsum}
\begin{document}
\chapter{Foo}
\lipsum[1-4]
\end{document}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/chapterheadstart}
\end{column}
\end{columns}
\pause
입맛에 맞게 꾸미고 싶다면?
\end{frame}
\begin{frame}[fragile]{예시}
\ExplSyntaxOn
\int_set:Nn \l_tmpa_int
{
\numberofpages { examples/showcases.pdf } / 2
}
\begin{columns}
\begin{column}{0.43\textwidth}
\begin{overprint}
\int_step_inline:nn { \l_tmpa_int }
{
\onslide<#1>
\includegraphics[frame,
page={ \int_eval:n { #1 * 2 - 1 } },
width=\linewidth]{examples/showcases}
}
\end{overprint}
\end{column}
\begin{column}{0.43\textwidth}
\begin{overprint}
\int_step_inline:nn { \l_tmpa_int }
{
\onslide<#1>
\includegraphics[frame,
page={ \int_eval:n { #1 * 2 } },
width=\linewidth]{examples/showcases}
}
\end{overprint}
\end{column}
\end{columns}
\ExplSyntaxOff
\end{frame}
\begin{frame}[fragile]{\texttt{\textbackslash chapter}가 하는 일}
Memoir에서 챕터 모양을 바꾸기 위해서는 \ltxverb/\chapterstyle{|<style>|}/ 사용
\pause
일반적으로 \LaTeX에서는 \ltxverb/\@makechapterhead/로 \ltxverb/\chapter/의
서식을 지정, \ltxverb/\@makeschapterhead/로 \ltxverb/\chapter*/의 서식을 지정
\pause
Memoir에서는 대략...
\begin{columns}[T]
\begin{column}{0.5\textwidth}
\begin{latexcode}
% \chapter with secnumdepth $\geq$ 0
\chapterheadstart
\printchaptername \chapternamenum \printchapternum
\afterchapternum
\printchaptertitle{The title}
\afterchaptertitle
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\begin{latexcode}
% \chapter* with secnumdepth < 0
\chapterheadstart
\printchapternonum
\printchaptertitle{The title}
\afterchaptertitle
\end{latexcode}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{\texttt{\textbackslash chapterstyle}이 하는 일}
매 chapter style 마다, 다음과 같은 매크로들이 초기화된다:
\begin{latexcode}
\renewcommand\chapterheadstart{\vspace*{\beforechapskip}}
\renewcommand\printchaptername{\chapnamefont \@chapapp}
\renewcommand\chapternamenum{\space}
\renewcommand\printchapternum{\chapnumfont \thechapter}
\renewcommand\afterchapternum{\par\nobreak\vskip \midchapskip}
\renewcommand\printchapternonum{}
\renewcommand\printchaptertitle[1]{\chaptitlefont #1}
\renewcommand\afterchaptertitle{\par\nobreak\vskip \afterchapskip}
\end{latexcode}
\pause
마지막으로, \ltxverb/\makechapterstyle{|<style>|}{|<code>|}/를 통해 새로운
chapter style을 정의할 수 있다.
이를 사용하려면, \ltxverb/\chapterstyle{|<name>|}/을 사용한다.
\end{frame}
\section{명령어 분석}
\begin{frame}[fragile]
{\texttt{\tbs openright}, \texttt{\tbs openleft}, \texttt{\tbs openany} 분석}
\begin{description}
\item[openright] 챕터 헤딩이 직후 우측 페이지에 위치한다.
\item[openleft] 챕터 헤딩이 직후 좌측 페이지에 위치한다.
\item[openany] 챕터 헤딩이 직후 페이지에 위치한다.
\end{description}
또한 \ltxverb/\openright/와 같이 문서 아무 곳에서 사용하면 설정이 바뀐다.
\pause
이는 다음과 같은 일을 하도록 정의되어 있다:
\begin{latexcode}
\newcommand{\openright}{\@openrighttrue\@openleftfalse%
\gdef\clearforchapter{\cleartorecto}}
\newcommand{\openany}{\@openrightfalse\@openleftfalse%
\gdef\clearforchapter{\clearpage}}
\newcommand{\openleft}{\@openlefttrue
\gdef\clearforchapter{\cleartoverso}}
\end{latexcode}
\end{frame}
\begin{frame}[fragile]{\texttt{\tbs clearforchapter} 분석}
직전에 소개된 \ltxverb/\openright/, \ltxverb/\openleft/, \ltxverb/\openany/에
의해 설정된다.
만약 이를 새로 정의한다면 챕터가 시작되기 직전에 해야하는 작업을 수행할 수
있다.
\end{frame}
\begin{frame}[fragile]{\texttt{\tbs clearforchapter} 예시}
\begin{latexcode}
\renewcommand*{\clearforchapter}{}
\end{latexcode}
\begin{columns}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/clearforchapter}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=2,width=\linewidth]{examples/clearforchapter}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{\texttt{\tbs memendofchapterhook} 분석}
\ltxverb/\clearforchapter/가 챕터 시작 직전에 실행된다면,
\ltxverb/\memendofchapterhook/은 챕터의 맨 끝에서 실행된다.
기본적으로는 아무것도 하지 않도록 정의되어 있다.
\end{frame}
\begin{frame}[fragile]{\texttt{\tbs memendofchapterhook} 예시}
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
% \usepackage{amssymb}
\renewcommand*{\clearforchapter}{}
\renewcommand{\memendofchapterhook}{%
\begin{center}
$\lozenge\lozenge\lozenge$
\end{center}}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/memendofchapterhook}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs chapterheadstart}와 \texttt{\tbs beforechapskip} 분석}
\ltxverb/\chapterheadstart/은 챕터 제목과 번호를 출력하기 직전에 실행되며,
기본적으로는 50pt로 설정되어 있는 \ltxverb/\beforechapskip/을 출력한다.
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs chapterheadstart}와 \texttt{\tbs beforechapskip} 예시}
\begin{overprint}
\onslide<1>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\beforechapskip{50pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/chapterheadstart}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{minted}[mathescape,
autogobble,
linenos,
numbersep=5pt,
frame=single,
fontsize=\scriptsize]{latex}
\setlength\beforechapskip{-\baselineskip}
\end{minted}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/chapterheadstart-2}
\end{center}
\end{column}
\end{columns}
\onslide<2>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\beforechapskip{50pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/chapterheadstart}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\renewcommand*{\chapterheadstart}{}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/chapterheadstart-3}
\end{center}
\end{column}
\end{columns}
\end{overprint}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs afterchapternum}과 \texttt{\tbs midchapskip} 분석}
\ltxverb/\afterchapternum/은 챕터 번호를 출력한 직후에 실행되며, 기본적으로는
20pt로 설정되어 있는 \ltxverb/\midchapskip/을 출력한다.
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs afterchapternum}과 \texttt{\tbs midchapskip} 예시}
\begin{overprint}
\onslide<1>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\midchapskip{20pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchapternum}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\midchapskip{0pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchapternum-2}
\end{center}
\end{column}
\end{columns}
\onslide<2>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\midchapskip{20pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchapternum}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{minted}[mathescape,
escapeinside=||,
autogobble,
linenos,
numbersep=5pt,
frame=single,
fontsize=\tiny]{latex}
\renewcommand*{\afterchapternum}{\par\nobreak\vskip 0pt}|\vphantom{\LARGE a}|
\end{minted}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchapternum-3}
\end{center}
\end{column}
\end{columns}
\end{overprint}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs afterchaptertitle}과 \texttt{\tbs afterchapskip} 분석}
\ltxverb/\afterchaptertitle/은 챕터 제목을 출력한 직후에 실행되며,
기본적으로는 40pt로 설정되어 있는 \ltxverb/\afterchapskip/을 출력한다.
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs afterchaptertitle}과 \texttt{\tbs afterchapskip} 예시}
\begin{overprint}
\onslide<1>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\afterchapskip{40pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchaptertitle}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\afterchapskip{0pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchaptertitle-2}
\end{center}
\end{column}
\end{columns}
\onslide<2>
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\setlength\afterchapskip{40pt}
\end{latexcode}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchaptertitle}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{minted}[mathescape,
escapeinside=||,
autogobble,
linenos,
numbersep=5pt,
frame=single,
fontsize=\tiny]{latex}
\renewcommand*{\afterchaptertitle}{\par\nobreak\vskip 0pt}|\vphantom{\LARGE a}|
\end{minted}
\begin{center}
\includegraphics[frame,page=1,width=0.8\linewidth]{examples/afterchaptertitle-3}
\end{center}
\end{column}
\end{columns}
\end{overprint}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs printchaptername}과 \texttt{\tbs chapnamefont} 분석}
\ltxverb/\printchaptername/은 챕터 이름을 출력한다.
이때 이름이란 제목이 아니라, 기본적으로 \texttt{Chapter} 혹은
\texttt{Appendix}로 정해져 있는, 챕터 앞에 붙는 이름을 말한다.
사용되는 글꼴은 \ltxverb/\chapnamefont/로 지정하고, 기본값은
\ltxverb/\bfseries\huge/이다.
\end{frame}
\begin{frame}[fragile]{\texttt{\tbs printchaptername} 및 \texttt{\tbs chapnamefont} 예시}
\begin{overprint}
\onslide<1>
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\renewcommand*{\printchaptername}{%
\sffamily\large LECTURE }
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchaptername}
\end{column}
\end{columns}
\onslide<2>
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\renewcommand*{\printchaptername}{%
\chapnamefont LECTURE }
\renewcommand*{\chapnamefont}{\sffamily\large}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchaptername}
\end{column}
\end{columns}
\onslide<3>
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\makeatletter
\renewcommand*{\@chapapp}{LECTURE}
\renewcommand*{\printchaptername}{%
\chapnamefont\@chapapp}
\renewcommand*{\chapnamefont}{\sffamily\large}
\makeatother
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchaptername}
\end{column}
\end{columns}
\onslide<4>
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\makeatletter
\renewcommand*{\@chapapp}{Lecture}
\renewcommand*{\printchaptername}{%
\chapnamefont\MakeUppercase\@chapapp}
\renewcommand*{\chapnamefont}{\sffamily\large}
\makeatother
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchaptername}
\end{column}
\end{columns}
\end{overprint}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs chapternamenum} 분석 및 예시}
\begin{columns}
\begin{column}{0.6\textwidth}
\ltxverb/\chapternamenum/은 챕터 이름과 번호 사이에 사용되는 명령어로,
기본값은 띄어쓰기이다.
\pause
\newline
\begin{latexcode}
\renewcommand*{\chapternamenum}{\vskip 12pt}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/chapternamenum}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs printchapternum}과 \texttt{\tbs chapnumfont} 분석}
\ltxverb/\printchaptername/과 \ltxverb/\chapnumfont/의 관계처럼
\ltxverb/\printchapternum/은 챕터 번호를, 사용되는 글꼴은
\ltxverb/\chapnumfont/로 지정한다.
\ltxverb/\chapnumfont/의 기본값은 \ltxverb/\chapnamefont/와 같은
\ltxverb/\bfseries\huge/이다.
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs printchapternum} 및 \texttt{\tbs chapnumfont} 예시}
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\renewcommand*{\printchapternum}{%
\chapnumfont\thechapter}
\renewcommand*{\chapnumfont}{\slshape\Huge}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchapternum}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs printchaptertitle}과 \texttt{\tbs chaptitlefont} 분석}
이전과 마찬가지로 \ltxverb/\printchaptertitle/은 챕터 번호를, 사용되는 글꼴은
\ltxverb/\chaptitlefont/로 지정한다.
\ltxverb/\chaptitlefont/의 기본값은 \ltxverb/\bfseries\Huge/이다.
\end{frame}
\begin{frame}[fragile]
{\texttt{\tbs printchaptertitle}과 \texttt{\tbs chaptitlefont} 예시}
\begin{columns}
\begin{column}{0.6\textwidth}
\begin{latexcode}
\renewcommand*{\chaptitlefont}{%
\normalfont\scshape\Huge}
\renewcommand*{\printchaptertitle}[1]{%
\chaptitlefont #1}
\end{latexcode}
\end{column}
\begin{column}{0.4\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/printchaptertitle}
\end{column}
\end{columns}
\end{frame}
\begin{frame}{Summary}
\begin{center}
\includegraphics[width=0.8\textwidth]{summary}
\end{center}
\end{frame}
\section{Case Study}
\begin{frame}[fragile]{Introduction to Electrodynamics (Griffiths)}
\begin{columns}
\begin{column}{0.5\textwidth}
엊그제 전자기학 시험을 봤습니다$\ldots$
\pause
Griffiths의 Introduction to Electrodynamics 교재의 chapter style을
모방하며 위의 명령어들을 활용해봅시다.
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,width=\linewidth]{examples/griffiths-sample}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{페이지 레이아웃 및 글꼴 설정 (참고)}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\documentclass[openany]{memoir}
% Page layout settings
\setstocksize{237mm}{179mm}
\settrimmedsize{\stockheight}{\stockwidth}{*}
\setlrmarginsandblock{146pt}{39pt}{*}
\setulmarginsandblock{60pt}{76pt}{*}
\setheaderspaces{*}{13pt}{*}
\checkandfixthelayout
\setlength{\evensidemargin}{\oddsidemargin}
% Font settings
\usepackage{amsmath}
\usepackage[(생략)]{mtpro2}
\usepackage[no-math]{fontspec}
\setmainfont{Times New Roman}
\newfontfamily\optimafont{Optima}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{페이지 스타일 설정 (참고)}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\newcommand*{\shiftleft}[2]{%
\makebox[0pt][r]{%
\makebox[#1][l]{#2}}}
% Pagestyle settings
(생략)
% 챕터가 나오는 쪽에 대한 페이지 스타일
\makepagestyle{gchapter}
% 쪽 번호가 왼쪽에 올 경우에는 텍스트보다 왼쪽으로 107pt 옮겨서 표시
\makeevenfoot{gchapter}{%
\optimafont\shiftleft{107pt}{%
\bfseries\thepage}}{}{}
\makeoddfoot{gchapter}{}{}{%
\optimafont\bfseries\thepage}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{챕터 스타일 설정 1}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
% Chapterstyle settings
\makeatletter
\newlength{\chapappwidth}
\makechapterstyle{griffiths}{%
% 기본 챕터 스타일에서 시작
\chapterstyle{default}
\setlength\beforechapskip{-42pt}
\renewcommand*{\afterchapternum}{%
\qquad}
\setlength\afterchapskip{63pt}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{챕터 스타일 설정 2}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
\renewcommand*{\chapnamefont}{%
\optimafont\bfseries%
\addfontfeatures{LetterSpace=26}%
\huge}
\def\chaptertext{\chapnamefont%
\MakeUppercase{\@chapapp}}
% CHAPTER의 너비를 저장
\settowidth{\chapappwidth}{\chaptertext}
\renewcommand*{\printchaptername}{%
% 왼쪽 여백을 줄임
\begin{adjustwidth}{%
-\chapappwidth}{}
\chaptertext
\end{adjustwidth}}
\renewcommand*{\chapternamenum}{%
\vskip 12pt}
\renewcommand*{\chapnumfont}{%
\optimafont\bfseries%
\fontsize{60}{60}\selectfont}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{챕터 스타일 설정 3}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
% 챕터 번호는 \printchaptertitle에서 같이 출력하도록 지정
\renewcommand*{\printchapternum}{}
\renewcommand*{\chaptitlefont}{%
\optimafont\bfseries%
\fontsize{22}{22}\selectfont}
\renewcommand*{%
\printchaptertitle}[1]{%
\begin{adjustwidth}{%
-\chapappwidth}{}
\makebox[\chapappwidth][c]{%
\chapnumfont\thechapter}%
\makebox[\dimexpr\linewidth-\chapappwidth\relax][c]{%
\chaptitlefont ##1}
\end{adjustwidth}}}
\makeatother
% 챕터 쪽의 페이지 스타일 지정
\renewcommand*{\memendofchapterhook}{%
\thispagestyle{gchapter}}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{기타 서식 설정}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{latexcode}
% Sectionstyle settings
\setsecnumdepth{subsection}
\maxsecnumdepth{subsection}
\setsecnumformat{\llap{%
\csname the#1\endcsname\ $\blacksquare$\ }}
\setsecheadstyle{%
\optimafont\bfseries\MakeUppercase}
\setsubsecheadstyle{\optimafont\bfseries}
% Footnote settings
\setlength{\footmarkwidth}{0pt}
\setlength{\footmarksep}{0pt}
\let\oldfootnoterule\footnoterule
\renewcommand*{\footnoterule}{}
\end{latexcode}
\end{column}
\begin{column}{0.5\textwidth}
\includegraphics[frame,page=1,width=\linewidth]{examples/griffiths-clone}
\end{column}
\end{columns}
\end{frame}
\begin{frame}{마무리}
\pause
\centering 감사합니다.
\end{frame}
\begin{frame}{부록}
본 발표 자료는
\url{https://github.com/Zeta611/chapterstyle-latex-workshop-2019}에서 소스와
함께 보실 수 있으며, case study에서 살펴본 챕터 스타일은
\url{https://github.com/Zeta611/griffiths-clone/}에서 보실 수 있습니다.
또한 본 주제를 포함한 Memoir에 관한 모든 내용은 \texttt{texdoc memoir}을
터미널에 입력하시면 읽어보실 수 있습니다.
\begin{center}
\includegraphics[width=0.4\linewidth]{rtfm}
\end{center}
\end{frame}
\end{document}