Waseda Course Report Template
Author
XIE, Yuhao
Last Updated
2 years ago
License
Creative Commons CC BY 4.0
Abstract
A general template for courses at IPS, Waseda University based on the IEEE Tran. style.
%%----------------------------------------------------------
%% report_temp.tex
%% v1.0
%% 2022/10/28
%% by XIE Yuhao, e-mail: yuhaox@akane.waseda.jp
%%----------------------------------------------------------
\documentclass{wsdcr}
\title{Waseda Course Report Template}
\author{XXX, XXXXX (Student ID: XXXXXXXX-X)}
\affil{\textit{XXXXXX Laboratory}\\
\textit{Graduate School of Information, Production and Systems, Waseda University}\\
\textit{Fukuoka, Japan}\\
E-mail: XXXXX@XXXXX.waseda.jp}
\date{28\textsuperscript{th} October, 2022}
\begin{document}
\maketitle
\section{Section}
\lettrine{D}{ropped} caps at the start of the first paragraph. Make sure the text you put in the first paragraph exceeds two lines, otherwise the dropped caps will not look as good as intended.
Indent begins on second paragraph. Dummy text: \lipsum[1]
\subsection{subsection}
Dummy text: \lipsum[1]
\subsubsection{subsubsection}
Dummy text: \lipsum[1]
\section{Floats}
\subsection{Figures and Minipages}
An example of a figure is shown in Figure \ref{fig:example}. The recommended width of the figure is $0.9\times$\textbackslash linewidth, and the recommended width:height aspect ratio is $1.41:1$ (i.e. A4 paper)
Additionally, one can create a minipage for extra information like biography as shown in the following:
\footnotetext[1]{acquired from the official website of IPS at\\https://www.waseda.jp/fsci/gips/en/about/overview-2/}
\begin{figure}[t!]
\centering
\includegraphics[width=.9\linewidth]{logo_gips_unit.png}
\caption{The logo of IPS, Waseda University.}
\label{fig:example}
\end{figure}
\begin{figure}[b!]
\fcolorbox{wsdred}{wsdgrey}{
%% first argument is the frame color
%% second argument is the background color
\begin{minipage}{.95\linewidth}
\color{white}
%% the title of the minipage
\begin{center}
\fontsize{10}{12}\fontfamily{phv}\fontshape{sc}\selectfont
\textbf{About the School}
\end{center}
\begin{wrapfigure}{r}{.3\linewidth}
\includegraphics[width=\linewidth]{logo_gips_unit.png}
\end{wrapfigure}
\textbf{Waseda University Graduate School of Information, Production and Systems (IPS)} is a graduate school that has no corresponding undergraduate department established within the Kitakyushu Science and Research Park area in 2003 as the base for Waseda University to expand its presence in Asia. With three fields of study, including Information Architecture, Production System, and Integrated Systems, IPS undertakes academic research in the technological fields that society currently requires, and strives to attain a sustainable society through the use of technology. \footnotemark[1].
\end{minipage}
}
\end{figure}
\subsection{Tables}
Creating tables is the same as any other latex documents, as shown in Table \ref{tab:example}.
\begin{table}[t!]
\centering
\begin{tabular}{ccc}
\hline
header1 & header2 & header 3\\
\hline
data1 & data2 & data3\\
data4 & data5 & data6
\end{tabular}
\caption{An example of a floating table.}
\label{tab:example}
\end{table}
\section{Equations}
Just normally input your equations as either inline one: $E=h\frac{\lambda}{c}$ or with equation environment (equation* to remove numbering):
\begin{equation}
\left\{
\begin{aligned}
&\oiint_{\partial\Omega}{\mathbf{E}\cdot d\mathbf{S}}=\frac 1{\varepsilon_0}\iiint_\Omega{\rho dV}\\
&\oiint_{\partial\Omega}{\mathbf{B}\cdot d\mathbf{S}}=0\\
&\oint_{\partial\Sigma}{\mathbf{E}\cdot d\boldsymbol{l}}=-\frac d{dt} \iint_\Sigma{{\mathbf{B}\cdot d\mathbf{S}}}\\
&\oint_{\partial\Sigma}{\mathbf{B}\cdot d\boldsymbol{l}}=\mu_0 \left(\iint_\Sigma{{\mathbf{J}\cdot d\mathbf{S}}}+\varepsilon_0\frac d{dt} \iint_\Sigma{{\mathbf{E}\cdot d\mathbf{S}}}\right)\cite{Maxwell1865}
\end{aligned}
\right.
\end{equation}
\appendices
\section{}
Appendix one text goes here.
% you can choose not to have a title for an appendix
% if you want by leaving the argument blank
\section{}
Appendix two text goes here.
% use section* for acknowledgment
\section*{Acknowledgment}
The authors would like to thank...
\bibliographystyle{IEEEtran}
%% you can change the style into any other styles available, I personally love IEEEtran.
\bibliography{citations}
%% to generate references, input the name of your .bib file and cite anywhere in the document.
\end{document}