Sejong University MS Thesis (unofficial)
Author
hlgaza
Last Updated
2 years ago
License
Creative Commons CC BY 4.0
Abstract
This is an UNOFFICIAL MS Thesis Template for Sejong University.
\documentclass{sju}
\title{Thesis Title}
\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}
\begin{engabstract}
Please put the abstract here.
\end{engabstract}
\begin{engkeywords}
Sejong University, Template, Masters, Thesis, Unofficial, Graduate School
\end{engkeywords}
%%%%%%%%%%%%%%%%%%%%%
% 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{Sample Figure}
\begin{figure}[h]
\centering
\includegraphics{foo.png}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\subsection{Sample Table}
\begin{table}[h]
\centering
\begin{tabular}{c|c}
Row 1 & Yes \\
Row 2 & No
\end{tabular}
\caption{Caption}
\label{tab:my_label}
\end{table}
\chapter{REFERENCE}
This is a sample citation \cite{sample}.
%%%%%%%%%%%%%%
% References %
%%%%%%%%%%%%%%
% * Refer to https://sejong-kr.libguides.com/c.php?g=930661&p=6725457
% for the appropriate citation style of your field.
\bibliographystyle{IEEEtran}
\addcontentsline{toc}{chapter}{BIBLIOGRAPHY}
\bibliography{IEEEabrv,references.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% APPENDIX/INDEX (optional) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{APPENDIX}
\addcontentsline{toc}{chapter}{APPENDIX}
%%%%%%%%%%%%%%%%%%%
% Korean Abstract %
%%%%%%%%%%%%%%%%%%%
\begin{korabstract}
국문초록
\end{korabstract}
\begin{korkeywords}
Sejong University, Template, Masters, Thesis, Unofficial, Graduate School
\end{korkeywords}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Acknowledgements (optional) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{ACKNOWLEDGEMENTS}
\addcontentsline{toc}{chapter}{ACKNOWLEDGEMENTS}
\end{document}