forked from zeta709/snuthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnuthesis.cls
1023 lines (956 loc) · 33.4 KB
/
snuthesis.cls
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
%% This is file `snuthesis.cls`.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% This is an unofficial SNU LaTeX class.
%%
%% Author: zeta709 ([email protected])
%% https://github.com/zeta709/snuthesis
%%
%% 서울대 졸업논문 LaTeX template이다.
%% 석사, 박사 양식을 모두 지원하며, 학사는 전기공학부 양식을 지원한다.
%% 기본적으로 2011년에 만들고 그 이후엔 버그 수정만 한 것이라
%% 양식이 잘 맞을지 모르겠다.
%%
%% 사실 귀찮아서 글마당에 올라온 기존 template을 쓰려고 했으나,
%% 결정적으로 저자가 사용하려는 패키지와 기존 template 사이에
%% 너무 해결하기 어려운 충돌이 발생해서 이것을 만들게 되었다.
%% 그렇다고 무에서 시작한 것은 아니고
%% 학부 때 학부 전용으로 template을 만들어 둔 것에
%% 대학원 양식을 추가한 것이다.
%% (물론 그 과정에서는 기존 양식을 참고했다.)
%%
%% 기존 양식에는 사소한 버그가 있었다.
%% 페이지 번호가 이상하다거나, pdf 크기를 자동으로 안 잡아준다거나,
%% 양면 인쇄를 상대적으로 덜 고려했다거나하는 것 등이다.
%% 여기서는 기존 양식의 몇 가지 버그를 해결한 동시에
%% 원래는 잘 되던 것이 여기서는 안 될지도 모르겠다.
%%
%% 예전에 학부 양식을 만들 당시에는 jdj가 만든 학부 양식을 참고하였으나,
%% 사실상 대부분을 다시 작성하였던 것 같다.
%% 그리고 jdj가 KAIST 양식을 참고했다고 하여, 저자 역시
%% KAIST 양식도 참고했었다.
%% KAIST의 양식이 최초(?)의 국내 대학원 LaTeX 논문 양식이라
%% 다방면에 영향을 준 것일지도 모르겠다.
%%
%% 패키지 충돌에 당해본 관계로 이 양식은
%% 의존 패키지를 최소화하는 방향으로 만들었다.
%% 잘 되려나 모르겠다.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Options
%%
%% ko: 한글 논문을 작성한다.
%%
%% indentfirst: indentfirst 패키지를 사용한다.
%% noindentfirst: indentfirst 패키지를 사용하지 않는다.
%% 이것은 각 section의 첫 단락에서 들여쓰기를 할 지 말 지 결정하는 옵션이다.
%% 한글 논문에서는 사용하는 것이 기본이고,
%% 영문 논문에서는 사용하지 않는 것이 기본이다.
%%
%% easy: 편리한 설정을 위한 옵션이다.
%%
%% draft, final, leqno, fleqn, openright, openay,
%% openbib, oneside, twoside: report class에 전달한다.
%% 이 옵션들의 의미는 LaTeX 입문서에 설명되어 있다.
%%
%% nonfrench, finemath, strictcharcheck: kotex package에 전달한다.
%% 이 옵션들의 의미는 ko.TeX 사용 설명서에 설명되어 있다.
%%
%% under: 학사
%% ms, master: 석사
%% phd, doctor: 박사
%%
%% 4x6: 사륙배판을 사용한다. 석박사 양식에서만 사용가능하다.
%% (188 mm x 258 mm)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 사용 환경
%%
%% TeXLive를 추천한다.
%%
%% 의존성
%% 반드시 필요한 클래스와 패키지들은 다음과 같다.
%%
%% * report class
%% 기반 클래스이다.
%% * kotex package
%% 영어 논문을 써도 국문 초록을 넣어야 하므로 이 패키지가 필요하다.
%%
%% 그 외에 옵션에 따라 다른 패키지가 필요할 수 있다.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 기타
%%
%% @snu@ko와 같이 @을 넣는 것은 명령어를 내부 명령어로 사용하는 것이다.
%% 그리고 @snu를 넣은 것은 다른 패키지와 충돌할 가능성을 방지하기 위해서이다.
%%
%% memoir나 oblivior 등의 클래스도 좋다고 생각하지만 호환성 등을 생각해서
%% report 클래스를 기반으로 하였다.
%%
%% 패키지를 수정할 때는 주석을 읽어보고 수정하는 것이 좋다.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
\ProvidesClass{snuthesis}
[2017/07/22 v0.99.4 unofficial SNU LaTeX class]
\newif\if@snu@under
\newif\if@snu@ms
\newif\if@snu@phd
\newif\if@snu@ko %% true이면 국문 논문.
\@snu@kofalse %% 기본값은 영문 논문.
\newif\if@snu@indentfirst %% true이면 section의 첫 단락도 들여쓴다.
\@snu@indentfirstfalse
\newif\if@snu@indentoptionset
\@snu@indentoptionsetfalse
\newif\if@snu@easy %% easy 옵션. 이것저것 대신 해줌.
\@snu@easyfalse %% 기본값은 false.
\newif\if@snu@fsbp
\@snu@fsbpfalse
\DeclareOption{4x6}{\@snu@fsbptrue}
\DeclareOption{under}{\@snu@undertrue \@snu@msfalse \@snu@phdfalse}
\DeclareOption{ms}{\@snu@underfalse \@snu@mstrue \@snu@phdfalse}
\DeclareOption{master}{\@snu@underfalse \@snu@mstrue \@snu@phdfalse}
\DeclareOption{phd}{\@snu@underfalse \@snu@msfalse \@snu@phdtrue}
\DeclareOption{doctor}{\@snu@underfalse \@snu@msfalse \@snu@phdtrue}
\DeclareOption{ko}{\@snu@kotrue}
\DeclareOption{indentfirst}{\@snu@indentfirsttrue \@snu@indentoptionsettrue}
\DeclareOption{noindentfirst}{\@snu@indentfirstfalse \@snu@indentoptionsettrue}
\DeclareOption{easy}{\@snu@easytrue}
\DeclareOption{draft}{\PassOptionsToClass{draft}{report}}
\DeclareOption{final}{\PassOptionsToClass{final}{report}}
\DeclareOption{leqno}{\PassOptionsToClass{leqno}{report}}
\DeclareOption{fleqn}{\PassOptionsToClass{fleqn}{report}}
\DeclareOption{openright}{\PassOptionsToClass{openright}{report}}
\DeclareOption{openany}{\PassOptionsToClass{openany}{report}}
\DeclareOption{openbib}{\PassOptionsToClass{openbib}{report}}
\DeclareOption{oneside}{\PassOptionsToClass{oneside}{report}}
\DeclareOption{twoside}{\PassOptionsToClass{twoside}{report}}
%% report class의 나머지 옵션은 의도적으로 제공하지 않음.
\DeclareOption{nonfrench}{\PassOptionsToClass{nonfrench}{kotex}}
\DeclareOption{finemath}{\PassOptionsToClass{finemath}{kotex}}
\DeclareOption{strictcharcheck}{\PassOptionsToClass{strictcharcheck}{kotex}}
%% hangul, nojosa, hanja 옵션은 의도적으로 제공하지 않음.
\ExecuteOptions{phd} % phd가 기본인 것은 박사에게 제공하는 작은 혜택?
\ProcessOptions\relax
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% "\if@snu@under"는 학부를 의미함.
%% "\if@snu@ko"는 한글 논문을 의미함.
\newcommand{\@snu@koen}{%
\if@snu@ko \expandafter\@firstoftwo
\else \expandafter\@secondoftwo
\fi
}
% Usage: \@snu@koen{한글}{English}
\newcommand{\@snu@msphd}{%
\if@snu@ms \expandafter\@firstoftwo
\else \expandafter\@secondoftwo
\fi
}
% Usage: \@snu@msphd{M.S.}{Ph.D.}
%% ProcessOptions 뒤에 나와야 정상적으로 동작한다.
\if@snu@under % 학부
\if@snu@ko
\PassOptionsToClass{a4paper,10pt}{report}
\else
\PassOptionsToClass{a4paper,11pt}{report}
\fi
\else % 대학원
\PassOptionsToClass{b5paper,11pt}{report}
\fi
\LoadClass[onecolumn]{report}
\if@snu@ko
\RequirePackage{kotex} %% hangul 옵션에 대해 테스트 중.
%% The UK TeX FAQ
%% Your 437 Questions Answered
%% version 3.19a, date 2009-06-13, p.211.
\renewcommand{\abstractname}{초록} %
%\renewcommand{\alsoname}{see also} % (makeidx package)
\renewcommand{\appendixname}{부록} %
\renewcommand{\bibname}{참고문헌} % (report,book)
%\renewcommand{\ccname}{cc} % (letter)
%\renewcommand{\chaptername}{Chapter} % (report,book)
\newcommand{\snuchappre}{제}
\newcommand{\snuchappost}{\space장}
\renewcommand{\contentsname}{목차} %
%\renewcommand{\enclname}{encl} % (letter)
\renewcommand{\figurename}{그림} % (for captions)
%\renewcommand{\headtoname}{To} % (letter)
\renewcommand{\indexname}{색인} %
\renewcommand{\listfigurename}{그림 목차} %
\renewcommand{\listtablename}{표 목차} %
%\renewcommand{\pagename}{Page} % (letter)
%\renewcommand{\partname}{Part} %
%\renewcommand{\refname}{References} % (article)
%\renewcommand{\seename}{see} % (makeidx package)
\renewcommand{\tablename}{표} % (for caption)
\newcommand{\keywordname}{주요어}
\newcommand{\keywordnamealt}{Keywords}
\newcommand{\studentnumbername}{학번}
\newcommand{\studentnumbernamealt}{Student Number}
\newcommand{\abstractnamealt}{Abstract}
\newcommand{\acknowledgementname}{감사의 글}
\g@addto@macro\appendix{%
\renewcommand{\snuchappre}{부록}%
\renewcommand{\snuchappost}{}%
}
%% 참고사항
%% kotex에 [hangul] 옵션을 주면
%% 여기서 변경한 사항이 덮어쓰여진다.
%% babel 패키지도 비슷한 역할을 할 수 있다.
\else
\RequirePackage{kotex} %% 국문 초록 때문에 필요하다.
%% The UK TeX FAQ
%% Your 437 Questions Answered
%% version 3.19a, date 2009-06-13, p. 211.
%\renewcommand{\abstractname}{Abstract} %
%\renewcommand{\alsoname}{see also} % (makeidx package)
%\renewcommand{\appendixname}{Appendix} %
%\renewcommand{\bibname}{Bibliography} % (report,book)
%\renewcommand{\ccname}{cc} % (letter)
%\renewcommand{\chaptername}{Chapter} % (report,book)
%\renewcommand{\contentsname}{Contents} %
%\renewcommand{\enclname}{encl} % (letter)
%\renewcommand{\figurename}{Figure} % (for captions)
%\renewcommand{\headtoname}{To} % (letter)
%\renewcommand{\indexname}{Index} %
%\renewcommand{\listfigurename}{List of Figures} %
%\renewcommand{\listtablename}{List of Tables} %
%\renewcommand{\pagename}{Page} % (letter)
%\renewcommand{\partname}{Part} %
%\renewcommand{\refname}{References} % (article)
%\renewcommand{\seename}{see} % (makeidx package)
%\renewcommand{\tablename}{Table} % (for caption)
\newcommand{\keywordname}{Keywords}
\newcommand{\keywordnamealt}{주요어}
\newcommand{\studentnumbername}{Student Number}
\newcommand{\studentnumbernamealt}{학번}
\newcommand{\abstractnamealt}{초록}
\newcommand{\acknowledgementname}{Acknowledgements}
\fi
\if@snu@indentoptionset
\if@snu@indentfirst
\RequirePackage{indentfirst}
\fi
\else
\if@snu@ko
\RequirePackage{indentfirst}
\fi
\fi
\RequirePackage{ifpdf}
%% maketitle 명령 제거.
\let\oldmaketitle=\maketitle
\renewcommand\maketitle{}
%% 여백 설정.
%% lshort.pdf의 page layout을 참고하면 좋다.
%% 또는 "latex page layout"정도로 검색하면 된다.
%% a4paper : 210 mm X 297 mm
%% B5 (ISO) : 176 mm X 250 mm
%% B5 (JIS) : 182 mm X 257 mm
%% 4X6배판 : 188 mm X 258 mm
%% 학부 양식에서는 A4를 사용한다.
%% 대학원의 hwp, doc 양식은 B5 (JIS)를 쓰고 있다.
%% LaTeX의 b5paper는 ISO 규격으로 약간 작으므로,
%% 직접 고쳐준다.
\if@snu@under
\setlength{\paperwidth}{210mm}
\setlength{\paperheight}{297mm}
\setlength{\textwidth}{160mm} %% 210 mm - (2.5 cm)*2
\setlength{\textheight}{232mm} %% 297 mm - 3 cm - 3.5 cm
% 좌우 여백 2.5 cm
% 상단 여백 3 cm, 하단 여백 3.5 cm
\else
\if@snu@fsbp
\setlength{\paperwidth}{188mm}
\setlength{\paperheight}{258mm}
\setlength{\textwidth}{138mm} %% 188 mm - (2.5 cm)*2
\setlength{\textheight}{193mm} %% 258 mm - 3 cm - 3.5 cm
\else
\setlength{\paperwidth}{182mm}
\setlength{\paperheight}{257mm}
\setlength{\textwidth}{132mm} %% 182 mm - (2.5 cm)*2
\setlength{\textheight}{192mm} %% 257 mm - 3 cm - 3.5 cm
\fi
% 좌우 여백 2.5 cm
% 상단 여백 3 cm, 하단 여백 3.5 cm
\fi
%% hoffset, voffset을 직접 바꾸면
%% 일부 패키지와 잘 안 맞는다.
%%\setlength{\hoffset}{-1in}
%%\setlength{\voffset}{-1in}
\setlength{\topmargin}{30mm}
\addtolength{\topmargin}{-1in}
\setlength{\headheight}{0mm}
\setlength{\headsep}{0mm} %% 헤더는 사용하지 않음.
\addtolength{\marginparwidth}{-1.2cm} %% 안 중요함.
%\setlength{\marginparsep}{3mm} %% 상관 없음.
\setlength{\oddsidemargin}{25mm}
\addtolength{\oddsidemargin}{-1in}
\setlength{\evensidemargin}{\oddsidemargin}
\setlength{\footskip}{20mm} % 아래 page number 위치
\ifpdf
\setlength{\pdfpagewidth}{\paperwidth}
\setlength{\pdfpageheight}{\paperheight}
\fi
%% 줄간격
\if@snu@under
%% 배행간 설정이 조금 까다롭다.
%% 영문은 1.6으로 하고, 한글은 1.75나 2.0으로 해야 한다는 주장도 있다.
\linespread{1.75} % Doblespacing
\else
\if@snu@ko
\linespread{1.6} % 170% (?)
\else
\linespread{1.5} % 170% (?)
\fi
\fi
\let\@snu@oldfootnote=\footnote
\renewcommand{\footnote}[1]{\linespread{1.0}\@snu@oldfootnote{#1}}
%% \@onlypreamble 남용 금지.
%% \@onlypreamble을 남용하는 것은 좋지 않다.
%% 표지에는 영문 성명을 넣고
%% 인준지에는 한글 성명을 넣고 싶은 사람도 있을 것이고,
%% 양쪽 모두에 한글 성명을 사용하고 싶은 사람도 있을 것이다.
%% 그렇기 때문에 \authorko와 \authoren을 따로
%% 만드는 방법은 완전한 해결 방법이 될 수 없다.
%% 그래서 단순히 \author과 \author*만은 만들었다.
%% 여기서 *이 붙은 버전은 멋(?)을 내기 위한
%% 스페이스를 넣은 이름을 쓰기 위해서 사용한다.
%% 아무튼 \makefrontcover와 \makeapproval 사이에서
%% 이름을 바꾸는 것을 허용하면,
%% 영문 성명과 한글 성명을 섞어 쓰고 싶은 사람도
%% 배려할 수 있게 된다.
%% 제목
\let\@oldtitle=\title
\def\title{\@ifstar\@snu@title\@oldtitle}
\def\@snu@title#1{\gdef\@titlealt{#1}}
\def\@titlealt{\@latex@error{No \noexpand\title* given}\@ehc}
%\@onlypreamble{\title}
%% 학문 (단, 학사는 공학으로 고정)
\def\academicko#1{\gdef\@snu@academic@ko{#1}}
\def\@snu@academic@ko{공학}
%% 대학
\def\schoolko#1{\gdef\@snu@school@ko{#1}}
\def\schoolen#1{\gdef\@snu@school@en{#1}}
\def\schoolensub#1{\gdef\@snu@school@ensub{#1}} % 불필요?
\if@snu@under
\def\@snu@school@ko{서울대학교 공과대학}
\else
\def\@snu@school@ko{서울대학교 대학원}
\fi
\def\@snu@school@en{COLLEGE OF ENGINEERING}
\def\@snu@school@ensub{SEOUL NATIONAL UNIVERSITY}
%onlypreamble{\schoolko}
%onlypreamble{\schoolen}
%onlypreamble{\schoolensub}
%% 학부
\def\departmentko#1{\gdef\@snu@department@ko{#1}}
\def\departmenten#1{\gdef\@snu@department@en{#1}}
\def\@snu@department@ko{전기 컴퓨터 공학부}
\def\@snu@department@en{DEPARTMENT OF ELECTRICAL ENGINEERING AND\\%
COMPUTER SCIENCE}
%\@onlypreamble{\departmentko}
%\@onlypreamble{\departmenten}
%% 이름
\let\@oldauthor=\author
\def\author{\@ifstar\@snu@authoralt\@oldauthor}
\def\@snu@authoralt#1{\gdef\@authoralt{#1}}
\def\@authoralt{\@latex@error{No \noexpand\author* given}\@ehc}
%\@onlypreamble{\author}
%% 학번
\def\studentnumber#1{\gdef\@snu@studentnumber{#1}}
\def\@snu@studentnumber{\@latex@error{No \noexpand\studentnumber given}\@ehc}
%\@onlypreamble{\studentnumber}
%% 지도교수
\def\advisor{\@ifstar\@snu@advisoralt\@snu@advisor}
\def\@snu@advisoralt#1{\gdef\@advisoralt{#1}}
\def\@snu@advisor#1{\gdef\@advisor{#1}}
\def\@advisoralt{\@latex@error{No \noexpand\advisor* given}\@ehc}
\def\@advisor{\@latex@error{No \noexpand\advisor given}\@ehc}
%\@onlypreamble{\advisor}
%% 학위 수여일 - 표자에 들어감
\def\graddate#1{\gdef\@snu@graddate{#1}}
\def\@snu@graddate{\@latex@error{No \noexpand\graddate given}\@ehc}
%\@onlypreamble{\graddate}
%% 논문 제출일 - 인준지에 들어감 (학사 제외)
\def\submissiondate#1{\gdef\@snu@submissiondate{#1}}
\def\@snu@submissiondate{\@latex@error{No \noexpand\submissiondate given}\@ehc}
%\@onlypreamble{\submissiondate}
%% 논문 인준일 - 인준지에 들어감
\def\approvaldate#1{\gdef\@snu@approvaldate{#1}}
\def\@snu@approvaldate{\@latex@error{No \noexpand\approvaldate given}\@ehc}
%\@onlypreamble{\approvaldate}
%% 위원장, 부위원장, 위원
\def\committeemembers#1#2#3#4#5{%
\gdef\@snu@committeememberA{#1}
\gdef\@snu@committeememberB{#2}
\gdef\@snu@committeememberC{#3}
\gdef\@snu@committeememberD{#4}
\gdef\@snu@committeememberE{#5}
}
\def\@snu@committeememberA{}
\def\@snu@committeememberB{}
\def\@snu@committeememberC{}
\def\@snu@committeememberD{}
\def\@snu@committeememberE{}
%% 연락처
\def\phonenumber#1{\gdef\@snu@phonenumber{#1}}
%% 동의서 날짜
\def\agreementdate#1{\gdef\@snu@agreementdate{#1}}
%% Copied def. of \cleardoublepage from memoir.cls
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
%\hbox{}\thispagestyle{cleared}%
\hbox{}\thispagestyle{empty}%
\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi}
%% 표지
%% 표지 하단 여백은 3 cm (5 mm 작음)
%% 표지 좌우 여백은 2 cm (5 mm 작음)
%% 제목의 linespread 1.3
\newlength{\@snu@covertextheight}
\setlength{\@snu@covertextheight}{\textheight}
%\addtolength{\@snu@covertextheight}{5mm} % removed at version 0.99
\newcommand{\makefrontcover}{%
%% 여백 재조정
\cleardoublepage
\addtolength{\textwidth}{10mm}
\addtolength{\oddsidemargin}{-5mm}
\addtolength{\evensidemargin}{-5mm}
\if@twocolumn \@restonecoltrue
\else \@restonecolfalse \fi
\onecolumn
%\enlargethispage{5mm} % removed at version 0.99
\thispagestyle{empty}
\noindent
%\begin{minipage}[][\@snu@covertextheight][s]{\textwidth}
\parbox[][\@snu@covertextheight][s]{\textwidth}{%
\centering
\normalfont
\linespread{1.3}\selectfont
\if@snu@under % 학부
\fontsize{16pt}{16pt}\selectfont
공학학사학위논문\\
\vspace{2cm}\nointerlineskip
\fontsize{21pt}{21pt}\selectfont
\@title\\
\vfill
\fontsize{16pt}{16pt}\selectfont
\@snu@graddate\\
\vspace{4cm}\nointerlineskip
\@snu@school@ko\\
\vspace{1cm}\nointerlineskip
\@snu@department@ko\\
\vspace{1cm}\nointerlineskip
\@authoralt
\else % 대학원
\fontsize{14pt}{14pt}\selectfont
\if@snu@ms
\@snu@koen{\@snu@academic@ko석사학위논문}%
{M.S. THESIS}\\
\else
\@snu@koen{\@snu@academic@ko박사학위논문}%
{Ph.D. DISSERTATION}\\
\fi
\vspace{2cm}\nointerlineskip
\fontsize{22pt}{22pt}\selectfont
\@title\\
\vspace{1cm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
\@titlealt\\
\if@snu@ko\else
\vspace{2cm}\nointerlineskip
\fontsize{14pt}{14pt}\selectfont
BY\\
\vspace{1cm}\nointerlineskip
\@author
\fi
\vfill
\fontsize{14pt}{14pt}\selectfont
\@snu@graddate\\
\vspace{4cm}\nointerlineskip
\if@snu@ko
\fontsize{16pt}{16pt}\selectfont
\@snu@school@ko\\
\vspace{5mm}\nointerlineskip
\fontsize{14pt}{16pt}\selectfont
\@snu@department@ko\\
\vspace{5mm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
\@authoralt
\else
\fontsize{14pt}{14pt}\selectfont
\@snu@department@en\\
\@snu@school@en\\
\@snu@school@ensub
\fi
\fi
}
%\end{minipage}
%% 여백 원래대로
\newpage
\addtolength{\textwidth}{-10mm}
\addtolength{\oddsidemargin}{5mm}
\addtolength{\evensidemargin}{5mm}
\if@restonecol \twocolumn \fi
%% 참고사항
%% center enviornment를 사용하면 하단 여백이 안 맞음.
%% 여백 설정이 조금만 어긋나면 페이지가 인쇄되지 않음.
%% minipage와 parbox 중 무엇이 더 나은지 테스트 중.
}
%% 인준지
%% 인준지 하단 여백 2 cm (15 mm 작음)
\newlength{\@snu@approvaltextheight}
\setlength{\@snu@approvaltextheight}{\textheight}
%\addtolength{\@snu@approvaltextheight}{15mm}
\addtolength{\@snu@approvaltextheight}{10mm} % modified at version 0.99
%% underline length
\newlength{\committeenameunderlinelength}
\setlength{\committeenameunderlinelength}{7cm}
\newlength{\@snu@underlinetmp}
\newlength{\@snu@underlinetmpb}
\newcommand{\committeestyle}[1]{%
\setlength{\@snu@underlinetmp}{\committeenameunderlinelength}%
\settowidth{\@snu@underlinetmpb}{#1}%
\addtolength{\@snu@underlinetmp}{-\@snu@underlinetmpb}%
\divide \@snu@underlinetmp by 2 %
\underline{\hspace{\@snu@underlinetmp}#1\hspace{\@snu@underlinetmp}}%
}
%\newcommand{\@snu@nameline}{\underline{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}
\newcommand{\makeapproval}{%
\cleardoublepage
\if@twocolumn \@restonecoltrue
\else \@restonecolfalse \fi
\onecolumn
%\enlargethispage{15mm}
\enlargethispage{10mm} % modified at version 0.99
\thispagestyle{empty}
\noindent
% \begin{minipage}[][\textheight][s]{\textwidth}
\parbox[][\@snu@approvaltextheight][s]{\textwidth}{%
\centering
\normalfont
\linespread{1.3}\selectfont
\if@snu@under % 학부
\fontsize{21pt}{21pt}\selectfont
\@title\\
\vspace{1cm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
지도교수~\@advisoralt\\
\vspace{1cm}\nointerlineskip
이~논문을~공학~학사학위~논문으로~제출함\\
%\@snu@submissiondate\\
\vspace{5cm}\nointerlineskip
\@snu@school@ko\\
\vspace{1cm}\nointerlineskip
\@snu@department@ko\\
\vspace{0.5cm}\nointerlineskip
\@authoralt\\
\vfill
\@author~의~학사~학위~논문을~인준함\\
\vspace{1cm}\nointerlineskip
\@snu@approvaldate\\
\vspace{1cm}\nointerlineskip
지~도~교~수~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(인)
\else % 대학원
\if@snu@ko
\fontsize{22pt}{22pt}\selectfont
\else
\fontsize{16pt}{16pt}\selectfont
\fi
\@title\\
\vspace{1cm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
\@titlealt\\
\vspace{1cm}\nointerlineskip
\fontsize{14pt}{14pt}\selectfont
지도교수 \@advisoralt\\
\vspace{5mm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
이 논문을 %
\@snu@academic@ko\@snu@msphd{석사}{박사} %
학위논문으로 제출함\\
\vspace{5mm}\nointerlineskip
\fontsize{14pt}{14pt}\selectfont
\@snu@submissiondate\\
\vspace{1cm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
\@snu@school@ko\\
\vspace{5mm}\nointerlineskip
\fontsize{14pt}{14pt}\selectfont
\@snu@department@ko\\
\vspace{5mm}\nointerlineskip
\fontsize{16pt}{16pt}\selectfont
\@authoralt\\
\vspace{1cm}\nointerlineskip
\@author의 %
\@snu@academic@ko\@snu@msphd{석사}{박사} %
학위논문을 인준함\\
\vspace{5mm}\nointerlineskip
\fontsize{14pt}{14pt}\selectfont
\@snu@approvaldate\\
\vfill
\begin{tabular}[b]{cc}
위 \hfill 원 \hfill 장 & \committeestyle{\@snu@committeememberA} \\
부위원장 & \committeestyle{\@snu@committeememberB} \\
위 \hfill 원 & \committeestyle{\@snu@committeememberC} \\
\if@snu@ms\else
위 \hfill 원 & \committeestyle{\@snu@committeememberD} \\
위 \hfill 원 & \committeestyle{\@snu@committeememberE} \\
\fi
\end{tabular}
\fi
}
% \end{minipage}
\newpage
\if@restonecol \twocolumn \fi
%% 참고사항
%% center enviornment를 사용하면 하단 여백이 안 맞음.
%% 여백 설정이 조금만 어긋나면 페이지가 인쇄되지 않음.
%% minipage와 parbox 중 무엇이 더 나은지 테스트 중.
}
%% 동의서
\newcommand{\cl}[1]{\textcircled{\scriptsize #1}}
\newcommand{\makeagreement}{%
\let\oldtheenumii\theenumii
\let\oldlabelenumii\labelenumii
\renewcommand{\theenumii}{\arabic{enumii}}
\renewcommand{\labelenumii}{\cl\theenumii}
%
\cleardoublepage
\if@twocolumn \@restonecoltrue
\else \@restonecolfalse \fi
\onecolumn
\enlargethispage{15mm}
\thispagestyle{empty}
%\setlength{\parskip}{0pt}
\begin{center}
\fontsize{15}{15}\selectfont
{\bfseries 학위논문 원문제공 서비스에 대한 동의서}\par
\end{center}
\fontsize{12}{12}\selectfont
본인의 학위논문에 대하여 서울대학교가 아래와 같이 학위논문 저작물을
제공하는 것에 동의합니다.
\fontsize{11}{11}\selectfont
\begin{enumerate}
\item 동의사항
\begin{enumerate}
\item 본인의 논문을 보존이나 인터넷 등을 통한 온라인 서비스 목적으로
복제할 경우 저작물의 내용을 변경하지 않는 범위 내에서의 복제를 허용합니다.
\item 본인의 논문을 디지털화하여 인터넷 등 정보통신망을 통한 논문의
일부 또는 전부의 복제$\cdot$배포 및 전송 시 무료로 제공하는 것에 동의합니다.
\end{enumerate}
\item 개인(저작자)의 의무\par
본 논문의 저작권을 타인에게 양도하거나 또는 출판을 허락하는 등
동의 내용을 변경하고자 할 때는 소속대학(원)에 공개의 유보 또는 해지를 즉시 통보하겠습니다.
\item 서울대학교의 의무
\begin{enumerate}
\item 서울대학교는 본 논문을 외부에 제공할 경우 저작권 보호장치(DRM)를 사용하여야 합니다.
\item 서울대학교는 본 논문에 대한 공개의 유보나 해지 신청 시 즉시 처리해야 합니다.
\end{enumerate}
\end{enumerate}
\null\vfill
\fontsize{12}{12}\selectfont
\begin{flushleft}
논문 제목 : \@title \par
\end{flushleft}
\fontsize{11}{11}\selectfont
\begin{flushright}
\vspace{11pt}
$\vbox{
\halign{
## & : ## \hfill \cr
학\hfill위\hfill구\hfill분 & {\bfseries {\if@snu@ms 석사 \else 박사 \fi}}\cr
학\hfill과 & {\@snu@department@ko}\cr
학\hfill번 & {\@snu@studentnumber}\cr
연\hfill락\hfill처 & {\@snu@phonenumber}\cr
저\hfill작\hfill자 & {\@author \hspace*{20mm}\small{(인)}}\cr
}}$
\end{flushright}
\begin{center}
제~출~일~:~\@snu@agreementdate \par
\fontsize{13}{13}\selectfont
{\bfseries 서울대학교총장 귀하}
\end{center}
%
\newpage
\if@restonecol \twocolumn \fi
%
\let\theenumii\oldtheenumii
\let\labelenumii\oldlabelenumii
}
%%\newcommand{\@lastPage}{\pageref{paperlastpagelabel}}
%% keyword
\newcommand{\@snu@keyword}{}
\newcommand{\keyword}[1]{\renewcommand{\@snu@keyword}{#1}}
\def\phantomsection{}
%% abstract
\renewenvironment{abstract}{%
\if@snu@ko
\chapter*{\abstractname}
\@mkboth{\MakeUppercase\abstractname}%
{\MakeUppercase\abstractname}%
\addcontentsline{toc}{chapter}{\abstractname}%
\else
\if@openright \cleardoublepage
\else \clearpage \fi
\@afterindentfalse
\phantomsection
\addcontentsline{toc}{chapter}{\abstractname}
{%
\centering
\normalfont
\linespread{1.0}
\fontsize{22pt}{22pt}\selectfont
\textbf{\abstractname}\par\nobreak
}
\vspace{2cm}
\@afterheading
\fi
}{%
\vfill\vspace*{\fill}
% better than "\vfill", "\null\vfill", \vspace*{0pt}\vfill", etc.
\noindent
{\bfseries \keywordname}:~\@snu@keyword
\if@snu@under\else
\\
\noindent
{\bfseries \studentnumbername}:~\@snu@studentnumber
\fi
\newpage
}
%% keywordalt
\newcommand{\@snu@keywordalt}{}
\newcommand{\keywordalt}[1]{\renewcommand{\@snu@keywordalt}{#1}}
%% abstractalt
\newenvironment{abstractalt}%
{%
\if@snu@ko
\chapter*{\abstractnamealt}
\@mkboth{\MakeUppercase\abstractnamealt}%
{\MakeUppercase\abstractnamealt}%
\addcontentsline{toc}{chapter}{\abstractnamealt}%
\else
\if@openright \cleardoublepage
\else \clearpage \fi
\@afterindentfalse
\phantomsection
\addcontentsline{toc}{chapter}{\abstractnamealt}
{%
\centering
\normalfont
\linespread{1.0}
\fontsize{16pt}{16pt}\selectfont
\textbf{\abstractnamealt}\par\nobreak
}
\vspace{2cm}
\@afterheading
\fi
}{%
\vfill\vspace*{\fill}
% better than "\vfill", "\null\vfill", \vspace*{0pt}\vfill", etc.
\noindent
{\bfseries \keywordnamealt}:~\@snu@keywordalt
\if@snu@under\else
\\
\noindent
{\bfseries \studentnumbernamealt}:~\@snu@studentnumber
\fi
\newpage
}
%% 감사의 글
\newcommand{\acknowledgement}{%
\if@snu@ko
\if@openright \cleardoublepage
\else \clearpage \fi
\@afterindentfalse
\phantomsection
\addcontentsline{toc}{chapter}{\acknowledgementname}
{%
\centering
\normalfont
\linespread{1.0}
\fontsize{16pt}{16pt}\selectfont
\textbf{\acknowledgementname}\par\nobreak
}
\vspace{2cm}
\@afterheading
\else
\chapter*{\acknowledgementname}
\@mkboth{\MakeUppercase\acknowledgementname}%
{\MakeUppercase\acknowledgementname}%
\addcontentsline{toc}{chapter}{\acknowledgementname}%
\fi
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 캡션 스타일
%% 캡션에서 colon(:)을 제거해야 한다.
%% report 클래스에서 베끼고 :만 지움.
%% 정렬은 알아서 됨.
%% TODO
%% caption의 마지막에 마침표가 있는지 체크
%% 표의 캡션에는 마침표가 없어야 하고
%% 그림의 캡션에는 있어야 함.
%% (반대던가??)
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{#1 #2}%
\ifdim \wd\@tempboxa >\hsize
#1 #2\par
\else
\global \@minipagefalse
\hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
% 한글 논문과 영문 논문의 서식이 다르다.
% 귀찮지만 따로 만들어야 한다.
\if@snu@ko
%% report 클래스에서 약간 고침
%% chapter* style: style of toc, lof, lot, etc.
\def\@makeschapterhead#1{%
{%
\centering
\normalfont
\interlinepenalty\@M
\linespread{1.0}
\fontsize{22pt}{22pt}\selectfont
\bfseries #1\par\nobreak
\vspace{2cm}
}}
%% report 클래스에서 약간 고침
%% chapter style
\def\@makechapterhead#1{%
{%
\centering
\normalfont
\linespread{1.0}\selectfont
\ifnum \c@secnumdepth >\m@ne
\fontsize{16pt}{16pt}\selectfont
\bfseries \snuchappre\space\thechapter\snuchappost\space
\fi
\interlinepenalty\@M
\fontsize{16pt}{16pt}\selectfont
\bfseries #1\par\nobreak
\vspace{2cm}
}}
\else
%% report 클래스에서 약간 고침
%% chapter* style: style of toc, lof, lot, etc.
\def\@makeschapterhead#1{%
\vspace*{3cm}% 챕터 숫자 위의 공간
\vspace{-\f@baselineskip} % 정확한 조절을 위해 필요
{%
\parindent \z@ \raggedright
\normalfont
\interlinepenalty\@M
\linespread{1.0}
\fontsize{22pt}{22pt}\selectfont
\bfseries #1\par\nobreak
\vspace{2cm}
}}
%% report 클래스에서 약간 고침
%% chapter style
\def\@makechapterhead#1{%
\vspace*{3cm}% 챕터 숫자 위의 공간
\vspace{-\f@baselineskip} % 정확한 조절을 위해 필요
{%
\parindent \z@ \raggedright \normalfont
\linespread{1.0}\selectfont
\ifnum \c@secnumdepth >\m@ne
\fontsize{20pt}{20pt}\selectfont
\bfseries \@chapapp\space \thechapter
\par\nobreak
\vspace{2cm}
\fi
\interlinepenalty\@M
\fontsize{22pt}{22pt}\selectfont
\bfseries #1\par\nobreak
\vspace{2cm}
}}
\fi
% section style
\renewcommand\section{%
\@startsection {section}{1}{\z@}%
{-3.5ex \@plus -1ex \@minus -.2ex}%
{2.3ex \@plus.2ex}%
{\normalfont\fontsize{14pt}{14pt}\selectfont\bfseries}}
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\fontsize{12pt}{12pt}\selectfont\bfseries}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% template과 직접적인 관련이 없는 설정으로 이것저것 대신 해준다.
\if@snu@easy
% 이것은 KLDP에서 가져왔다.
% http://faq.ktug.or.kr/faq/pdflatex%B0%FAlatex%B5%BF%BD%C3%BB%E7%BF%EB
\ifpdf
\input glyphtounicode\pdfgentounicode=1 %type 1 font사용시
% \usepackage{dhucs-cmap} % true type 글꼴 사용시
% \pdfmapfile{+unttf-pdftex-dhucs.map} % truetype글꼴사용시
\usepackage[pdftex,unicode]{hyperref}
\usepackage[pdftex]{graphicx}
\usepackage[pdftex,svgnames]{xcolor}
\else
\usepackage[dvipdfmx,unicode]{hyperref}
\usepackage[dvipdfmx]{graphicx}
\usepackage[dvipdfmx,svgnames]{xcolor}
\fi
%KC2008의 공식예제인 first.tex와 ko.TEX v0.1.0 사용 설명서 참조
%hangul-ucs 4.0 이전 버전에서는 dhucs-ucshyper라는 부가 패키지가 제공되었으나,
%hyperref의 기능 향상에 따라 불필요해졌으므로
%ko.TEX에서는 이를 제공하지 않는다.
\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Author: zeta709 ([email protected])
%% https://github.com/zeta709/snuthesis
%%
%% # Version history
%% ## 2017
%% * 610a07b, 2017-07-22: 학문 이름을 매크로로 변경
%% * 01a6678, 2017-07-22: 클래스 이름 변경 (snueethesis.cls -> snuthesis.cls)
%% * 3066490, 2017-07-22: 대학과 학부 이름을 매크로로 변경
%% * 66b5ef0, 2017-07-20: 목차의 부록 이름 버그 수정
%% ## 2012
%% * 91fb8fa, 2012-02-27: 인준지와 동의서 약간 수정
%% * 4cde5a6, 2012-01-19: 표지와 인준지의 하단 여백을 5mm 늘림
%% * 75d2641, 2012-01-18: 동의서 양식 추가
%% ## 2011
%% * bd9e972, 2012-01-18: 4x6 옵션 추가
%% * cb304c2, 2011-12-14: 인준지 양식 수정
%% * 1e7a8b7, 2011-11-27: git에 커밋된 첫 버전
%% * 0000000, 2009-12-17: git을 사용하기 전 초기 버전
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 역사를 보존하는 의미에서 오래된 저작 정보를 남겨둔다.
%% 코드는 전부 뜯어 고쳐서 원래의 코드는 별로 남아 있지 않다.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% jdj의 저작 정보는 다음과 같다.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% SNU EE 학사 논문 서식
%% KAIST것을 복사해다 조금 고쳐서 만듦.
%% 구할 수 있는 유일한 것이 KAIST것이었기 때문.
%% KC2007에서 컴파일 되는 것을 확인함.
%% ... modified by jdj, to ko.tex
%% ... stripped down redundent codes
%% ... modified margins.
%%
%% @version 0.1