図の挿入は以下のサイトが非常に参考になります。てかもうここに全部書いてます。
\\documentclass[fontsize=10.5pt, paper=a4]{jlreq} % jlreqクラスを使用、フォントサイズは10.5pt
\\usepackage{luatexja-fontspec} % LuaTeX-jaを使ったフォント設定のためのパッケージ
\\usepackage{graphicx} % 図の挿入用パッケージ
\\title{図の挿入例}
\\author{立花響}
\\date{\\today}
\\begin{document}
\\maketitle
\\section{図の挿入}
\\begin{figure}[htbp]
\\centering
\\includegraphics[width=0.8\\textwidth]{img/example-image-a.png} % example-image-aはデフォルトで用意されているサンプル画像
\\caption{サンプル画像}
\\label{fig:sample-image}
\\end{figure}
\\end{document}
図を挿入するには、まずプリアンブルに\\usepackage{graphicx}
を追加します。次に、図を挿入したい箇所に以下のコードを記述します。
\\begin{figure}[htbp]
\\centering
\\includegraphics[width=0.8\\textwidth]{img/example-image-a.png} % example-image-aはデフォルトで用意されているサンプル画像
\\caption{サンプル画像}
\\label{fig:sample-image}
\\end{figure}
figure
環境は図を挿入するための環境です。[htbp]
は図の配置場所を指定します(ここでは適切な場所に配置するように指示)。\\centering
は図を中央に配置するためのコマンドです。\\includegraphics[width=0.8\\textwidth]{example-image-a}
は図を挿入するコマンドで、width=0.8\\textwidth
は図の幅をテキスト幅の80%に設定します。\\caption{サンプル画像}
は図のキャプションを設定します。\\label{fig:sample-image}
は図のラベルを設定し、後で参照できるようにします。\\documentclass[fontsize=10.5pt, paper=a4]{jlreq} % jlreqクラスを使用、フォントサイズは10.5pt
\\usepackage{luatexja-fontspec} % LuaTeX-jaを使ったフォント設定のためのパッケージ
\\usepackage{graphicx} % 図の挿入用パッケージ
\\usepackage{subcaption} % サブキャプション用パッケージ
\\title{複数の図の挿入例}
\\author{立花響}
\\date{\\today}
\\begin{document}
\\maketitle
\\section{複数の図の挿入}
\\begin{figure}[htbp]
\\centering
\\begin{subfigure}[b]{0.4\\textwidth}
\\centering
\\includegraphics[width=\\textwidth]{img/example-image-a.png}
\\caption{サンプル画像A}
\\label{fig:sample-image-a}
\\end{subfigure}
\\hfill
\\begin{subfigure}[b]{0.4\\textwidth}
\\centering
\\includegraphics[width=\\textwidth]{img/example-image-b.png}
\\caption{サンプル画像B}
\\label{fig:sample-image-b}
\\end{subfigure}
\\caption{二つのサンプル画像}
\\label{fig:sample-images}
\\end{figure}
\\end{document}
複数の図を並べて配置するには、subcaption
パッケージを使用します。プリアンブルに\\usepackage{subcaption}
を追加し、以下のように記述します。
\\begin{figure}[htbp]
\\centering
\\begin{subfigure}[b]{0.4\\textwidth}
\\centering
\\includegraphics[width=\\textwidth]{example-image-a}
\\caption{サンプル画像A}
\\label{fig:sample-image-a}
\\end{subfigure}
\\hfill
\\begin{subfigure}[b]{0.4\\textwidth}
\\centering
\\includegraphics[width=\\textwidth]{example-image-b}
\\caption{サンプル画像B}
\\label{fig:sample-image-b}
\\end{subfigure}
\\caption{二つのサンプル画像}
\\label{fig:sample-images}
\\end{figure}
subfigure
環境は複数の図を並べて配置するための環境です。