% ------------------------------------------------------------
% X-ICT2S3 Proceedings Template Class — xict2s3.cls
% Created by: Yojiro Harie (張江洋次朗) University of Yamanashi
% Copyright (c) 2025 Yojiro Harie
% License: CC BY 4.0 — https://creativecommons.org/licenses/by/4.0/
% SPDX-License-Identifier: CC-BY-4.0
% ------------------------------------------------------------
\documentclass[overleaf]{xict2s3}% overleaf実行時はこちら
%\documentclass{xict2s3} %ローカル実行時にはこちら
\setlength{\TitleJBelow}{1mm} %タイトル下の幅の調整
\setlength{\TitleEBelow}{1mm} %タイトル下の幅の調整
% 事前に(cls側に入れてもOK)
\usepackage{graphicx}
\usepackage{caption} % または \usepackage{capt-of}
\usepackage{url}
\usepackage{listings}
\begin{document}
% ===== 基本セクション(Wordの基本セクションに相当)=====
\begin{basicsection}
% 日本語タイトル・氏名・所属・概要
\jtitle{X-ICT2S3 \LaTeX 日本語Template}
\jauthor{黒須 太郎\textsuperscript{1)}, 黒須 花子\textsuperscript{2)}}
\affiliation{1) 黒須大学クロスマネージメント学部\\
2) 黒須大学大学院総合クロス学科}
\abstractj{このファイルは,X-ICT2S3 研究会の予稿テンプレートです.300字以内で記載してください.}
% 英語タイトル・氏名・所属・概要
\etitle{X-ICT2S3 \LaTeX \ Japanese Template}
\eauthor{Taro Kurosu\textsuperscript{1)}, Hanako Kurosu\textsuperscript{2)}}
\affiliation{1) Department of Cross Management, Kurosu University\\
2) Department of Interdisciplinary Cross Management, Graduate School, Kurosu University}
\abstracte{This is an ``X-ICT2S3'' template. Please write within 100 words.}
\end{basicsection}
% ===== 本文(A4 2段:21字×40行 目安)=====
\begin{twocoltext}
\section{はじめに}
これは本文です.句読点は全角の「,」「.」を推奨します.
見出しは章が中央,節が左(+3.7mm)で,番号は 1. / 1.1 の形式です.
原稿作成目安として,A4判2段組み21字×40行×2段程度としており,ページの余白(マージン)は,上15mm下25mm,左右各20mm程度としております.
詳細については,同梱されているReadme.txtをお読みください.
\section{Overleafでの使用について}
Overleafで使用する際は,XeLaTexにコンパイルを切り替えた上で,.texファイルにてdocumentclassのオプションを``overleaf''として指定してください.
\begin{lstlisting}
\documentclass[overleaf]{xict2s3}
\end{lstlisting}
ローカルも同様に,XeLaTexでのコンパイルを行っていただき,フォントの都合上,documentclassをオプションなしで以下のように設定してください.
\begin{lstlisting}
\documentclass{xict2s3}
\end{lstlisting}
Overleaf上のテンプレートとして次の参考リンクを貼付いします.\url{https://ja.overleaf.com/read/wsqkhxrskgry#61aa5b}
\subsection{節の例}
このようにHeading2相当で節番号が出力されます.
\section{図表と参考文献}
図\ref{fig:ex1}や表\ref{tab:ex2}のように,図や表もcaptionof等を使用することで挿入できます.
\begin{center}
\includegraphics[width=0.3 \textwidth]{ex1.png}
\captionof{figure}{A descriptive caption for your figure.}
\label{fig:ex1}
\end{center}
% --- 2段環境(=multicols)の中で ---
\begin{center}
\captionof{table}{An example of a table description.}\label{tab:ex2}
\begin{tabular}{c|c|c}
\hline
項目1 & 項目2 & 項目3 \\ \hline
項目1 & 項目2 & 項目3 \\
項目1 & 項目2 & 項目3 \\ \hline
\end{tabular}
\end{center}
文献引用の例 \cite{sample}.
% ---- 参考文献(= thebibliography を 2段のまま出力)----
\bibliographystyle{unsrt}
\begin{thebibliography}{9}
\bibitem{sample}
T. Kurosu, ``History of Cross-Sectoral Information Exchange in the ICT Fields Towards Sustainable and Smart Society,''
X-ICT 2S3 2024 Summer, pp.\,20--23, 2024.
\end{thebibliography}
\end{twocoltext}
\end{document}