はじめに

図の挿入は以下のサイトが非常に参考になります。てかもうここに全部書いてます。

LaTeX 図の挿入

サンプルコード1

\\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}

サンプルコード2

\\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}