Latexで図形の処理がうまくいかない.
Q&A
Closed
下記のTEXファイルをDOS窓のコマンドでPDF化しようとしたのですがエラーメーッセージがでて実行できません.どこが悪いのでしょうか?
最初にchcp 65001でunicode-8を設定しています.
試したコマンドは次の2種類です.
platex 画像.tex
pdflatex 画像.tex
コンパイラによってエラーメッセージが異なります.
発生している問題・エラー
出ているエラーメッセージを入力
1.platexでコンパイルした場合:
! Undefined control sequence.
l.69 ^^I\includegraphicsh
[width=5cm]{set Of Tec_Goods.png}
? 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.
2.pdflatexでコンパイルした場合:
! LaTeX Error: Unicode character 図 (U+56F3)
not set up for use with LaTeX.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.66 図
1
? h
You may provide a definition with
\DeclareUnicodeCharacter
### 該当するソースコード
```tex
\documentclass[a4paper, 11pt, twoside]{article}
% パッケージの読み込み
\usepackage{amsmath, amssymb, amsthm} % 数式関連のパッケージ
\usepackage{bm} % 太字の数式用
\usepackage{graphicx} % 画像挿入用
\usepackage{hyperref} % ハイパーリンク用
\usepackage{cite} % 参考文献の引用用
% ページレイアウトの設定
\usepackage[top=30truemm,bottom=30truemm,left=25truemm,right=25truemm]{geometry}
% 日本語フォントと文字化け対策
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
% パッケージの読み込み
\usepackage{amsmath, amssymb, amsthm} % 数式関連のパッケージ
\usepackage{bm} % 太字の数式用
\usepackage{graphicx} % 画像挿入用
\usepackage{hyperref} % ハイパーリンク用
\usepackage{cite} % 参考文献の引用用
% ページレイアウトの設定
\usepackage[top=30truemm,bottom=30truemm,left=25truemm,right=25truemm]{geometry}
% 日本語フォントと文字化け対策
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage[english, japanese]{babel}
% 数式番号の設定
\renewcommand{\theequation}{\thesection.\arabic{equation}} % 章番号とセクション番号を含む数式番号
%見出し番号を削除
\setcounter{secnumdepth}{0}
%\mathscrコマンドを使用できるようにする
%\usepackage{unicode-math}
\usepackage{mathrsfs}
%コメントブロックを使えるようにする
\usepackage{comment}
%行列の行間に点線罫線をつかえるようにする
\usepackage{arydshln}
%下線付き文字の改行処理
\usepackage{ulem}
\usepackage{docmute}
%図形処理
\usepackage{graphicx}
\begin{document}
\graphicspath{{image/}}
\begin{figure}[htbp]
\centering
\includegraphicsh[width=5cm]{set Of Tec_Goods.png}
\caption{set Of Tec_Goods}
\label{set Of Tec_Goods}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphicsh[width=5cm]{countries independence.png}
\caption{countries independence}
\label{countries independence}
\end{figure}
これは図 \ref{set Of Tec_Goods} です.
これは図 \ref{move to up_face} です.
図 \ref{set Of Tec_Goods} はこれです.
図 \ref{move to up_face} はこれです.
\end{document}
%使用する画像ファイル
![set Of Tec_Goods.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/1186954/6995f2bb-a57b-744e-cf00-1705208d4691.png)
![move to up_face.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/1186954/1be6b8ce-d8e7-ead3-1110-3d8b633189aa.png)