# HG changeset patch # User kiyama # Date 1707640020 -32400 # Node ID 12648d2915e9c99eb66e125ed64cb1a1c763402d # Parent 46f04e8845459bb086f53fd67167198310ad2b9e add slide fix paper diff -r 46f04e884545 -r 12648d2915e9 Paper/chapter/chatsystem.tex --- a/Paper/chapter/chatsystem.tex Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/chapter/chatsystem.tex Sun Feb 11 17:27:00 2024 +0900 @@ -55,7 +55,9 @@ Mattermostはクラウドサーバー上で運用されているが今回実装したHTTPサーバーは基幹サーバー内で運用している.MattermostからHTTPサーバーにアクセスするためにグローバルIPを紐付け公開している.学科サーバーは在学中の生徒と教員のみがアクセス可能でありシステムの情報は秘匿するべきである. その為外部からのアクセスを制限しMattermostからのみHTTPサーバーへのアクセスを許可した. -本研究で実装したスラッシュコマンドはMattermostのシステム管理チームが管理するワークスペースのチャンネルから実行可能である.Mattermostは学科に所属する全ての生徒がログインできシステム管理チームのワークスペースも制限を授けていない為全生徒がスラッシュコマンドの実行が可能である. +本研究で実装したスラッシュコマンドはMattermostのシステム管理チーム用の特定のチャンネルから実行可能である.そうする事で学生が実行したコマンドを他の学生が確認できるメリットの他に管理下にあるチャンネルからのみコマンドを受け付ける事で不審な入力をしていないかを管理者が把握しやすくなる. + +Mattermostは学科に所属する全ての生徒がログインでき,システム管理チームのワークスペースも制限を授けていない為全生徒がスラッシュコマンドの実行が可能である. しかし,学科のシステム利用者の情報はLDAPを用いて管理されており,サーバー上でシステム管理者として全ての操作を行えるのはsyskan,sudoのユーザー属性が割り振られているアカウントとなっている. スラッシュコマンドでは一部rootユーザーが実行する処理があることやシステム管理の操作に慣れていない学生には操作ミスやセキュリティの観点から制限をつけるのが適切だと判断した. その為,システム管理チームとそれ以外の利用者でスラッシュコマンド経由で実行できる操作に制限をかけた. @@ -65,7 +67,7 @@ \section{仮想環境の確認} 仮想環境を確認するコマンドは「podman」と「vm」が基準のコマンドである.それぞれで実行できるコマンドを図\ref{fig:podmancommand},\ref{fig:vmcommand}に示す. -Podman環境では主に基幹サービスが稼働している.その為,コンテナの状態やコンテナ上のサービスのログを確認するコマンドを実装した.「ps サーバー名」で選択したサーバー上で動作しているコンテナの一覧が確認できる.「logs コンテナ名 サーバー名」で選択したサーバー上のコンテナログが表示される.「inspect コンテナ名 サーバー名」で選択したサーバー上のコンテナの使用イメージ,状態,ネットワーク設定,環境変数などの情報がjson形式で確認できる. +Podman環境では主に基幹サービスが稼働している.その為,コンテナの状態やコンテナ上のサービスのログを確認するコマンドを実装した.「ps サーバー名」で図\ref{fig:podman-ps}に示すように,選択したサーバー上で動作しているコンテナの一覧が確認できる.「logs コンテナ名 サーバー名」で図\ref{fig:podman-logs}に示すように選択したサーバー上のコンテナログが表示される .「inspect コンテナ名 サーバー名」で図\ref{fig:podman-inspect}に示すように選択したサーバー上のコンテナの使用イメージ,状態,ネットワーク設定,環境変数などの情報がjson形式で確認できる. \begin{figure}[htpb] @@ -76,9 +78,34 @@ \end{center} \end{figure} -vm環境は学生の実験演習や学内外のイベント時の開発環境として使用されている.その為スラッシュコマンドでは作成されたvmの一覧と外部公開時の監査用のコマンドを実装した.「audit 作成したVM名 審査用アカウント名 vmIPアドレス」は下記の「key-gen」オプションで生成された公開鍵を登録したVMに対して自動監査を実行できる.監査項目にはアクセス制限,ssh portの変更,rootアクセス,セキュリティアップデートの項目があり,それらの設定ファイルが出力される.管理者は出力されたファイルから適切に設定されているかを確認する事で監査をおこなう. -「key-gen 審査対象のVM名 vmのIPアドレス」で自動監査で使用する公開鍵が生成されチャット上に表示される.自動審査の際,admin権限のみしか悪できないファイルを確認する必要がある為監査用のアカウントにてパスワードなしでコマンドを実行できるよう設定する必要がある. -「list サーバー名」では選択したサーバー上で稼働しているVMが表示される. +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/podman-ps.png} + \caption{/syskan podman psの実行結果.} + \label{fig:podman-ps} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/podman-logs.png} + \caption{/syskan podman logsの実行結果.} + \label{fig:podman-logs} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/podman-inspect.png} + \caption{/syskan podman inspectの実行結果.} + \label{fig:podman-inspect} + \end{center} +\end{figure} + +vm環境は学生の実験演習や学内外のイベント時の開発環境として使用されている.その為スラッシュコマンドでは作成されたvmの一覧と外部公開時の監査用のコマンドを実装した. +「audit 作成したVM名 審査用アカウント名 vmIPアドレス」は下記の「key-gen」オプションで生成された公開鍵を登録したVMに対して自動監査を実行できる.図\ref{fig:vm-audit}に示すように監査項目にはアクセス制限,ssh portの変更,rootアクセス,セキュリティアップデートの項目があり,それらの設定ファイルが出力される.管理者は出力されたファイルから適切に設定されているかを確認する事で監査をおこなう. +「key-gen 審査対象のVM名 vmのIPアドレス」では図\ref{fig:vm-keygen}に示すように自動監査で使用する公開鍵が生成されチャット上に表示される.自動審査の際,admin権限のみしか悪できないファイルを確認する必要がある為監査用のアカウントにてパスワードなしでコマンドを実行できるよう設定する必要がある. +「list サーバー名」では図\ref{fig:vm-list}に示すように選択したサーバー上で稼働しているVMが表示される. \begin{figure}[htpb] \begin{center} @@ -88,13 +115,38 @@ \end{center} \end{figure} +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/vm-audit.png} + \caption{/syskan vm auditコマンドの結果.} + \label{fig:vm-audit} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/vm-keygen.png} + \caption{/syskan vm keygenコマンドの結果.} + \label{fig:vm-keygen} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/vm-list.png} + \caption{/syskan vm listコマンドの結果.} + \label{fig:vm-list} + \end{center} +\end{figure} + + % \section{ファイルシステムの調査} % サーバーの容量確認では df を基準のコマンドする. よく確認するルート直下の容量はディレクトリの指定無しで表示できるようにする. % ceph の状態確認では ceph を基準のコマンドとする. クライアントのステータス表示によって異常がある場合はエラーメッセージの確認が可能である. \section{バックアップの確認} -図\ref{fig:backupcommand}のようにバックアップディレクトリを表示するコマンドは「backup」を標準のコマンドとする.バックアップの確認では取られているディレクトリの中でも頻繁に書き込みが行われているpodmanコンテナを管理するディレクトリ,KVMのテンプレートイメージファイルが置かれているディレクトリを表示するよう設定した. +図\ref{fig:backupcommand}のようにバックアップディレクトリを表示するコマンドは「backup」を標準のコマンドとする.バックアップの確認では取られているディレクトリの中でも頻繁に書き込みが行われているpodmanコンテナを管理するディレクトリ,KVMのテンプレートイメージファイルが置かれているディレクトリを表示するよう設定した.図\ref{fig:backupkvm-tpl},図\ref{fig:backup-podman} \begin{figure}[htpb] \begin{center} @@ -104,8 +156,42 @@ \end{center} \end{figure} -% \section{LDAPの操作} +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/backup-kvm.png} + \caption{/syskan backup kvm-tplコマンドの実行結果.} + \label{fig:backupkvm-tpl} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/backup-podman.png} + \caption{/syskan backup podmanコマンドの実行結果.} + \label{fig:backup-podman} + \end{center} +\end{figure} +\section{LDAPの操作} +図\ref{fig:ldap-help}のように学科の学生アカウントを管理しているLDAP系統の操作は「ldap」が基準のコマンドとなっている.「search 学籍番号」で図\ref{fig:ldap-search}に示すように管理されている学生の情報を確認できる. +また演習科目では基幹サーバーを操作する際に学生にサーバーの管理者権限を付与していた.しかし授業毎に権限を与えていず継続的に権限を付与していた.教員やシス管メンバーが見ている授業内であれば操作ミスに指摘できるが,個人でサーバーにアクセスし操作する可能性があった.その為一定時間権限を付与できるコマンドを実装した.「add sudoers ユーザー名 時間(分)」で指定したユーザーに指定した時間サーバーの管理者権限を付与できる. +「delete sudoers ユーザー名」で追加されたユーザーの削除が可能となっている.これらの追加・削除の処理は一般ユーザーが実行できないように認証がかかっている. + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/ldaphelp.png} + \caption{/syskan ldapコマンドの一覧.} + \label{fig:ldap-help} + \end{center} +\end{figure} + +\begin{figure}[htpb] + \begin{center} + \includegraphics[clip,width=15.0cm]{fig/ldap-search.png} + \caption{/syskan ldap searchコマンドの実行結果.} + \label{fig:ldap-search} + \end{center} +\end{figure} % \begin{quote} % \begin{itemize} diff -r 46f04e884545 -r 12648d2915e9 Paper/chapter/conclusion.tex --- a/Paper/chapter/conclusion.tex Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/chapter/conclusion.tex Sun Feb 11 17:27:00 2024 +0900 @@ -14,10 +14,18 @@ 第6章ではチャットシステムを利用したシステム管理手法について述べる.5章の取り組みと課題からチャットツールを用いたシステム管理手法を提案した.この手法では意図せずシステムに影響を与える操作をする心配がなく,権限がない学生でもシステムの状態を確認する事ができる. -本チームのように学生が主体となって教育研究用システムを構築,運用,保守する事は珍しい.2020年に構築し2024年現在まで運用したシステムは少数のメンバーによって管理されたおり人員的なリソース不足が問題視されていた.また2025年にはシステム更新がある.より良いシステムを構築する為に利用者である学生がこの取り組みに参加する事が必要である.また,学生がシステムを活用し構築することは実践教育として有用である,この機会を損失しない為にも多くの学生をシステム管理活動に参加させることが必要である. +本チームのように学生が主体となって教育研究用システムを構築,運用,保守する事は珍しい.2020年に構築し2024年現在まで運用したシステムは少数のメンバーによって管理されたおり人員的なリソース不足が問題視されていた.また2025年にはシステム更新がある.より良いシステムを構築する為に利用者である学生がこの取り組みに参加する事が必要である.また,学生がシステムを活用し構築することは実践教育として有用であり,この機会を損失しない為にも多くの学生をシステム管理活動に参加させることが必要である. この取り組みは演習科目のテーマとしてシステム管理を体験させる事で今後のシステム管理活用での人員の勧誘の参考になると考えこれまでの論文を記した. \section{今後の課題} 本研究の今後の課題について述べる. \subsection{システム管理活動} 教育研究用システムは5年に一度更新が行われており,2025年10月にシステムの更新が行われる予定である.その為現行システムの修正点や利用者の要望から新規システムを設計する必要がある.しかし今年度で学生のシステム管理メンバーの3人中2名が卒業予定であり,指導教員も2025年度で定年退職予定である.これらの事から現メンバーへのシステムの引き継ぎと新規メンバー獲得が不可欠となる. + +\subsection{演習科目の改善} +システム管理体験への興味度を確認する質問では多くの生徒が興味を持ったと回答した.しかし実際にシステム管理活動に参加する生徒はいなかった. +その為,システム管理活動の就職活動におけるメリットや実際の先輩の声などを紹介が必要と考える. + + +\subsection{スラッシュコマンドの利用} +本研究ではシステム管理体験の為のスラッシュコマンドを実装した.しかし演習実験の中ではコマンドの紹介に留まり,実際に学生に使用してもらう事や使ってみての感想を貰えなかった.その為スラッシュコマンドの対象者である学生に使ってもらい使用感を聞き修正していくことが必要である. \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 Paper/chapter/ie-system.tex --- a/Paper/chapter/ie-system.tex Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/chapter/ie-system.tex Sun Feb 11 17:27:00 2024 +0900 @@ -27,7 +27,7 @@ \caption{ディスクサーバースペック} \begin{tabular}{|c|c|} \hline CPU & Intel Xeon Silver 4208 \\ \hline - RAM & 32GB \\ \hline + RAM & 128GB \\ \hline SAS HDD & 300GB/15000rpm x 2 \\ \hline NLSAS HDD & 4TB/7200rpm x 12 \\ \hline \end{tabular} diff -r 46f04e884545 -r 12648d2915e9 Paper/chapter/technology_overview.tex --- a/Paper/chapter/technology_overview.tex Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/chapter/technology_overview.tex Sun Feb 11 17:27:00 2024 +0900 @@ -27,6 +27,7 @@ \section{Slurm} オープンソースのlinux用のクラスタ管理,ジョブスケジューリングシステム. +多数のユーザーが利用しているシステムで自動的にリソースを割り当てる. \section{GitLab} GitLab Inc.社が開発するgitリポジトリをホスティングするソフトウェア.\cite{gitlabdocumentation}セルフホスティング版とGitLab.comが運用するSaaS版が存在する. diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/backup-kvm.png Binary file Paper/fig/backup-kvm.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/backup-podman.png Binary file Paper/fig/backup-podman.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/ldap-search.png Binary file Paper/fig/ldap-search.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/ldaphelp.png Binary file Paper/fig/ldaphelp.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/podman-inspect.png Binary file Paper/fig/podman-inspect.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/podman-logs.png Binary file Paper/fig/podman-logs.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/podman-ps.png Binary file Paper/fig/podman-ps.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/vm-audit.png Binary file Paper/fig/vm-audit.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/vm-keygen.png Binary file Paper/fig/vm-keygen.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/fig/vm-list.png Binary file Paper/fig/vm-list.png has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/master_paper.aux --- a/Paper/master_paper.aux Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/master_paper.aux Sun Feb 11 17:27:00 2024 +0900 @@ -1,150 +1,1 @@ \relax -\@writefile{toc}{\contentsline {chapter}{研究関連論文業績}{ii}\protected@file@percent } -\citation{ITdemand} -\citation{J17} -\citation{firstsystem} -\citation{secondsystem} -\citation{thirdsystem} -\citation{fourthsystem} -\@writefile{toc}{\contentsline {chapter}{\numberline {第1章}学生が管理する教育研究用情報システム}{5}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {1.1}システム管理チームの構成と活動}{5}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces インストール大会の様子.}}{7}\protected@file@percent } -\newlabel{fig:install}{{1.1}{7}} -\@writefile{toc}{\contentsline {section}{\numberline {1.2}システム管理チームの情報共有}{7}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces システム管理チームで利用しているscrapbox.}}{8}\protected@file@percent } -\newlabel{fig:scrapbox}{{1.2}{8}} -\@writefile{toc}{\contentsline {section}{\numberline {1.3}論文の構成}{8}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {1.3}{\ignorespaces システム管理チームで利用しているMattermost.}}{9}\protected@file@percent } -\newlabel{fig:mattermost}{{1.3}{9}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第2章}技術概要}{11}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {2.1}仮想化}{11}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.2}ハイパーバイザ型}{11}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.3}KVM}{11}\protected@file@percent } -\citation{container} -\citation{podman} -\citation{singularity} -\citation{gitlabdocumentation} -\citation{mattermost} -\@writefile{toc}{\contentsline {section}{\numberline {2.4}コンテナ型}{12}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.5}Podman}{12}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.6}singularity}{12}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.7}Slurm}{12}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.8}GitLab}{12}\protected@file@percent } -\citation{Hugo} -\@writefile{toc}{\contentsline {section}{\numberline {2.9}Mattermost}{13}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.10}Scrapbox}{13}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.11}Psono}{13}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.12}LDAP}{13}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.13}Hugo}{13}\protected@file@percent } -\citation{vuls} -\@writefile{toc}{\contentsline {section}{\numberline {2.14}rsnapshot}{14}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.15}Vuls}{14}\protected@file@percent } -\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}現行のシステム}{15}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {3.1}オンプレミス環境}{15}\protected@file@percent } -\@writefile{lot}{\contentsline {table}{\numberline {3.1}{\ignorespaces 物理サーバースペック}}{15}\protected@file@percent } -\newlabel{tb:2U-server}{{3.1}{15}} -\@writefile{lot}{\contentsline {table}{\numberline {3.2}{\ignorespaces ディスクサーバースペック}}{15}\protected@file@percent } -\newlabel{tb:disk-server}{{3.2}{15}} -\@writefile{lot}{\contentsline {table}{\numberline {3.3}{\ignorespaces NASスペック}}{16}\protected@file@percent } -\newlabel{tb:NAS-server}{{3.3}{16}} -\@writefile{toc}{\contentsline {section}{\numberline {3.2}ネットワーク構成}{16}\protected@file@percent } -\@writefile{lot}{\contentsline {table}{\numberline {3.4}{\ignorespaces 導入したネットワーク機器一覧}}{16}\protected@file@percent } -\newlabel{tab:networkmachine}{{3.4}{16}} -\@writefile{lot}{\contentsline {table}{\numberline {3.5}{\ignorespaces 現行システムにおけるVLAN設計表}}{17}\protected@file@percent } -\newlabel{tab:networkVLAN}{{3.5}{17}} -\@writefile{toc}{\contentsline {section}{\numberline {3.3}仮想環境}{17}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3.4}基幹システム}{18}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3.5}Akatsuki}{19}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Akatsukiの画面}}{19}\protected@file@percent } -\newlabel{fig:akatsuki}{{3.1}{19}} -\@writefile{toc}{\contentsline {section}{\numberline {3.6}さくらクラウドの利用}{20}\protected@file@percent } -\citation{system} -\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}関連研究}{21}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {4.1}本研究の先行研究}{21}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {4.2}問題点}{21}\protected@file@percent } -\citation{syskan-class} -\@writefile{toc}{\contentsline {chapter}{\numberline {第5章}演習科目での取り組み}{22}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {5.1}サーバー班の取り組み}{22}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces インストール大会の資料.}}{23}\protected@file@percent } -\newlabel{fig:install-page}{{5.1}{23}} -\@writefile{toc}{\contentsline {section}{\numberline {5.2}server班}{23}\protected@file@percent } -\citation{rsnapshot.config} -\newlabel{braunrsnapshot}{{5.1}{25}} -\@writefile{lol}{\contentsline {lstlisting}{\numberline {5.1}cron.d}{25}\protected@file@percent } -\newlabel{cloudbackup}{{5.2}{25}} -\@writefile{lol}{\contentsline {lstlisting}{\numberline {5.2}クラウドサーバーのバックアップファイル一覧}{25}\protected@file@percent } -\citation{vulsctl} -\@writefile{toc}{\contentsline {section}{\numberline {5.3}security班}{26}\protected@file@percent } -\newlabel{braunrsnapshot}{{5.3}{26}} -\@writefile{lol}{\contentsline {lstlisting}{\numberline {5.3}Podman v4リポジトリ情報追加}{26}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces vulsスキャン結果.}}{27}\protected@file@percent } -\newlabel{fig:vuls-tui}{{5.2}{27}} -\@writefile{toc}{\contentsline {section}{\numberline {5.4}考察}{28}\protected@file@percent } -\@writefile{lot}{\contentsline {table}{\numberline {5.1}{演習科目でのアンケートの結果}}{28}\protected@file@percent } -\newlabel{longtablesample}{{5.1}{28}} -\@writefile{lot}{\contentsline {table}{\numberline {5.1}{演習科目でのアンケートの結果}}{29}\protected@file@percent } -\newlabel{longtablesample}{{5.1}{29}} -\gdef \LT@i {\LT@entry - {4}{458.49536pt}} -\@writefile{lot}{\contentsline {table}{\numberline {5.1}{演習科目でのアンケートの結果}}{30}\protected@file@percent } -\newlabel{longtablesample}{{5.1}{30}} -\@writefile{lot}{\contentsline {table}{\numberline {5.1}{演習科目でのアンケートの結果}}{31}\protected@file@percent } -\newlabel{longtablesample}{{5.1}{31}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第6章}メッセージングコマンドを使用した手法の提案}{33}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {6.1}システム概要}{33}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces システム構成図.}}{34}\protected@file@percent } -\newlabel{fig:chat-system}{{6.1}{34}} -\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces ユーザーとコマンドが表示される様子.}}{34}\protected@file@percent } -\newlabel{fig:syskan-command-exp}{{6.2}{34}} -\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces /syskanコマンドの一覧.}}{35}\protected@file@percent } -\newlabel{fig:helpcommand}{{6.3}{35}} -\@writefile{toc}{\contentsline {section}{\numberline {6.2}認証機能の実装}{35}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {6.3}仮想環境の確認}{36}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces /syskan podmanコマンドの一覧.}}{36}\protected@file@percent } -\newlabel{fig:podmancommand}{{6.4}{36}} -\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces /syskan vmコマンドの一覧.}}{37}\protected@file@percent } -\newlabel{fig:vmcommand}{{6.5}{37}} -\@writefile{toc}{\contentsline {section}{\numberline {6.4}バックアップの確認}{37}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {6.6}{\ignorespaces /syskan backupコマンドの一覧.}}{38}\protected@file@percent } -\newlabel{fig:backupcommand}{{6.6}{38}} -\@writefile{toc}{\contentsline {section}{\numberline {6.5}実装結果}{38}\protected@file@percent } -\@writefile{toc}{\contentsline {chapter}{\numberline {第7章}まとめ}{39}\protected@file@percent } -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {7.1}総括}{39}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {7.2}今後の課題}{40}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.1}システム管理活動}{40}\protected@file@percent } -\citation{*} -\bibdata{reference} -\@writefile{toc}{\contentsline {chapter}{謝辞}{41}\protected@file@percent } -\bibcite{ITdemand}{1} -\bibcite{J17}{2} -\bibcite{firstsystem}{3} -\bibcite{secondsystem}{4} -\bibcite{thirdsystem}{5} -\bibcite{fourthsystem}{6} -\bibcite{container}{7} -\bibcite{podman}{8} -\bibcite{singularity}{9} -\bibcite{gitlabdocumentation}{10} -\bibcite{mattermost}{11} -\bibcite{Hugo}{12} -\bibcite{vuls}{13} -\@writefile{toc}{\contentsline {chapter}{参考文献}{42}\protected@file@percent } -\bibcite{system}{14} -\bibcite{syskan-class}{15} -\bibcite{rsnapshot.config}{16} -\bibcite{vulsctl}{17} -\bibstyle{junsrt} diff -r 46f04e884545 -r 12648d2915e9 Paper/master_paper.dvi Binary file Paper/master_paper.dvi has changed diff -r 46f04e884545 -r 12648d2915e9 Paper/master_paper.fdb_latexmk --- a/Paper/master_paper.fdb_latexmk Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/master_paper.fdb_latexmk Sun Feb 11 17:27:00 2024 +0900 @@ -1,16 +1,16 @@ # Fdb version 3 ["dvipdf"] 0 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.pdf" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper" 0 - "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" 1707368418 142192 94e70891bdeec546381904d01a26287b "pdflatex" + "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" 1707639696 152684 5529502db74909cdc4d8affedc75ef8e "pdflatex" (generated) "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.pdf" -["makeindex master_paper.idx"] 1707369868 "master_paper.idx" "master_paper.ind" "master_paper" 1707369868 - "master_paper.idx" 1707368416 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex" +["makeindex master_paper.idx"] 1707639958 "master_paper.idx" "master_paper.ind" "master_paper" 1707639959 + "master_paper.idx" 1707639871 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex" (generated) "master_paper.ilg" "master_paper.ind" -["pdflatex"] 1707369868 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" "master_paper" 1707369868 +["pdflatex"] 1707639959 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" "master_paper" 1707639959 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.aux" 0 -1 0 "" - "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" 1707198149 2621 fe4586de129fc9dea2810ed516646389 "" + "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" 1707639871 2623 956d5297a43e43d9923f9fb46585b49d "" "/usr/local/texlive/2020/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 "" "/usr/local/texlive/2020/texmf-dist/fonts/tfm/public/ascmac/ascgrp.tfm" 1520635638 448 9a1f3a95c3a7e2681aa6eefcf410b7ac "" "/usr/local/texlive/2020/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" @@ -43,11 +43,11 @@ "fig/u-ryukyu-Mark.pdf" 1703317010 18686 aeab8264e22aacaa470003eeac8f42b8 "" "master_paper.aux" 0 -1 0 "pdflatex" "master_paper.ind" 0 -1 0 "makeindex master_paper.idx" - "master_paper.sty" 1707369863 13158 f3899a38284a8bc4ea50dac2d4f02bfc "" - "master_paper.tex" 1707198149 2621 fe4586de129fc9dea2810ed516646389 "" + "master_paper.sty" 1707374860 13203 0b7549a78ba012f7ef3147e89ff3c3a4 "" + "master_paper.tex" 1707639871 2623 956d5297a43e43d9923f9fb46585b49d "" (generated) + "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" + "master_paper.idx" + "master_paper.log" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.log" "master_paper.aux" - "master_paper.log" - "master_paper.idx" - "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.dvi" diff -r 46f04e884545 -r 12648d2915e9 Paper/master_paper.log --- a/Paper/master_paper.log Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/master_paper.log Sun Feb 11 17:27:00 2024 +0900 @@ -1,211 +1,552 @@ -This is e-upTeX, Version 3.14159265-p3.8.3-u1.26-191112-2.6 (utf8.uptex) (TeX Live 2020) (preloaded format=uplatex 2020.4.26) 8 FEB 2024 15:47 +This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex 2020.4.26) 11 FEB 2024 17:25 entering extended mode restricted \write18 enabled. + file:line:error style messages enabled. %&-line parsing enabled. -**master_paper -(./master_paper.tex -pLaTeX2e <2020-02-02u03>+3 (based on LaTeX2e <2020-02-02> patch level 5) -L3 programming layer <2020-03-06> -(/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls -Document Class: ujreport 2020/01/03 v1.8e-u00 Standard upLaTeX class -\c@@paper=\count166 -(/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujsize12.clo -File: ujsize12.clo 2020/01/03 v1.8e-u00 Standard upLaTeX file (size option) -LaTeX Font Info: Font shape `JT2/mc/m/n' will be -(Font) scaled to size 11.54663pt on input line 28. -LaTeX Font Info: Font shape `JY2/mc/m/n' will be -(Font) scaled to size 11.54663pt on input line 28. -) -\c@part=\count167 -\c@chapter=\count168 -\c@section=\count169 -\c@subsection=\count170 -\c@subsubsection=\count171 -\c@paragraph=\count172 -\c@subparagraph=\count173 -\c@figure=\count174 -\c@table=\count175 -\abovecaptionskip=\skip47 -\belowcaptionskip=\skip48 -\symmincho=\mathgroup4 -LaTeX Font Info: Overwriting symbol font `mincho' in version `bold' -(Font) JY2/mc/m/n --> JY2/gt/m/n on input line 705. -\toclineskip=\dimen150 -\@lnumwidth=\dimen151 -\bibindent=\dimen152 -\heisei=\count176 -) -(./master_paper.sty +**/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex +(/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex +LaTeX2e <2020-02-02> patch level 5 +L3 programming layer <2020-03-06> (/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls + +/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls:17: LaTeX Error: This file needs format `pLaTeX2e' + but this is `LaTeX2e'. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.17 \NeedsTeXFormat{pLaTeX2e} + +The current input file will not be processed further, +because it was written for some other flavor of TeX. +You're in trouble here. Try typing to proceed. +If that doesn't work, type X to quit. + +) (/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty **************************************************************** -** 平成15年度 琉球大学大学院 学位論文(修士) ****************** -** +** 平成15年度 琉球大学大学院 学位論文(修士) ******************** ** スタイルファイル(LaTeX2e) : 非公式 ******************** **************************************************************** -\c@defnum=\count177 + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:84: LaTeX Error: Command \maketitle undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.84 \renewcommand{\maketitle} + {% +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:210: LaTeX Error: Environment abstract undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.210 \renewenvironment{abstract} + {% +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:231: LaTeX Error: Command \tableofcontents undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.231 \renewcommand{\tableofcontents} + {% +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:264: LaTeX Error: Command \appendix undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.264 \renewcommand{\appendix} + {\par +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:274: LaTeX Error: Command \chapter undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.274 \renewcommand{\chapter} + {% +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:312: LaTeX Error: Command \prepartname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.312 \renewcommand{\prepartname} + {\relax} %\renewcommand{\prepartname}{第} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:313: LaTeX Error: Command \postpartname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.313 \renewcommand{\postpartname} + {部} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:314: LaTeX Error: Command \prechaptername undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.314 \renewcommand{\prechaptername} + {第}%\renewcommand{\prechaptername}{第} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:315: LaTeX Error: Command \postchaptername undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.315 \renewcommand{\postchaptername} + {章} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:316: LaTeX Error: Command \contentsname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.316 \renewcommand{\contentsname} + {目 次} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:317: LaTeX Error: Command \listfigurename undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.317 \renewcommand{\listfigurename} + {図 目 次} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:318: LaTeX Error: Command \listtablename undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.318 \renewcommand{\listtablename} + {表 目 次} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:319: LaTeX Error: Command \bibname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.319 \renewcommand{\bibname} + {参考文献} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:320: LaTeX Error: Command \indexname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.320 \renewcommand{\indexname} + {索 引} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:321: LaTeX Error: Command \figurename undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.321 \renewcommand{\figurename} + {図} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:322: LaTeX Error: Command \tablename undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.322 \renewcommand{\tablename} + {表} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:323: LaTeX Error: Command \appendixname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.323 \renewcommand{\appendixname} + {付 録} +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:324: LaTeX Error: Command \abstractname undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.324 \renewcommand{\abstractname} + {要 旨} +Try typing to proceed. +If that doesn't work, type X to quit. + +\c@defnum=\count167 + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:330: LaTeX Error: No counter 'chapter' defined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.330 \newcounter{defnum}[chapter] + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:424: LaTeX Error: Environment thebibliography undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.424 \renewenvironment{thebibliography} + [1] +Try typing to proceed. +If that doesn't work, type X to quit. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:447: LaTeX Error: Environment theindex undefined. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.447 \renewenvironment{theindex} + {% +Try typing to proceed. +If that doesn't work, type X to quit. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:469: Undefined control sequence. +l.469 \prebreakpenalty + \jis`,=10000 % , +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:469: Undefined control sequence. +l.469 \prebreakpenalty\jis + `,=10000 % , +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:469: LaTeX Error: Missing \begin{document}. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.469 \prebreakpenalty\jis` + ,=10000 % , +You're in trouble here. Try typing to proceed. +If that doesn't work, type X to quit. + +Missing character: There is no ` in font nullfont! + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:469: Package inputenc Error: Unicode character , (U+FF0C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.469 \prebreakpenalty\jis`, + =10000 % , +You may provide a definition with +\DeclareUnicodeCharacter + +Missing character: There is no = in font nullfont! +Missing character: There is no 1 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:470: Undefined control sequence. +l.470 \prebreakpenalty + \jis`.=10000 % . +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:470: Undefined control sequence. +l.470 \prebreakpenalty\jis + `.=10000 % . +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +Missing character: There is no ` in font nullfont! + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:470: Package inputenc Error: Unicode character . (U+FF0E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.470 \prebreakpenalty\jis`. + =10000 % . +You may provide a definition with +\DeclareUnicodeCharacter + +Missing character: There is no = in font nullfont! +Missing character: There is no 1 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! +Missing character: There is no 0 in font nullfont! ) (/usr/local/texlive/2020/texmf-dist/tex/latex/tools/longtable.sty Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC) -\LTleft=\skip49 -\LTright=\skip50 -\LTpre=\skip51 -\LTpost=\skip52 -\LTchunksize=\count178 -\LTcapwidth=\dimen153 -\LT@head=\box61 -\LT@firsthead=\box62 -\LT@foot=\box63 -\LT@lastfoot=\box64 -\LT@cols=\count179 -\LT@rows=\count180 -\c@LT@tables=\count181 -\c@LT@chunks=\count182 -\LT@p@ftn=\toks16 -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/ascmac.sty +\LTleft=\skip47 +\LTright=\skip48 +\LTpre=\skip49 +\LTpost=\skip50 +\LTchunksize=\count168 +\LTcapwidth=\dimen134 +\LT@head=\box45 +\LT@firsthead=\box46 +\LT@foot=\box47 +\LT@lastfoot=\box48 +\LT@cols=\count169 +\LT@rows=\count170 +\c@LT@tables=\count171 +\c@LT@chunks=\count172 +\c@table=\count173 +\LT@p@ftn=\toks15 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/ascmac.sty Package: ascmac 2020/01/15 v2.1 ascmac wrapper (community edition) - -(/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/tascmac.sty + (/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/tascmac.sty Package: tascmac 2020/01/15 v2.1 ascmac package (community edition) -\@savetbaselineshift=\dimen154 -\@saveybaselineshift=\dimen155 -\scb@x=\box65 -\scscb@x=\box66 -\@bw=\dimen156 -\@nbox=\box67 -\@nbody=\box68 -\@scw=\dimen157 -\ascmac@hoboxa=\box69 -\ascmac@hoboxb=\box70 -\@itemh=\dimen158 -\@iboxpos=\toks17 -\@iboxstr=\box71 -\@bwsp=\box72 -\@@bwsp=\box73 -\@bcal=\count183 -\shaderule=\dimen159 -)) -(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty +Package tascmac Info: Assuming pdfLaTeX, XeLaTeX or LuaLaTeX on input line 44. +\scb@x=\box49 +\scscb@x=\box50 +\@bw=\dimen135 +\@nbox=\box51 +\@nbody=\box52 +\@scw=\dimen136 +\ascmac@hoboxa=\box53 +\ascmac@hoboxb=\box54 +\@itemh=\dimen137 +\@iboxpos=\toks16 +\@iboxstr=\box55 +\@bwsp=\box56 +\@@bwsp=\box57 +\@bcal=\count174 +\shaderule=\dimen138 +)) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty + (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks18 -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty +\KV@toks@=\toks17 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty +Overfull \hbox (20.0pt too wide) in paragraph at lines 469--27 +[] + [] + Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) - (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/trig.sty Package: trig 2016/01/03 v1.10 sin cos tan (DPC) -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) Package graphics Info: Driver file: dvipdfmx.def on input line 105. - -(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/dvipdfmx.def + (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/dvipdfmx.def File: dvipdfmx.def 2017/06/24 v5.0g Graphics/color driver for dvipdfmx )) -\Gin@req@height=\dimen160 -\Gin@req@width=\dimen161 -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/here/here.sty) -(/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty +\Gin@req@height=\dimen139 +\Gin@req@width=\dimen140 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/here/here.sty) (/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count184 -\float@exts=\toks19 -\float@box=\box74 -\@float@everytoks=\toks20 -\@floatcapt=\box75 -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count185 -\lst@gtempboxa=\box76 -\lst@token=\toks21 -\lst@length=\count186 -\lst@currlwidth=\dimen162 -\lst@column=\count187 -\lst@pos=\count188 -\lst@lostspace=\dimen163 -\lst@width=\dimen164 -\lst@newlines=\count189 -\lst@lineno=\count190 -\lst@maxwidth=\dimen165 - -(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty +\c@float@type=\count175 +\float@exts=\toks18 +\float@box=\box58 +\@float@everytoks=\toks19 +\@floatcapt=\box59 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count176 +\lst@gtempboxa=\box60 +\lst@token=\toks20 +\lst@length=\count177 +\lst@currlwidth=\dimen141 +\lst@column=\count178 +\lst@pos=\count179 +\lst@lostspace=\dimen142 +\lst@width=\dimen143 +\lst@newlines=\count180 +\lst@lineno=\count181 +\abovecaptionskip=\skip51 +\belowcaptionskip=\skip52 +\lst@maxwidth=\dimen144 + (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz) -\c@lstnumber=\count191 -\lst@skipnumbers=\count192 -\lst@framebox=\box77 -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg +\c@lstnumber=\count182 +\lst@skipnumbers=\count183 +\lst@framebox=\box61 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg File: listings.cfg 2020/03/24 1.8d listings configuration )) Package: listings 2020/03/24 1.8d (Carsten Heinz) - -(/usr/local/texlive/2020/texmf-dist/tex/latex/comment/comment.sty + (/usr/local/texlive/2020/texmf-dist/tex/latex/comment/comment.sty \CommentStream=\write3 - -Excluding comment 'comment') -(/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty + Excluding comment 'comment') (/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty \Urlmuskip=\muskip16 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) (/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty + +/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty:1: LaTeX Error: This file needs format `pLaTeX2e' + but this is `LaTeX2e'. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.1 \NeedsTeXFormat{pLaTeX2e} + +The current input file will not be processed further, +because it was written for some other flavor of TeX. +You're in trouble here. Try typing to proceed. +If that doesn't work, type X to quit. + ) -(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty -Package: otf 2019/04/01 v1.7b8 psitau, u0.25 ttk -LaTeX Font Info: Redeclaring symbol font `mincho' on input line 314. -LaTeX Font Info: Overwriting symbol font `mincho' in version `normal' -(Font) JY2/mc/m/n --> JY2/hmc/m/n on input line 314. -LaTeX Font Info: Overwriting symbol font `mincho' in version `bold' -(Font) JY2/gt/m/n --> JY2/hmc/m/n on input line 314. -LaTeX Font Info: Overwriting symbol font `mincho' in version `bold' -(Font) JY2/hmc/m/n --> JY2/hmc/bx/n on input line 316. -LaTeX Font Info: Redeclaring math alphabet \mathgt on input line 317. -LaTeX Font Info: Overwriting math alphabet `\mathgt' in version `normal' -(Font) JY2/gt/m/n --> JY2/hgt/m/n on input line 317. -LaTeX Font Info: Overwriting math alphabet `\mathgt' in version `bold' -(Font) JY2/gt/m/n --> JY2/hgt/m/n on input line 317. -LaTeX Font Info: Overwriting math alphabet `\mathgt' in version `bold' -(Font) JY2/hgt/m/n --> JY2/hgt/bx/n on input line 318. - -(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf/ajmacros.sty -Package: ajmacros 2019/04/01 21:00 iNOUE Koich! -\@tempcntc=\count193 -\@tempcntd=\count194 -\@tempcnte=\count195 -\@tempcntf=\count196 -)) -(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/mlutf.sty -Package: mlutf 2004/04/17 v1.1.2 psitau, u0.25 ttk -) -(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf/mlcid.sty -Package: mlcid 2004/04/17 v1.0.2 psitau -) + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:11: LaTeX Error: Unknown option `deluxe' for package `otf'. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.11 + +The option `deluxe' was not declared in package `otf', perhaps you +misspelled its name. Try typing to proceed. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:11: LaTeX Error: Unknown option `multi' for package `otf'. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.11 + +The option `multi' was not declared in package `otf', perhaps you +misspelled its name. Try typing to proceed. + (/usr/local/texlive/2020/texmf-dist/tex/latex/base/makeidx.sty Package: makeidx 2014/09/29 v1.0m Standard LaTeX package -) -(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) -\c@tracingmulticols=\count197 -\mult@box=\box78 -\multicol@leftmargin=\dimen166 -\c@unbalance=\count198 -\c@collectmore=\count199 -\doublecol@number=\count266 -\multicoltolerance=\count267 -\multicolpretolerance=\count268 -\full@width=\dimen167 -\page@free=\dimen168 -\premulticols=\dimen169 -\postmulticols=\dimen170 +\c@tracingmulticols=\count184 +\mult@box=\box62 +\multicol@leftmargin=\dimen145 +\c@unbalance=\count185 +\c@collectmore=\count186 +\doublecol@number=\count187 +\multicoltolerance=\count188 +\multicolpretolerance=\count189 +\full@width=\dimen146 +\page@free=\dimen147 +\premulticols=\dimen148 +\postmulticols=\dimen149 \multicolsep=\skip53 \multicolbaselineskip=\skip54 -\partial@page=\box79 -\last@line=\box80 -\maxbalancingoverflow=\dimen171 -\mult@rightbox=\box81 -\mult@grightbox=\box82 -\mult@gfirstbox=\box83 -\mult@firstbox=\box84 +\partial@page=\box63 +\last@line=\box64 +\maxbalancingoverflow=\dimen150 +\mult@rightbox=\box65 +\mult@grightbox=\box66 +\mult@gfirstbox=\box67 +\mult@firstbox=\box68 +\@tempa=\box69 +\@tempa=\box70 +\@tempa=\box71 +\@tempa=\box72 +\@tempa=\box73 +\@tempa=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 \@tempa=\box85 \@tempa=\box86 \@tempa=\box87 @@ -227,61 +568,27 @@ \@tempa=\box103 \@tempa=\box104 \@tempa=\box105 -\@tempa=\box106 -\@tempa=\box107 -\@tempa=\box108 -\@tempa=\box109 -\@tempa=\box110 -\@tempa=\box111 -\@tempa=\box112 -\@tempa=\box113 -\@tempa=\box114 -\@tempa=\box115 -\@tempa=\box116 -\@tempa=\box117 -\@tempa=\box118 -\@tempa=\box119 -\@tempa=\box120 -\@tempa=\box121 -\c@minrows=\count269 -\c@columnbadness=\count270 -\c@finalcolumnbadness=\count271 -\last@try=\dimen172 -\multicolovershoot=\dimen173 -\multicolundershoot=\dimen174 -\mult@nat@firstbox=\box122 -\colbreak@box=\box123 -\mc@col@check@num=\count272 +\c@minrows=\count190 +\c@columnbadness=\count191 +\c@finalcolumnbadness=\count192 +\last@try=\dimen151 +\multicolovershoot=\dimen152 +\multicolundershoot=\dimen153 +\mult@nat@firstbox=\box106 +\colbreak@box=\box107 +\mc@col@check@num=\count193 ) \@indexfile=\write4 \openout4 = `master_paper.idx'. Writing index file master_paper.idx -(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-dvips.def -File: l3backend-dvips.def 2020-03-12 L3 backend support: dvips -\l__pdf_internal_box=\box124 -\g__pdf_backend_object_int=\count273 -\l__pdf_backend_content_box=\box125 -\l__pdf_backend_model_box=\box126 -\g__pdf_backend_annotation_int=\count274 -\g__pdf_backend_link_int=\count275 -\g__pdf_backend_link_sf_int=\count276 +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +File: l3backend-pdfmode.def 2020-03-12 L3 backend support: PDF mode +\l__kernel_color_stack_int=\count194 +\l__pdf_internal_box=\box108 ) -(./master_paper.aux - -LaTeX Warning: Label `braunrsnapshot' multiply defined. - - -LaTeX Warning: Label `longtablesample' multiply defined. - - -LaTeX Warning: Label `longtablesample' multiply defined. - - -LaTeX Warning: Label `longtablesample' multiply defined. - -) +No file master_paper.aux. \openout1 = `master_paper.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 66. @@ -298,1209 +605,6337 @@ LaTeX Font Info: ... okay on input line 66. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 66. LaTeX Font Info: ... okay on input line 66. -LaTeX Font Info: Checking defaults for JY2/mc/m/n on input line 66. -LaTeX Font Info: ... okay on input line 66. -LaTeX Font Info: Checking defaults for JT2/mc/m/n on input line 66. -LaTeX Font Info: ... okay on input line 66. -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 11.54663pt on input line 66. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 11.54663pt on input line 66. -\c@lstlisting=\count277 -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 15.39551pt on input line 68. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 15.39551pt on input line 68. - - -LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <16> not available -(Font) size <17.28> substituted on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 15.39551pt on input line 68. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 15.39551pt on input line 68. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:66: LaTeX Error: The font size command \normalsize is not defined: + there is probably something wrong with the class file. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.66 \begin{document} + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +\c@lstlisting=\count195 + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: The font size command \normalsize is not defined: + there is probably something wrong with the class file. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +[1] +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...e \thanks {\fontsize {16pt}{0pt}\bf + \thesis \\} \vskip 0.5em {... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 修 (U+4FEE) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 士 (U+58EB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 位 (U+4F4D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \ethesis } \vskip 1.5em {\... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 1.5em {\fontsize {18pt}{0pt}\bf + \mc \@title \\} \vskip 0.5... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...1.5em {\fontsize {18pt}{0pt}\bf \mc + \@title \\} \vskip 0.5em {... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character シ (U+30B7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character テ (U+30C6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 管 (U+7BA1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 理 (U+7406) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character を (U+3092) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 体 (U+4F53) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character さ (U+3055) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character せ (U+305B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 生 (U+751F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 実 (U+5B9F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character に (U+306B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 関 (U+95A2) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character す (U+3059) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 取 (U+53D6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character り (U+308A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 組 (U+7D44) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character み (U+307F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 0.5em {\fontsize {18pt}{0pt}\bf + {\@etitle }} \vskip 1.8em ... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ....8em \par {\fontsize {14pt}{0pt}\mc + \@year \\} {\fontsize {14p... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 年 (U+5E74) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 月 (U+6708) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ....0em \par {\fontsize {16pt}{0pt}\bf + \mc \@author \par } \vskip... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ... \par {\fontsize {16pt}{0pt}\bf \mc + \@author \par } \vskip 0.5... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 木 (U+6728) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 山 (U+5C71) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 瑞 (U+745E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 基 (U+57FA) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \@eauthor \par } \par \vsk... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +File: fig/u-ryukyu-Mark.pdf Graphic file (type pdf) + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ....5em \par {\fontsize {16pt}{0pt}\bf + \mc \university \\} \vskip... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ... \par {\fontsize {16pt}{0pt}\bf \mc + \university \\} \vskip 0.5... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 琉 (U+7409) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 球 (U+7403) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 大 (U+5927) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \mc \department \\} \vskip... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...0.5em {\fontsize {16pt}{0pt}\bf \mc + \department \\} \vskip 0.5... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 大 (U+5927) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 院 (U+9662) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 理 (U+7406) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 研 (U+7814) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 究 (U+7A76) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 科 (U+79D1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \mc \course } \vskip 1.8em... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence. +\makecover ...0.5em {\fontsize {16pt}{0pt}\bf \mc + \course } \vskip 1.8em \pa... +l.68 \makecover + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 専 (U+5C02) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 攻 (U+653B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 知 (U+77E5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 能 (U+80FD) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 情 (U+60C5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 報 (U+5831) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character プ (U+30D7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ロ (U+30ED) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character グ (U+30B0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ラ (U+30E9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.68 \makecover + +You may provide a definition with +\DeclareUnicodeCharacter + LaTeX Font Warning: Font shape `OT1/cmr/bx/n' in size <16> not available (Font) size <17.28> substituted on input line 68. -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 17.31995pt on input line 68. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 17.31995pt on input line 68. - -LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <18> not available -(Font) size <17.28> substituted on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 17.31995pt on input line 68. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 17.31995pt on input line 68. - -LaTeX Font Warning: Font shape `OT1/cmr/bx/n' in size <18> not available -(Font) size <17.28> substituted on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 13.47107pt on input line 68. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 13.47107pt on input line 68. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -File: fig/u-ryukyu-Mark.pdf Graphic file (type pdf) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - -[1 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: LaTeX Error: The font size command \normalsize is not defined: + there is probably something wrong with the class file. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +[2{/usr/local/texlive/2020/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...e \thanks {\fontsize {16pt}{0pt}\bf + \thesis \\} \vskip 0.5em {... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 修 (U+4FEE) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 士 (U+58EB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 位 (U+4F4D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \ethesis } \vskip 1.5em {\... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 1.5em {\fontsize {18pt}{0pt}\bf + \mc \@title \\} \vskip 0.5... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...1.5em {\fontsize {18pt}{0pt}\bf \mc + \@title \\} \vskip 0.5em {... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character シ (U+30B7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character テ (U+30C6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 管 (U+7BA1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 理 (U+7406) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character を (U+3092) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 体 (U+4F53) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character さ (U+3055) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character せ (U+305B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 生 (U+751F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 実 (U+5B9F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character に (U+306B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 関 (U+95A2) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character す (U+3059) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 取 (U+53D6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character り (U+308A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 組 (U+7D44) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character み (U+307F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {18pt}{0pt}\bf + {\@etitle }} \vskip 0.8em ... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ....8em \par {\fontsize {14pt}{0pt}\mc + \@year \\} {\fontsize {14p... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 年 (U+5E74) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 月 (U+6708) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ....8em \par {\fontsize {16pt}{0pt}\bf + \mc \@author \par } \vskip... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ... \par {\fontsize {16pt}{0pt}\bf \mc + \@author \par } \vskip 0.5... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 木 (U+6728) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 山 (U+5C71) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 瑞 (U+745E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 基 (U+57FA) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \@eauthor \par } \par \vsk... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. File: fig/u-ryukyu-Mark.pdf Graphic file (type pdf) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 13.47107pt on input line 69. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 13.47107pt on input line 69. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ....5em \par {\fontsize {16pt}{0pt}\bf + \mc \university \\} \vskip... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ... \par {\fontsize {16pt}{0pt}\bf \mc + \university \\} \vskip 0.5... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 琉 (U+7409) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 球 (U+7403) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 大 (U+5927) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \mc \department \\} \vskip... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...0.5em {\fontsize {16pt}{0pt}\bf \mc + \department \\} \vskip 0.5... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 大 (U+5927) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 院 (U+9662) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 理 (U+7406) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 研 (U+7814) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 究 (U+7A76) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 科 (U+79D1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf + \mc \course } \vskip 0.8em... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...0.5em {\fontsize {16pt}{0pt}\bf \mc + \course } \vskip 0.8em \pa... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 専 (U+5C02) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 攻 (U+653B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 知 (U+77E5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 能 (U+80FD) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 情 (U+60C5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 報 (U+5831) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character プ (U+30D7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character ロ (U+30ED) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character グ (U+30B0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character ラ (U+30E9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ....8em \par {\fontsize {14pt}{0pt}\bf + \mc \@chife \\} \vskip 0.5... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ... \par {\fontsize {14pt}{0pt}\bf \mc + \@chife \\} \vskip 0.5em {... +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 指 (U+6307) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 導 (U+5C0E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 教 (U+6559) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 員 (U+54E1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character : (U+FF1A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 教 (U+6559) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 授 (U+6388) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 和 (U+548C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 田 (U+7530) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 知 (U+77E5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Package inputenc Error: Unicode character 久 (U+4E45) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: LaTeX Error: There's no line here to end. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.69 \maketitle + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:69: Undefined control sequence. +\maketitle ...kip 0.5em {\fontsize {14pt}{0pt}\bf + \@echife \\} \end {center} +l.69 \maketitle + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:72: LaTeX Error: The font size command \normalsize is not defined: + there is probably something wrong with the class file. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.72 \newpage + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. [1] + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 題 (U+984C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 目 (U+76EE) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character シ (U+30B7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character テ (U+30C6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 管 (U+7BA1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 理 (U+7406) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character を (U+3092) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 体 (U+4F53) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character さ (U+3055) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character せ (U+305B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 生 (U+751F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 実 (U+5B9F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 験 (U+9A13) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character に (U+306B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 関 (U+95A2) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character す (U+3059) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 取 (U+53D6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character り (U+308A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 組 (U+7D44) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character み (U+307F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 氏 (U+6C0F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 名 (U+540D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 木 (U+6728) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 山 (U+5C71) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 瑞 (U+745E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 基 (U+57FA) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 本 (U+672C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character は (U+306F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 、 (U+3001) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 修 (U+4FEE) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 士 (U+58EB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 工 (U+5DE5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character の (U+306E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 位 (U+4F4D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character と (U+3068) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character し (U+3057) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character て (U+3066) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 適 (U+9069) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 切 (U+5207) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character で (U+3067) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character あ (U+3042) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character と (U+3068) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 認 (U+8A8D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character め (U+3081) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 。 (U+3002) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + LaTeX Font Info: External font `cmex10' loaded for size -(Font) <12> on input line 74. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <8> on input line 74. +(Font) <7> on input line 74. LaTeX Font Info: External font `cmex10' loaded for size -(Font) <6> on input line 74. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 7.69775pt on input line 74. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 5.77332pt on input line 74. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 74. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 11.54663pt on input line 74. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 11.54663pt on input line 74. - -Overfull \hbox (2.61108pt too wide) in paragraph at lines 74--75 -[]$[]$[] []$[]$[] +(Font) <5> on input line 74. +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Undefined control sequence. +\makecommission ....5\hsize } \begin {center} \bf + \commission \vskip 3 em \u... +l.74 \makecommission + +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 論 (U+8AD6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 文 (U+6587) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 審 (U+5BE9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 査 (U+67FB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 会 (U+4F1A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 印 (U+5370) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 主 (U+4E3B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 査 (U+67FB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 和 (U+548C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 田 (U+7530) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 知 (U+77E5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 久 (U+4E45) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 印 (U+5370) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 副 (U+526F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 査 (U+67FB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 岡 (U+5CA1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 崎 (U+5D0E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 威 (U+5A01) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 生 (U+751F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 印 (U+5370) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 副 (U+526F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 査 (U+67FB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 遠 (U+9060) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 藤 (U+85E4) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 聡 (U+8061) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 志 (U+5FD7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 印 (U+5370) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 副 (U+526F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 査 (U+67FB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 河 (U+6CB3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 野 (U+91CE) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 真 (U+771F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character 治 (U+6CBB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:74: Package inputenc Error: Unicode character   (U+3000) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.74 \makecommission + +You may provide a definition with +\DeclareUnicodeCharacter + + +Overfull \hbox (2.22221pt too wide) in paragraph at lines 74--75 +$[]$ $[]$ [] -[0] (./chapter/abstract.tex -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 23.94002pt on input line 1. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 23.94002pt on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 23.94002pt on input line 1. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 23.94002pt on input line 1. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 7. - -[1 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 7. - -) (./chapter/history.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[2 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 86. - -[3 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 88. - -(./master_paper.toc - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 2. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 6. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 22. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 29. - -[1 - - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 29. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 32. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 37. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 43. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 47. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 48. - -) -\tf@toc=\write5 -\openout5 = `master_paper.toc'. - -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 10.53629pt on input line 91. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 10.53629pt on input line 91. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 91. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 10.53629pt on input line 91. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 10.53629pt on input line 91. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 91. - -[2] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 91. - -(./master_paper.lof) -\tf@lof=\write6 -\openout6 = `master_paper.lof'. - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 94. - -[3 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 94. - -(./master_paper.lot) -\tf@lot=\write7 -\openout7 = `master_paper.lot'. - - (./chapter/introduction.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[4 - -] -第 1 章(5ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 16.62714pt on input line 16. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 16.62714pt on input line 16. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 16. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 16.62714pt on input line 16. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 16.62714pt on input line 16. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 30. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 33. - -[5 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 34. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 39. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 45. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 50. - -File: fig/install.jpg Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 63. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 63. - -[6] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 65. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 68. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 73. - -File: fig/scrapbox.png Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 89. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 92. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 92. - -[7] -File: fig/mattermost.png Graphic file (type bmp) - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 101. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 104. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 108. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 109. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 109. - -[8] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 109. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 109. - -[9] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 109. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 110. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 111. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 112. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 113. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 114. - -) (./chapter/technology_overview.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[10] -第 2 章(11ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 4. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 8. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 11. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 15. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 17. - -[11 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 18. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 23. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 28. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 31. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 36. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 39. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 39. - -[12] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 40. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 43. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 46. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 54. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 60. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 63. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 63. - -[13] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 67. - -) (./chapter/ie-system.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[14] -第 3 章(15ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 3. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 53. - -[15 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 57. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 58. - - -LaTeX Warning: Reference `tb:networkmachine' on page 16 undefined on input line - 58. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 80. - - -LaTeX Warning: Reference `tb:networkVLAN' on page 16 undefined on input line 80 -. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 125. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 125. - -[16] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 126. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 131. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 131. - -[17] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 132. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 139. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 140. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 144. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 145. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 149. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 150. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 154. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 158. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 162. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 163. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 167. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 171. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 175. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 175. - -[18] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 175. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 179. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 183. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 184. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 188. - -File: ./fig/akatsuki.png Graphic file (type bmp) -<./fig/akatsuki.png> - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 199. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 202. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 202. - -[19] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 205. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 209. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 210. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 214. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 218. - -) (./chapter/previous-research.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[20] -第 4 章(21ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 2. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 14. - -) (./chapter/syskan-class.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[21 - -] -第 5 章(22ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 10. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 23. - -[22 - -] -File: fig/install-page.png Graphic file (type bmp) - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 32. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 48. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 52. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 53. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 54. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 54. - -[23] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 57. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 61. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 62. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 66. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 70. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 77. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 81. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 85. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 89. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 96. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 96. - -[24] -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 7.69775pt on input line 97. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 131. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 131. - -[25] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 143. - -File: fig/vuls-tui.png Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 167. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 171. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 171. - -[26] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 171. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 171. - -[27] -Overfull \hbox (3.25128pt too wide) in alignment at lines 173--175 - [] - [] - - -Overfull \hbox (3.25128pt too wide) in alignment at lines 175--179 - [] - [] - - -Overfull \hbox (3.25128pt too wide) in alignment at lines 179--184 - [] - [] - - -Overfull \hbox (3.25128pt too wide) in alignment at lines 184--207 - [] - [] - - -Overfull \hbox (3.25128pt too wide) in alignment at lines 207--227 - [] - [] - - -Overfull \hbox (3.25128pt too wide) in alignment at lines 227--248 - [] - [] - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 248. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 248. - -[28] -Overfull \hbox (3.25128pt too wide) in alignment at lines 248--264 - [] - [] - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 264. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 264. - -[29] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 264. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 264. - -[30] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 276. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 276. - -[31]) (./chapter/chatsystem.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[32] -第 6 章(33ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 6. - -File: fig/chatsystem4.png Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 27. - -[33 - -] -File: fig/syskan-exp-2.png Graphic file (type bmp) - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 44. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 44. - -[34] -File: fig/helpcommand.png Graphic file (type bmp) - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 54. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 65. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 65. - -[35] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 66. - -File: fig/slash-podman.png Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 82. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 82. - -[36] -File: fig/slash-vm.png Graphic file (type bmp) - - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 96. - -File: fig/backup-help.png Graphic file (type bmp) - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 135. - -) (./chapter/conclusion.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[37] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[38] -第 7 章(39ページ) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 2. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 19. - -[39 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 20. - -LaTeX Font Info: Font shape `JT2/hmc/m/n' will be -(Font) scaled to size 13.85594pt on input line 22. -LaTeX Font Info: Font shape `JY2/hmc/m/n' will be -(Font) scaled to size 13.85594pt on input line 22. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 22. - -LaTeX Font Info: Font shape `JT2/hmc/bx/n' will be -(Font) scaled to size 13.85594pt on input line 22. -LaTeX Font Info: Font shape `JY2/hmc/bx/n' will be -(Font) scaled to size 13.85594pt on input line 22. -) (./chapter/thanks.tex - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[40] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -) (./master_paper.bbl - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -[41 - -] - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 1. - -LaTeX Font Info: Font shape `JT2/hgt/m/n' will be -(Font) scaled to size 11.54663pt on input line 42. -LaTeX Font Info: Font shape `JY2/hgt/m/n' will be -(Font) scaled to size 11.54663pt on input line 42. - -LaTeX Font Warning: Font shape `JT2/hgt/m/it' undefined -(Font) using `JT2/hgt/m/n' instead on input line 42. - - -LaTeX Font Warning: Font shape `JY2/hgt/m/it' undefined -(Font) using `JY2/hgt/m/n' instead on input line 42. - -LaTeX Font Info: Font shape `JT2/hgt/m/it' will be -(Font) scaled to size 11.54663pt on input line 43. -LaTeX Font Info: Font shape `JY2/hgt/m/it' will be -(Font) scaled to size 11.54663pt on input line 43. - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 69. - -[42 - -]) - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 128. - - -LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined -(Font) using `JY2/hmc/bx/n' instead on input line 128. - -[43] (./master_paper.aux) - -LaTeX Font Warning: Size substitutions with differences -(Font) up to 1.28pt have occurred. - - -LaTeX Font Warning: Some font shapes were not available, defaults substituted. - - -LaTeX Warning: There were undefined references. - - -LaTeX Warning: There were multiply-defined labels. - - ) + +/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:76: LaTeX Error: The font size command \normalsize is not defined: + there is probably something wrong with the class file. + +See the LaTeX manual or LaTeX Companion for explanation. +Type H for immediate help. + ... + +l.76 \newpage + +Your command was ignored. +Type I to replace it with another command, +or to continue without it. + +[0] (/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Undefined control sequence. +\chapter ...style {anotherheadings} \if@openright + \cleardoublepage \else \cl... +l.1 \chapter + *{要旨} +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Extra \else. +\chapter ... \if@openright \cleardoublepage \else + \clearpage \fi \thispagest... +l.1 \chapter + *{要旨} +I'm ignoring this; it doesn't match any \if. + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Extra \fi. +\chapter ...\cleardoublepage \else \clearpage \fi + \thispagestyle {anotherpla... +l.1 \chapter + *{要旨} +I'm ignoring this; it doesn't match any \if. + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Undefined control sequence. + \@schapter + +l.1 \chapter* + {要旨} +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Package inputenc Error: Unicode character 要 (U+8981) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.1 \chapter*{要 + 旨} +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Package inputenc Error: Unicode character 旨 (U+65E8) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.1 \chapter*{要旨 + } +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 近 (U+8FD1) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近 + 年の企業や大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 年 (U+5E74) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年 + の企業や大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の + 企業や大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 企 (U+4F01) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企 + 業や大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業 + や大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や + 大学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 大 (U+5927) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大 + 学では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 学 (U+5B66) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学 + では事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学で + は事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character は (U+306F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では + 事業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 事 (U+4E8B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では事 + 業や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では事業 + や授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では事業や + 授業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 授 (U+6388) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では事業や授 + 業、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 近年の企業や大学では事業や授業 + 、研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 、 (U+3001) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...の企業や大学では事業や授業、 + 研究などでコンピ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 研 (U+7814) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...企業や大学では事業や授業、研 + 究などでコンピュ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 究 (U+7A76) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...業や大学では事業や授業、研究 + などでコンピュー... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character な (U+306A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...や大学では事業や授業、研究な + どでコンピュータ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ど (U+3069) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...大学では事業や授業、研究など + でコンピュータ上... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...学では事業や授業、研究などで + コンピュータ上の... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character コ (U+30B3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...では事業や授業、研究などでコ + ンピュータ上のサ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ン (U+30F3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...は事業や授業、研究などでコン + ピュータ上のサー... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ピ (U+30D4) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...事業や授業、研究などでコンピ + ュータ上のサービ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ュ (U+30E5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...業や授業、研究などでコンピュ + ータ上のサービス... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...や授業、研究などでコンピュー + タ上のサービスを... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character タ (U+30BF) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...授業、研究などでコンピュータ + 上のサービスを活... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 上 (U+4E0A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...業、研究などでコンピュータ上 + のサービスを活用... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...、研究などでコンピュータ上の + サービスを活用し... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...研究などでコンピュータ上のサ + ービスを活用して... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...究などでコンピュータ上のサー + ビスを活用してい... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ビ (U+30D3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...などでコンピュータ上のサービ + スを活用している. ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...どでコンピュータ上のサービス + を活用している. こ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character を (U+3092) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...でコンピュータ上のサービスを + 活用している. これ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 活 (U+6D3B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...コンピュータ上のサービスを活 + 用している. これら... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 用 (U+7528) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ンピュータ上のサービスを活用 + している. これらサ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character し (U+3057) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ピュータ上のサービスを活用し + ている. これらサー... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character て (U+3066) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ュータ上のサービスを活用して + いる. これらサービ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character い (U+3044) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ータ上のサービスを活用してい + る. これらサービス... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...タ上のサービスを活用している + . これらサービスと... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character こ (U+3053) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...のサービスを活用している. こ + れらサービスとは... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character れ (U+308C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...サービスを活用している. これ + らサービスとはク... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ら (U+3089) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ービスを活用している. これら + サービスとはクラ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ビスを活用している. これらサ + ービスとはクラウ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...スを活用している. これらサー + ビスとはクラウド... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ビ (U+30D3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...を活用している. これらサービ + スとはクラウドと... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...活用している. これらサービス + とはクラウドとオ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character と (U+3068) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...用している. これらサービスと + はクラウドとオン... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character は (U+306F) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...している. これらサービスとは + クラウドとオンプ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ク (U+30AF) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ている. これらサービスとはク + ラウドとオンプレ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ラ (U+30E9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...いる. これらサービスとはクラ + ウドとオンプレサ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ウ (U+30A6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...る. これらサービスとはクラウ + ドとオンプレサー... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ド (U+30C9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 .... これらサービスとはクラウド + とオンプレサーバ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character と (U+3068) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ... これらサービスとはクラウドと + オンプレサーバー... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character オ (U+30AA) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...れらサービスとはクラウドとオ + ンプレサーバーや... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ン (U+30F3) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...らサービスとはクラウドとオン + プレサーバーやそ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character プ (U+30D7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...サービスとはクラウドとオンプ + レサーバーやその... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character レ (U+30EC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ービスとはクラウドとオンプレ + サーバーやその上... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ビスとはクラウドとオンプレサ + ーバーやその上で... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...スとはクラウドとオンプレサー + バーやその上で稼... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character バ (U+30D0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...とはクラウドとオンプレサーバ + ーやその上で稼働... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...はクラウドとオンプレサーバー + やその上で稼働す... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...クラウドとオンプレサーバーや + その上で稼働する... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character そ (U+305D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ラウドとオンプレサーバーやそ + の上で稼働するシ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ウドとオンプレサーバーやその + 上で稼働するシス... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 上 (U+4E0A) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ドとオンプレサーバーやその上 + で稼働するシステ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...とオンプレサーバーやその上で + 稼働するシステム, ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 稼 (U+7A3C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...オンプレサーバーやその上で稼 + 働するシステム, 利... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 働 (U+50CD) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ンプレサーバーやその上で稼働 + するシステム, 利用... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character す (U+3059) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...プレサーバーやその上で稼働す + るシステム, 利用者... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character る (U+308B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...レサーバーやその上で稼働する + システム, 利用者が... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character シ (U+30B7) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...サーバーやその上で稼働するシ + ステム, 利用者が持... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ーバーやその上で稼働するシス + テム, 利用者が持ち... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character テ (U+30C6) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...バーやその上で稼働するシステ + ム, 利用者が持ち込... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ム (U+30E0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ーやその上で稼働するシステム + , 利用者が持ち込む... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 利 (U+5229) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...その上で稼働するシステム, 利 + 用者が持ち込むPCや... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 用 (U+7528) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...の上で稼働するシステム, 利用 + 者が持ち込むPCやモ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 者 (U+8005) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...上で稼働するシステム, 利用者 + が持ち込むPCやモバ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character が (U+304C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...で稼働するシステム, 利用者が + 持ち込むPCやモバイ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 持 (U+6301) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...稼働するシステム, 利用者が持 + ち込むPCやモバイル... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ち (U+3061) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...働するシステム, 利用者が持ち + 込むPCやモバイル端... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 込 (U+8FBC) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...するシステム, 利用者が持ち込 + むPCやモバイル端末... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character む (U+3080) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...るシステム, 利用者が持ち込む + PCやモバイル端末, ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...システム, 利用者が持ち込むPCや + モバイル端末, それ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character モ (U+30E2) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ステム, 利用者が持ち込むPCやモ + バイル端末, それら... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character バ (U+30D0) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...テム, 利用者が持ち込むPCやモバ + イル端末, それらを... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character イ (U+30A4) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ム, 利用者が持ち込むPCやモバイ + ル端末, それらを繋... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ル (U+30EB) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ..., 利用者が持ち込むPCやモバイル + 端末, それらを繋ぐ... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 端 (U+7AEF) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...用者が持ち込むPCやモバイル端 + 末, それらを繋ぐ回... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 末 (U+672B) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...者が持ち込むPCやモバイル端末 + , それらを繋ぐ回線... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character そ (U+305D) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...が持ち込むPCやモバイル端末, そ + れらを繋ぐ回線を... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character れ (U+308C) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...持ち込むPCやモバイル端末, それ + らを繋ぐ回線を含... +You may provide a definition with +\DeclareUnicodeCharacter + + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ら (U+3089) +(inputenc) not set up for use with LaTeX. + +See the inputenc package documentation for explanation. +Type H for immediate help. + ... + +l.2 ...ち込むPCやモバイル端末, それら + を繋ぐ回線を含む. ... +(That makes 100 errors; please try again.) Here is how much of TeX's memory you used: - 6740 strings out of 481134 - 99551 string characters out of 5917333 - 468276 words of memory out of 5000000 - 22698 multiletter control sequences out of 15000+600000 - 547408 words of font info for 102 fonts, out of 8000000 for 9000 - 929 hyphenation exceptions out of 8191 - 30i,11n,36p,1379b,1818s stack positions out of 5000i,500n,10000p,200000b,80000s - -Output written on master_paper.dvi (49 pages, 142344 bytes). + 2659 strings out of 480608 + 38399 string characters out of 5903630 + 280779 words of memory out of 5000000 + 18556 multiletter control sequences out of 15000+600000 + 532741 words of font info for 26 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 30i,5n,36p,733b,225s stack positions out of 5000i,500n,10000p,200000b,80000s + +/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: ==> Fatal error occurred, no output PDF file produced! diff -r 46f04e884545 -r 12648d2915e9 Paper/master_paper.tex --- a/Paper/master_paper.tex Thu Feb 08 15:48:39 2024 +0900 +++ b/Paper/master_paper.tex Sun Feb 11 17:27:00 2024 +0900 @@ -13,7 +13,7 @@ %\input{dummy.tex} %% font \jtitle{システム管理を体験させる学生実験に関する取り組み} -\etitle{Initiatives related to student experiments to experience system management} % +\etitle{Initiatives related to student experiments to on-premises system management} % \year{2024年 3月} \eyear{March 2024} \author{木山 瑞基} diff -r 46f04e884545 -r 12648d2915e9 slide/.hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/.hgignore Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,1 @@ +.DS_Store diff -r 46f04e884545 -r 12648d2915e9 slide/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/Makefile Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,3 @@ +build: + marp template.md --theme cr.css + open template.html \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/README.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/README.md Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,15 @@ +## 使用方法 + +基本的には`Marp for VSCode` Extensionを使用する + +Extensionをインストール後、次のVSCodeの設定を書き込む。 +テーマのパスは環境によって違うかもしれないので確認する。 +おそらく、VSCodeで開いているディレクトリからの相対パスを入れれば良い。 +```json + "markdown.marp.exportType": "html", + "markdown.marp.themes": ["template/cr.css"] +``` + +## CLIでの使用方法 + +Makefileを作成してある \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/figs/chatsystem4.png Binary file slide/figs/chatsystem4.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/figs/key-gen.png Binary file slide/figs/key-gen.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/figs/ldapadddel.png Binary file slide/figs/ldapadddel.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/figs/ldapsearch.png Binary file slide/figs/ldapsearch.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/figs/slashcommand-exp.png Binary file slide/figs/slashcommand-exp.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/figs/system.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/figs/system.svg Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,878 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 46f04e884545 -r 12648d2915e9 slide/figs/test.drawio --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/figs/test.drawio Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/figs/test.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/figs/test.svg Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,1 @@ +
DataGear
DataGear
CodeGear
CodeGear
DataGear
DataGear
CodeGear
CodeGear
Viewer does not support full SVG 1.1
\ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/figs/vmaudit.png Binary file slide/figs/vmaudit.png has changed diff -r 46f04e884545 -r 12648d2915e9 slide/logo.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/logo.svg Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,683 @@ + + + +image/svg+xml \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/template.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/template.html Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,499 @@ +
+

システム管理を体験させる学生実験に関する考察

+ +

琉球大学 理工学研究科 知能情報プログラム
+河野研究室

+

木山 瑞基

+
+
+

知能情報コースの卒業生に期待される能力

+ +
    +
  • 技術力
  • +
  • コミュニケーション能力
  • +
  • 問題解決能力
  • +
  • 技術者としての倫理観
  • +
+
+
+

学士修士の研究者としてのシステム管理の知識

+
    +
  • 旧システムの問題点を解消したシステムの構築
  • +
  • 要求に対応するシステム運用
  • +
  • 適切な環境やハイスペックマシンを使用する為の構築
  • +
+
+
+

システム管理活動を通してこれらの能力を身につける

+
    +
  • +

    3年生を対象とした演習科目の中でシステム管理を体験させた

    +
  • +
  • +

    チャットツールを用いたシステム管理

    +
  • +
+
+
+

情報工学生が利用するシステム

+ +
    +
  • 知能情報コースには教育研究情報システムがある +
      +
    • 学生・教員の約300名に対して演習、研究活動を行う為のシステムを提供している
    • +
    +
  • +
  • 学生が中心となって管理している +
      +
    • 指導教員、技術職員、学生の6名
    • +
    +
  • +
  • 2022年より講義にシステム管理活動が追加された
  • +
+
+
+

システム構成(ハードウェア)

+
    +
  • 2Uサーバー6台導入している +
      +
    • 4台はGPUを搭載した基幹サーバー
    • +
    • 2台はディスクサーバー
    • +
    +
  • +
  • さくらのクラウドサーバー +
      +
    • 冗長構成用のサーバー
    • +
    +
  • +
+
+
+

システム上で動作しているサービス

+ +
    +
  • 学生の演習や研究活動に必要なリソースを提供している +
      +
    • 仮想環境(KVM,Podman,Singurality)
    • +
    • 有線・無線ネットワーク
    • +
    +
  • +
  • コースのカリキュラムに必要なサービスも提供している +
      +
    • 授業ページを掲載する学科web
    • +
    • 授業連絡等で使用されるMattermost
    • +
    +
  • +
  • ファイルシステム +
      +
    • ceph
    • +
    +
  • +
+
+
+

サービスの利用例

+
    +
  • 授業・学外演習でのアプリケーション構築でのKVM貸し出し
  • +
  • イベント時に専用の無線LANの作成
  • +
  • イベントの告知に学科webにアナウンス
  • +
+
+
+

過去(2009年)のシステム管理の取り組み

+
    +
  • +

    情報工学系学科における教育用計算機システムの自主構築に関する取組み

    +
      +
    • 先行研究ではシステムリプレースを学生が中心となって構築した
    • +
    • 当時15名程の学生が参加していた
    • +
    +
  • +
  • +

    学科システムの更新の実践的教育への活用

    +
      +
    • 旧システムの問題点の検証
    • +
    • それらを改善したシステムの設計・構築
    • +
    +
  • +
  • +

    アンケートを用いた有効性の提示

    +
      +
    • 利用者に向けて新システムが有効的かのアンケート
    • +
    • 管理者である学生へ技術習得度、システム構築に関する工夫
    • +
    +
  • +
+
+
+

2009年以降のシステム管理チーム

+
    +
  • 旧システムの問題点を改善したシステムアップデートは続いている +
      +
    • 直近では2020年に行われた
    • +
    +
  • +
  • 2012年よりシステム管理チームができ、2022年には演習科目のテーマに追加された
  • +
  • 演習環境の貸し出しなどはKVM、Podman、singularityになっている
  • +
  • 物理サーバーにGPUを搭載した
  • +
+
+
+

システムアップデート時の活動内容

+ +
    +
  • 設計 +
      +
    • オンプレの計算機サーバー
    • +
    • 学内ネットワーク 有線・無線 UTM
    • +
    • ストレージサーバー Ceph
    • +
    • クラウドサーバー Sakura
    • +
    +
  • +
+
+
+

2020年度に構築された現在のサービス

+ +
    +
  • Ubuntuホスティングサーバー×6
  • +
  • KVM,Podman,singlarity
  • +
  • PowerDNS
  • +
  • Akatsuki(IP,ドメイン管理サービス)
  • +
  • webサーバー
  • +
  • gitlab
  • +
  • mattermost
  • +
+
+
+

システム管理活動

+ +
    +
  • 週に一回のミーティング +
      +
    • zoomで遠隔で行っている
    • +
    • 作業ログやドキュメントはscrapboxを使用している
    • +
    +
  • +
  • 利用者からの問い合わせに対応 +
      +
    • 学生の学外公開サーバーの監査
    • +
    +
  • +
  • 障害発生時の修正
  • +
  • システムのバージョンアップデート
  • +
  • Hands onの開催
  • +
  • 新入生向けのインストール大会
  • +
+
+
+

システム管理チームの問題点

+
    +
  • チームに所属して長期的に活動を行う学生は2~3名ほどに留まっている
  • +
  • システム管理に興味を持つ学生が少なく、そもそも存在を知らない学生もいる
  • +
+
+
+

演習科目へのシステム管理活動の追加

+
    +
  • 知能情報分野の専門的な知識を習得することを目的としており、前期・後期それぞれで開講されている
  • +
  • システム管理の他にも毎年5~6個ほどのテーマが存在しており学生はこの中から選択する
  • +
  • 一学年定員60名なので1テーマあたり10名ほどの受講生がいる
  • +
  • テーマの一つにシステム管理活動を追加した
  • +
+
+
+

演習実験でのシステム管理チームの取り組み

+
    +
  • +

    週に一回二コマ

    +
      +
    • 主にzoomを用いて遠隔で授業を行っている
    • +
    +
  • +
  • +

    サーバー室の見学

    +
  • +
  • +

    学科システムの紹介

    +
  • +
  • +

    サーバー班、web班、セキュリティ班にグループ分け

    +
      +
    • サービスの不具合の修正やシステムのアップデート
    • +
    • 指導教員やシステム管理メンバーが一人付き生徒に教えている
    • +
    • 生徒一人が画面共有して教員やメンバーが指示を出したり意見を出したりしている
    • +
    +
  • +
  • +

    オープンキャンパスの資料作成・発表(前期のみ)

    + +
  • +
+
+
+

サーバー班

+
    +
  • システムのバックアップの修正 +
      +
    • 基幹サーバー上のrsnapshotのログ確認・修正
    • +
    +
  • +
  • 貸し出しVMのテンプレートの修正 +
      +
    • 四つのサーバーで異なっていたテンプレートを共通化
    • +
    +
  • +
+
+
+

web班

+
    +
  • +

    ローカルPC上でHugoの構築,VMを使用してLAMP環境の構築

    +
  • +
  • +

    学科システムのHugo化

    +
      +
    • 以前はWordPressを使用していたがセキュリティの問題から静的ページ変更
    • +
    • 静的ページの管理のしづらさや共通部分が多い
    • +
    +
  • +
+
+
+

セキュリティ班

+ +
    +
  • Vulsの構築 +
      +
    • podmanでの構築
    • +
    • singlarityでの構築
    • +
    +
  • +
+
+
+

演習実験での問題点

+
    +
  • 継続してシステム管理活動に参加する学生が少ない
  • +
  • システムが大規模かつ複雑で理解しくい
  • +
  • CLIでの操作に慣れていない学生が多い事から管理者権限が付与できなかった
  • +
  • 手を動かす学生が固定化されていた
  • +
+
+
+

チャットシステムを利用したシステム管理

+
    +
  • mattermostのスラッシュコマンドを利用しシステムを管理する
  • +
  • 任意のエンドポイントに対してリクエストを送信する事ができ,HTTPサーバーから基幹サーバーに対して処理を投げる
  • +
  • スラッシュコマンドの実行結果はbot経由でチャット上に表示される
  • +
  • 管理者権限を必要とする操作は制限するように設定した
  • +
+
+
+

提案システムの実行例

+
    +
  • ユーザーが実行したコマンドの結果のみ表示される
  • +
  • 実行ユーザーと実行コマンドを含めた結果を表示
    +
  • +
+
+
+

システムの構成図

+
    +
  • 基幹システム上にHTTPサーバーコンテナを構築した
  • +
+ +

+
+
+

認証の実装

+ +
    +
  • 学科のシステムはLDAP経由でアカウントを管理している
  • +
  • サーバー上の管理者権限もLDAPによって管理されている +
      +
    • 特定のDNにユーザー情報のuidを追加することで管理されている
    • +
    +
  • +
  • mattermostのuser_nameはLDAPのuidが登録される
  • +
  • mattermostのスラッシュコマンドは実行時に操作者のuser_nameが送信される
  • +
  • そのuser_name(uid)を使用し検索を行うことで管理者かわかる
  • +
+
+
+

実装したスラッシュコマンド

+
    +
  • vmの監査
  • +
  • 管理者権限の追加・削除
  • +
+
+
+

従来の手法 vmの監査

+
    +
  • 生徒側 +
      +
    • 学生が借りたVMサーバーにグローバルIPを割り振る際に監査がある
    • +
    • 学生はアクセス制限やセキュリティアップデートの自動化などを行う
    • +
    • 監査用アカウントを作成し管理者にアクセス情報と共に問い合わせする
    • +
    +
  • +
+
+
+

従来の手法 vmの監査

+
    +
  • 管理者側 +
      +
    • アクセス制限の確認 +
        +
      • /etc/hosts.allow /etc/hosts.denyの確認
      • +
      +
    • +
    • 不審なユーザーがいないかの確認
    • +
    • ssh +
        +
      • rootでアクセス出来るか
      • +
      • パスワード認証出来るか
      • +
      • デフォルトポートから変更されているか
      • +
      +
    • +
    • セキュリティアップデートが自動化されているか
    • +
    +
  • +
+
+
+

実装したコマンド vmの監査

+ +
    +
  • 監査を受ける生徒が使用するコマンド +
      +
    • アクセス制限などの作業は従来と同じ
    • +
    • 監査用のアカウントを作成し、描きコマンドを実行して公開鍵を登録
    • +
    • /syskan vm key-gen $VMNAME $IPADD
      +
    • +
    +
  • +
+
+
+

実装したコマンド vmの監査

+
    +
  • 管理チームが使用するコマンド +
      +
    • /syskan vm audit $VMNAME $USERNAME $IPADD
      +
    • +
    +
  • +
+
+
+

従来の手法 sudoersに追加・削除

+
    +
  • ldapの操作 +
      +
    • 基幹サーバーにログインしsyskanユーザー変更
    • +
    • ldifファイルを作成
    • +
    • 以下のコマンドを打つ
    • +
    +
  • +
+
$ldapmodify -f iesudoers.ldif -x -H host -D binddn -W
+
+
+
+

実装したコマンド sudoersに追加・削除

+
    +
  • sudoers権限を持つ学生から権限を削除するコマンド
  • +
  • /syskan ldap delete sudoers $UID
  • +
  • 特定の生徒のldap情報を取得するコマンド +
      +
    • /syskan ldap search $UID
    • +
    +
  • +
  • +
+
+
+

チャットシステムを用いたシステム管理の有効性

+
    +
  • 複雑なオプションやサーバー上のpathを覚える必要がない
  • +
  • 頻繁に使用する処理をサーバーにアクセスすることなく行える
  • +
+
+
+

まとめ

+
    +
  • 2022年度から科目演習のテーマの一つとしてシステム管理チームを追加した
  • +
  • 座学と実際の運用を用いて学生にシステム管理を体験させた
  • +
  • しかし、システム管理チームに参加する学生の少なさやCLIの難易度の高さと言った問題点が挙げられた
  • +
  • そこでチャットシステムを用いたシステム管理を提案した
  • +
+
+
+

今後の課題

+
    +
  • スラッシュコマンドを使用してもらう
  • +
  • スラッシュコマンドの実装 +
      +
    • 他にもシステムの状態を確認する処理や定期的に利用する処理の追加
    • +
    +
  • +
  • 管理メンバーの引き継ぎ +
      +
    • 学生メンバーの3人中2人が今年卒業、指導教員も来年で定年
    • +
    +
  • +
  • 時期システム更新 +
      +
    • 2025年にはシステム更新作業がある
    • +
    +
  • +
+
+

スピーカーノート

技術力、プログラミング能力や構築力 + グループや組織内での意思疎通や対人関係 + 与えられた課題だけでなく、問題点を洗い出し分析し解決する能力 + また、技術者としての倫理観も求められる能力

ここで琉球大学には〜〜のシステムがあるという紹介を行う

コースのカリキュラムに必要な計算機リソースを提供する +- AI,ハードウェア,ソフトウェア,セキュリティを学習するカリキュラム +具体的なサービス(AI学習タスク,VM,開発実験用コンテナ) +- 学習環境も提供する(gitlab,mattermost,ie-web)

## システム構成図 +![w:800](figs/system.svg) + +---

- 旧システムの問題点と新システムの設計 +ネットワークの構成(サブネット化してなかった)、生徒への貸し出し環境の修正(一つのマシンを5~6人で共用していた為、管理者権限で操作するとそれぞれが影響を受けるような形になっていた) +- 新システムの実装

- システム利用者へのアンケート +- 設計・構築に関わった学生の自己評価アンケート +- アンケートの内容は,技術修得度合,システム構築に対する工夫点,システムリプレース全体に関する評価,次回のシステムリプレースの改善などの項目を挙げた.

ここでは満たすべき要件を書く +更新前のシステムにあった問題点の改善やその時の最新技術を取り入れるなど要望から設計を行い更新しています。 + +現行のサーバーは機械学習の演習のためGPUが搭載されたものを採用しました。 + +以前のファイルシステムはGFS2を採用しておりロックマネージャサーバーが落ちるとファイルシステムにアクセスできなくなった問題がある + +冗長構成の為のクラウド

- 5年に一度のシステムアップデート

どのように構築しているかをかく +サービスの大部分は5年に一度のシステム更新で構築を行います。

- 構築

普段の運用のやり方を紹介 +運用を通して

- 運用

## 学生主体で管理するシステムの成果 + +- 年間2~3人ほど250名が利用するシステムの設計・構築・管理経験者を卒業させている +- セキュリティの専門家,ベンチャーのシステム管理者など +- 学生が欲しいシステムを自分たちで構築できている +- 自分たちで管理しているのでセキュリティ意識も高い + +---

作業者もしくは他の生徒は作業内容をログにまとめることも行っている

脆弱性検知ツール

- コースに所属する学生は普段の授業連絡などで使用しており

下図がMattermostからスラッシュコマンドを実行し各基幹サーバーにコマンドが実行され実行者に結果が表示されるまでの流れである

DN織別名

定期的に実行する処理やシステムの調査などに使用する処理などに絞って実装を行なった

\ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/template.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/template.md Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,407 @@ +--- +marp: true +theme: cr +paginate: true +--- + +# システム管理を体験させる学生実験に関する考察 + + + +琉球大学 理工学研究科 知能情報プログラム +河野研究室 + +木山 瑞基 + +--- + +## 知能情報コースの卒業生に期待される能力 + +- 技術力 +- コミュニケーション能力 +- 問題解決能力 +- 技術者としての倫理観 + +--- + +## 学士修士の研究者としてのシステム管理の知識 + +- 旧システムの問題点を解消したシステムの構築 +- 要求に対応するシステム運用 +- 適切な環境やハイスペックマシンを使用する為の構築 + +--- + +## システム管理活動を通してこれらの能力を身につける + +- 3年生を対象とした演習科目の中でシステム管理を体験させた + +- チャットツールを用いたシステム管理 +--- + +## 情報工学生が利用するシステム + + +- 知能情報コースには教育研究情報システムがある + - 学生・教員の約300名に対して演習、研究活動を行う為のシステムを提供している +- 学生が中心となって管理している + - 指導教員、技術職員、学生の6名 +- 2022年より講義にシステム管理活動が追加された + +--- + +## システム構成(ハードウェア) + +- 2Uサーバー6台導入している + - 4台はGPUを搭載した基幹サーバー + - 2台はディスクサーバー +- さくらのクラウドサーバー + - 冗長構成用のサーバー + +--- + +## システム上で動作しているサービス + +- 学生の演習や研究活動に必要なリソースを提供している + - 仮想環境(KVM,Podman,Singurality) + - 有線・無線ネットワーク +- コースのカリキュラムに必要なサービスも提供している + - 授業ページを掲載する学科web + - 授業連絡等で使用されるMattermost +- ファイルシステム + - ceph + +--- + + + +## サービスの利用例 + +- 授業・学外演習でのアプリケーション構築でのKVM貸し出し +- イベント時に専用の無線LANの作成 +- イベントの告知に学科webにアナウンス + +--- + +## 過去(2009年)のシステム管理の取り組み + +- [情報工学系学科における教育用計算機システムの自主構築に関する取組み](https://www.jstage.jst.go.jp/article/jsise/26/1/26_79/_pdf/-char/ja) + - 先行研究ではシステムリプレースを学生が中心となって構築した + - 当時15名程の学生が参加していた + +- 学科システムの更新の実践的教育への活用 + - 旧システムの問題点の検証 + - それらを改善したシステムの設計・構築 + +- アンケートを用いた有効性の提示 + - 利用者に向けて新システムが有効的かのアンケート + - 管理者である学生へ技術習得度、システム構築に関する工夫 + + +--- + +## 2009年以降のシステム管理チーム + +- 旧システムの問題点を改善したシステムアップデートは続いている + - 直近では2020年に行われた +- 2012年よりシステム管理チームができ、2022年には演習科目のテーマに追加された +- 演習環境の貸し出しなどはKVM、Podman、singularityになっている +- 物理サーバーにGPUを搭載した + +--- + +## システムアップデート時の活動内容 + + +- 設計 + - オンプレの計算機サーバー + - 学内ネットワーク 有線・無線 UTM + - ストレージサーバー Ceph + - クラウドサーバー Sakura + + +--- + +## 2020年度に構築された現在のサービス + + + +- Ubuntuホスティングサーバー×6 +- KVM,Podman,singlarity +- PowerDNS +- Akatsuki(IP,ドメイン管理サービス) +- webサーバー +- gitlab +- mattermost + +--- + +## システム管理活動 + + + +- 週に一回のミーティング + - zoomで遠隔で行っている + - 作業ログやドキュメントはscrapboxを使用している +- 利用者からの問い合わせに対応 + - 学生の学外公開サーバーの監査 +- 障害発生時の修正 +- システムのバージョンアップデート +- Hands onの開催 +- 新入生向けのインストール大会 + +--- + +## システム管理チームの問題点 + +- チームに所属して長期的に活動を行う学生は2~3名ほどに留まっている +- システム管理に興味を持つ学生が少なく、そもそも存在を知らない学生もいる + +--- + + + +## 演習科目へのシステム管理活動の追加 + +- 知能情報分野の専門的な知識を習得することを目的としており、前期・後期それぞれで開講されている +- システム管理の他にも毎年5~6個ほどのテーマが存在しており学生はこの中から選択する +- 一学年定員60名なので1テーマあたり10名ほどの受講生がいる +- テーマの一つにシステム管理活動を追加した + +--- + +## 演習実験でのシステム管理チームの取り組み + +- 週に一回二コマ + - 主にzoomを用いて遠隔で授業を行っている +- サーバー室の見学 +- 学科システムの紹介 + +- サーバー班、web班、セキュリティ班にグループ分け + - サービスの不具合の修正やシステムのアップデート + - 指導教員やシステム管理メンバーが一人付き生徒に教えている + - 生徒一人が画面共有して教員やメンバーが指示を出したり意見を出したりしている +- オープンキャンパスの資料作成・発表(前期のみ) + - [2023オープンキャンパス](https://ie.u-ryukyu.ac.jp/syskan/activity/open-campus-2023/) + + + +--- + +## サーバー班 + +- システムのバックアップの修正 + - 基幹サーバー上のrsnapshotのログ確認・修正 +- 貸し出しVMのテンプレートの修正 + - 四つのサーバーで異なっていたテンプレートを共通化 + +--- + +## web班 + +- ローカルPC上でHugoの構築,VMを使用してLAMP環境の構築 + +- 学科システムのHugo化 + - 以前はWordPressを使用していたがセキュリティの問題から静的ページ変更 + - 静的ページの管理のしづらさや共通部分が多い + +--- + +## セキュリティ班 + +- Vulsの構築 + - podmanでの構築 + - singlarityでの構築 + +--- + +## アンケートを用いた評価 + +- + +--- + +## 演習実験での問題点 + +- 継続してシステム管理活動に参加する学生が少ない +- システムが大規模かつ複雑で理解しくい +- CLIでの操作に慣れていない学生が多い事から管理者権限が付与できなかった +- 手を動かす学生が固定化されていた + +--- + +## チャットシステムを利用したシステム管理 + +- mattermostのスラッシュコマンドを利用しシステムを管理する +- 任意のエンドポイントに対してリクエストを送信する事ができ,HTTPサーバーから基幹サーバーに対して処理を投げる +- スラッシュコマンドの実行結果はbot経由でチャット上に表示される +- 管理者権限を必要とする操作は制限するように設定した + + +--- + +## 提案システムの実行例 +- ユーザーが実行したコマンドの結果のみ表示される +- 実行ユーザーと実行コマンドを含めた結果を表示 +![w:800](figs/slashcommand-exp.png) + +--- + +## システムの構成図 + +- 基幹システム上にHTTPサーバーコンテナを構築した + +![w:600 ](figs/chatsystem4.png) + +--- + +## 認証の実装 + +- 学科のシステムはLDAP経由でアカウントを管理している +- サーバー上の管理者権限もLDAPによって管理されている + - 特定のDNにユーザー情報のuidを追加することで管理されている +- mattermostのuser_nameはLDAPのuidが登録される +- mattermostのスラッシュコマンドは実行時に操作者のuser_nameが送信される +- そのuser_name(uid)を使用し検索を行うことで管理者かわかる + +--- + +## 実装したスラッシュコマンド + +- vmの監査 +- 管理者権限の追加・削除 + +--- + +## 従来の手法 vmの監査 + +- 生徒側 + - 学生が借りたVMサーバーにグローバルIPを割り振る際に監査がある + - 学生はアクセス制限やセキュリティアップデートの自動化などを行う + - 監査用アカウントを作成し管理者にアクセス情報と共に問い合わせする + +--- + +## 従来の手法 vmの監査 + +- 管理者側 + - アクセス制限の確認 + - /etc/hosts.allow /etc/hosts.denyの確認 + - 不審なユーザーがいないかの確認 + - ssh + - rootでアクセス出来るか + - パスワード認証出来るか + - デフォルトポートから変更されているか + - セキュリティアップデートが自動化されているか + +--- + +## 実装したコマンド vmの監査 + + +- 監査を受ける生徒が使用するコマンド + - アクセス制限などの作業は従来と同じ + - 監査用のアカウントを作成し、描きコマンドを実行して公開鍵を登録 + - /syskan vm key-gen $VMNAME $IPADD + ![w:650 ](figs/key-gen.png) + +--- + +## 実装したコマンド vmの監査 + - 管理チームが使用するコマンド + - /syskan vm audit $VMNAME $USERNAME $IPADD + ![w:600 ](figs/vmaudit.png) + +--- + +## 従来の手法 sudoersに追加・削除 + +- ldapの操作 + - 基幹サーバーにログインしsyskanユーザー変更 + - ldifファイルを作成 + - 以下のコマンドを打つ + +``` +$ldapmodify -f iesudoers.ldif -x -H host -D binddn -W +``` + +--- + +## 実装したコマンド sudoersに追加・削除 + + - sudoers権限を持つ学生から権限を削除するコマンド + - /syskan ldap delete sudoers $UID +- 特定の生徒のldap情報を取得するコマンド + - /syskan ldap search $UID +- ![w:600 ](figs/ldapadddel.png) + +--- + +## チャットシステムを用いたシステム管理の有効性 + +- 複雑なオプションやサーバー上のpathを覚える必要がない +- 頻繁に使用する処理をサーバーにアクセスすることなく行える + +--- + +## まとめ + +- 2022年度から科目演習のテーマの一つとしてシステム管理チームを追加した +- 座学と実際の運用を用いて学生にシステム管理を体験させた +- しかし、システム管理チームに参加する学生の少なさやCLIの難易度の高さと言った問題点が挙げられた +- そこでチャットシステムを用いたシステム管理を提案した + +--- + +## 今後の課題 + +- スラッシュコマンドを使用してもらう +- スラッシュコマンドの実装 + - 他にもシステムの状態を確認する処理や定期的に利用する処理の追加 +- 管理メンバーの引き継ぎ + - 学生メンバーの3人中2人が今年卒業、指導教員も来年で定年 +- 時期システム更新 + - 2025年にはシステム更新作業がある \ No newline at end of file diff -r 46f04e884545 -r 12648d2915e9 slide/templates/cr.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/templates/cr.css Sun Feb 11 17:27:00 2024 +0900 @@ -0,0 +1,30 @@ +/* @theme cr */ + +@import 'default'; + +section { + background-image: url('./logo.svg'); + background-repeat: no-repeat; + background-position: right 2rem bottom 0.6rem; + background-size: 12%; +} + +h1 { + color: #828db2; + font-size: 2.1rem; +} + +h2 { + background-color: #828db2; + color: #fff; + padding: 0.3rem; + font-size: 2.1rem; +} + +p { + font-size: 1.3rem; +} + +ul, ol { + font-size: 1.2rem; +}