forked from zeta709/snuthesis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
document-en.tex
130 lines (100 loc) · 3.15 KB
/
document-en.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
% LaTeX 양식 샘플
\RequirePackage{fix-cm} % documentclass 이전에 넣는다.
% en : 영문 논문 작성
% ko : 국문 논문 작성
% under : 학사
% master : 석사
% phd : 박사
\documentclass[phd,en]{snuthesis}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{kotex}
\usepackage{csquotes}
% Define important paths as commands
\providecommand{\rootdir}{.}
\providecommand{\bibdir}{\rootdir/bibliography}
\providecommand{\figdir}{\rootdir/figures}
\usepackage{graphicx}
\usepackage{float}
\usepackage{subfiles}
\usepackage{lipsum} % lorem ipsum
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{\bibdir/references.bib}
%% \title : 22pt로 나오는 큰 제목
%% \title* : 16pt로 나오는 작은 제목
%% 줄바꿈이 필요할 경우 mbox로 묶어준 뒤 개행
% \mbox{불확실 상황에서의 선택 과제의 효율적인 파라미터 추정:}\\
% \mbox{기록-기반 제한을 더한 적응적 설계 최적화를 이용하여}
\title{%
Random title for SNU Department of Psychology
}
\title*{%
서울대학교 심리학과 졸업논문을 위한 무작위 제목
}
\academicko{심리학}
\academicen{Psychology}
\schoolko{서울대학교 대학원}
\schoolen{COLLEGE OF SOCIAL SCIENCE}
\departmentko{심리학과 심리학 전공}
\departmenten{DEPARTMENT OF PSYCHOLOGY}
%% 저자 이름 Author's(Your) name
\author{홍길동}
\author*{홍~길~동} % Same as \author.
%% 학번 Student number
\studentnumber{2021-12345}
%% 지도교수님 성함 Advisor's name
%% (?) Use Korean name for Korean professor.
\advisor{홍길동}
\advisor*{홍~길~동} % Insert space for Hangul name.
%% 학위 수여일 Graduation date
%% 표지에 적히는 날짜.
%% 학위 수여일이 아니라 논문 발간년도를 적어야 할 수도 있음.
\graddate{2020~년~2~월}
\graddateen{February 2020}
%% 논문 제출일 Submission date
%% (?) Use Korean date format.
\submissiondate{2019~년~12~월}
%% 논문 인준일 Approval date
%% (?) Use Korean date format.
\approvaldate{2019~년~12~월}
%% Note: 인준지의 교수님 성함은
%% 컴퓨터로 출력하지 않고, 교수님께서
%% 자필로 쓰시기도 합니다.
%% Committee members' names
\committeemembers%
{교~수~님}%
{교~수~님}%
{교~수~님}%
{교~수~님}%
{교~수~님}
%% Length of underline
%\setlength{\committeenameunderlinelength}{7cm}
% Define the local command for subfiles to print bibliography
\def\biblio{\printbibliography[title=References]}
\begin{document}
% Reset the local command for subfiles to print bibliography
\def\biblio{}
\pagenumbering{Roman}
\clearpage
\makefrontcover
\makeapproval
\cleardoublepage
\pagenumbering{roman}
% 초록 Abstract
\subfile{sections/0-abstract-en}
\tableofcontents
\clearpage\listoffigures % if any figure exists
\clearpage\listoftables % if any table exists
\cleardoublepage
\pagenumbering{arabic}
\subfile{sections/1-intro-en}
\subfile{sections/2-methods-en}
\subfile{sections/3-results-en}
\subfile{sections/4-discussion-en}
\printbibliography[title=References]
\appendix
\subfile{sections/a-simulation-en}
\subfile{sections/0-abstract-ko}
\subfile{sections/0-acknowledgement}
\end{document}