
Sejong University MS Thesis (unofficial)
作者:
hlgaza
最近上传:
5 天前
许可:
Creative Commons CC BY 4.0
摘要:
This is an UNOFFICIAL MS Thesis Template for Sejong University.

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\documentclass{sju}
\title{Thesis Title} % If the title is too long, you might need to adjust the SJU class file
\subtitle{Subtitle}
\author{Everdeen Katniss}
\date{February 2023}
\department{Department of XXX}
\kordepartment{소프트웨어학과}
\major{Software}
\adviser{Prof. Hong Gildong}
\committeechair{Prof. AAA}
\committeemember{Prof. BBB}
\begin{document}
\engkeywords{Sejong University, Template, Masters, Thesis, Unofficial, Graduate School} % Keywords must not be more than six items
\begin{engabstract}
Please put your abstract here. The content must be within 2 to 5 pages long.
\end{engabstract}
%%%%%%%%%%%%%%%%%%%%%
% Table of Contents %
%%%%%%%%%%%%%%%%%%%%%
\makecontents
%%%%%%%%%%%%
% Chapters %
%%%%%%%%%%%%
\pagenumbering{arabic}
\chapter{INTRODUCTION}
\section{Overview}
This is a sample document to guide you in the MS thesis format at
Sejong University. With most articles being written in Latex, I wonder
why there is no template available. So, I created one. You can use this
as a template and change it however you like. Note that there are three
different examples shown at \url{https://sejong-kr.libguides.com/
c.php?g=930661&p=6770589} currently.
\subsection{Printing}
Although the university required 18.5x25.5cm paper size, some print shops expected an A4 size.
If this happens, you can change sju.cls:6-7 to \\
\verb|\RequirePackage{geometry}| \\
\verb|\geometry{a4paper,top=5.7cm, bottom=4.2cm, left=2.5cm, right=5.0cm}|
\subsection{Sample Figure}
\begin{figure}[ht]
\centering
\includegraphics{foo.png}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\subsubsection{A Sample Subsubsection}
The subsubsection is not in bold.
\subsection{Sample Table}
\begin{table}[ht]
\centering
\begin{tabular}{c|c}
Row 1 & Yes \\
Row 2 & No
\end{tabular}
\caption{Caption}
\label{tab:my_label}
\end{table}
\chapter{REFERENCE SAMPLE}
This is a sample citation using IEEE format \cite{sample}.
%%%%%%%%%%%%%%
% References %
%%%%%%%%%%%%%%
% * Refer to https://sejong-kr.libguides.com/c.php?g=930661&p=6725457
% for the appropriate citation style of your field.
\addcontentsline{toc}{chapter}{BIBLIOGRAPHY}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,references.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% APPENDIX/INDEX (optional) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{APPENDIX}
\addcontentsline{toc}{chapter}{APPENDIX}
%%%%%%%%%%%%%%%%%%%
% Korean Abstract %
%%%%%%%%%%%%%%%%%%%
\korkeywords{세종대학교, 템플릿, 석사, 학위논문, 비공식, 대학교}
\begin{korabstract}
국문초록
\end{korabstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Acknowledgements (optional) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{ACKNOWLEDGEMENTS}
\addcontentsline{toc}{chapter}{ACKNOWLEDGEMENTS}
\end{document}