前提・実現したいこと
Texでコンパイルした時にエラーが発生していますので、直したいです。
設定を一部変更しており、texファイルを開いた時に文字化けをしていましたので、shift-JISで開いています。
ちなみにTexは初心者です。
発生している問題・エラーメッセージ
ログの表示
This is ptex2pdf[.lua] version 20200520.0. Processing introduction.tex This is e-pTeX, Version 3.14159265-p3.8.3-191112-2.6 (utf8.sjis) (TeX Live 2020/W32TeX) (preloaded format=platex) restricted \write18 enabled. entering extended mode (./introduction.tex pLaTeX2e <2020-10-01>+1 (based on LaTeX2e <2020-10-01> patch level 2) L3 programming layer <2020-12-07> xparse <2020-03-03> ! Undefined control sequence. l.3 \section {序論} ? h 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. ?
Error, warnings badboxes
introduction.tex 3 Undefined control sequence. l.3 \section {序 論}
該当のソースコード
下記がintroduction.texの中身です。
Tex
1%#! platex RONBUN.tex 2% introduction.tex 3\section{序論} 4 5イントロダクションを書く. 6 7 8% end of introduction.tex 9
参考程度にソースコードのスクショも載せました。
1行目のコードの
%#! platex RONBUN.tex
が赤色で表示されているため、認識されていないのかなと思いました。
下記がintroduction.texの1行目に書かれているRONBUN.texの中身になります。
Tex
1\documentclass[12pt]{jarticle} 2\usepackage{style/jarte3} 3\usepackage{graphicx} 4 5 \input{title.tex} %%% 修論のタイトル 6 \input{style/sty.tex} %%% スタイルファイル 7 \input{style/styorg.tex} %%% 各種環境設定ファイル 8 9\begin{document} 10\maketitle 11 \input{style/stylyout.tex} %%% 一行あたりの漢字数 等 12 \input{style/stytitle.tex} %%% タイトルページの出力 13 \input{style/styabst.tex} %%% アブストラクトのページスタイル 14 \input{abstract.tex} %%% アブストラクト 15\newpage 16 \input{style/styabst.tex} %%% アブストラクトのページスタイル 17 \input{eabstract.tex} %%% 英語のアブストラクト 18\newpage 19 \input{style/styindex.tex } %%% 目次のページスタイル 20 21\newpage 22 \input{introduction.tex} %%% 1章 23\newpage 24 \input{section2.tex} %%% 2章 25\newpage 26 \input{section3.tex} %%% 3章 27\newpage 28 \input{section4.tex} %%% 4章 29\newpage 30 \input{simulation.tex} %%% 5章 31\newpage 32 \input{conclusion.tex} %%% 6章 33\newpage 34 \input{style/styar.tex} %%% ページスタイル (謝辞) 35 \input{acknowledgement.tex} %%% 謝辞 36\newpage 37 \input{style/styre.tex} %%% ページスタイル (参考文献) 38 \input{reference.tex} %%% 参考文献 39\newpage 40 \input{style/styha.tex} %%% ページスタイル (発表論文) 41 \input{happyou.tex} %%% 発表論文 42%newpage 43% \input{style/styps.tex} %%% ページスタイル (付録) 44% \input{appendix.tex} %%% 付録 45 46\end{document} 47
試したこと
上記のサイトを参考にしましたが、分かりませんでした。
下記に上記のサイトの引用文を載せました。
この「Undefined control sequence.」
おそらくLatexで出会うことの最も多いエラー文だと思いますが、
一般的に未定義のコマンドを使用した場合に現れるエラーメッセージです.
対処法としては用いているコマンドの名称が正しいかどうかを確認することです.
正しければ,適当なパッケージを読み込む,といった方法でそのコマンドの定義を与えてあげれば基本的に解消されます.
ソースコードに書いてあるsectionのスペルも間違ってないと思いますので、何が原因でエラーが出ているか分からない状況です。
補足情報(FW/ツールのバージョンなど)
windows10
使用ツールはTexworks
Tex初心者ですが、解決方法を教えていただけると幸いです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー