插入包裹在 minipage 中的 tikz 图形后,页面上出现较大空间

插入包裹在 minipage 中的 tikz 图形后,页面上出现较大空间

我试图在 minipages 中插入四个 tikz 图形,但图形和标题之间有一个意外的空格。似乎无论我放了多少图形或图形有多大,都会发生这种情况。为什么会发生这种情况?

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[x11names]{xcolor}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{pst-plot}
\pgfplotsset{compat=newest}
\setlength{\textfloatsep}{12pt plus 2pt minus 2pt}

\title{}
\author{}
\date{February 2016}

\begin{document}

\maketitle
\section{Title}
    \begin{figure}
        \centering
        \begin{minipage}{.2\textwidth}
            \begin{tikzpicture}[transform canvas={scale=0.5}]
            \begin{axis}[
                    axis lines=middle,
                    grid = major,
                    xmin=-2, xmax=2,
                    ymin=-2, ymax=2,
                    xlabel=$x_1$,
                    ylabel=$x_2$,
                    xtick={-2,-1,0,...,2},
                    ytick={-2,-1,0,...,2}]
            \addplot [thin, samples=100] {x};
            \addplot [only marks, mark = +, color = red] table {
            -1 0
            0 1
            };
            \draw [-latex, red, thick] (0,0) -- (-1,1);
            \end{axis}
            \end{tikzpicture}
        \end{minipage}\hfill
        \begin{minipage}{.2\textwidth}
            \begin{tikzpicture}[transform canvas={scale=0.5}]
            \begin{axis}[
                    axis lines=middle,
                    grid = major,
                    xmin=-2, xmax=2,
                    ymin=-2, ymax=2,
                    xlabel=$x_1$,
                    ylabel=$x_2$,
                    xtick={-2,-1,0,...,2},
                    ytick={-2,-1,0,...,2}]
            \addplot [thin, samples=100] {x};
            \addplot [only marks, mark = +, color = red] table {
            -1 0
            0 1
            };
            \draw [-latex, red, thick] (0,0) -- (-1,1);
            \end{axis}
            \end{tikzpicture}
        \end{minipage}\hfill
        \begin{minipage}{.2\textwidth}
            \begin{tikzpicture}[transform canvas={scale=0.5}]
            \begin{axis}[
                    axis lines=middle,
                    grid = major,
                    xmin=-2, xmax=2,
                    ymin=-2, ymax=2,
                    xlabel=$x_1$,
                    ylabel=$x_2$,
                    xtick={-2,-1,0,...,2},
                    ytick={-2,-1,0,...,2}]
            \addplot [thin, samples=100] {x};
            \addplot [only marks, mark = +, color = red] table {
            -1 0
            0 1
            };
            \draw [-latex, red, thick] (0,0) -- (-1,1);
            \end{axis}
            \end{tikzpicture}
        \end{minipage}\hfill
        \begin{minipage}{.2\textwidth}
            \begin{tikzpicture}[transform canvas={scale=0.5}]
            \begin{axis}[
                    axis lines=middle,
                    grid = major,
                    xmin=-2, xmax=2,
                    ymin=-2, ymax=2,
                    xlabel=$x_1$,
                    ylabel=$x_2$,
                    xtick={-2,-1,0,...,2},
                    ytick={-2,-1,0,...,2}]
            \addplot [thin, samples=100] {x};
            \addplot [only marks, mark = +, color = red] table {
            -1 0
            0 1
            };
            \draw [-latex, red, thick] (0,0) -- (-1,1);
            \end{axis}
            \end{tikzpicture}
        \end{minipage}
        \caption{Caption}
        \label{fig:my_label}
    \end{figure}

在此处输入图片描述

答案1

基于四个数字下有两个标题,包含在小页中我得到以下结果:

在此处输入图片描述

关于提到的答案,我仅引用了 MWE 中有关您的部分前言。为了完整起见,让我们重复完整的代码:

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[x11names]{xcolor}
%\usepackage{tikz}
\usepackage{pgfplots}
%\usepackage{pst-plot}
\pgfplotsset{compat=newest}
\setlength{\textfloatsep}{12pt plus 2pt minus 2pt}

\title{my article}
\author{me}
\date{February 2016}

\begin{document}
\maketitle

\section{Title}

\begin{figure}[h]
\begin{minipage}{.48\textwidth}
    \begin{tabular}{cc}
        \begin{tikzpicture}[scale=0.45]
        \begin{axis}[
                axis lines=middle,
                grid = major,
                xmin=-2, xmax=2,
                ymin=-2, ymax=2,
                xlabel=$x_1$,
                ylabel=$x_2$,
                xtick={-2,-1,0,...,2},
                ytick={-2,-1,0,...,2}]
        \addplot [thin, samples=100] {0};
        \addplot [only marks, mark = +, color = red] table {
        -1 0
        0 1
        };
        \draw [-latex, red, thick] (0,0) -- (-1,0);
        \end{axis}
        \end{tikzpicture}

&         \begin{tikzpicture}[scale=0.45]
        \begin{axis}[
                axis lines=middle,
                grid = major,
                xmin=-2, xmax=2,
                ymin=-2, ymax=2,
                xlabel=$x_1$,
                ylabel=$x_2$,
                xtick={-2,-1,0,...,2},
                ytick={-2,-1,0,...,2}]
        \addplot [thin, samples=100] {x};
        \addplot [only marks, mark = +, color = red] table {
        -1 0
        0 1
        };
        \draw [-latex, red, thick] (0,0) -- (-1,1);
        \end{axis}
        \end{tikzpicture}

    \end{tabular}
\caption{Caption A}
\label{fig:my_label-A}
    \end{minipage}
\hfill
    \begin{minipage}{.48\textwidth}\centering
    \begin{tabular}{cc}
        \begin{tikzpicture}[scale=0.45]
        \begin{axis}[
                axis lines=middle,
                grid = major,
                xmin=-2, xmax=2,
                ymin=-2, ymax=2,
                xlabel=$x_1$,
                ylabel=$x_2$,
                xtick={-2,-1,0,...,2},
                ytick={-2,-1,0,...,2}]
        \addplot [thin, samples=100] {0};
        \addplot [only marks, mark = +, color = red] table {
        -1 0
        };
        \addplot [only marks, mark = -, color = blue] table {
        0 1
        };
        \draw [-latex, red, thick] (0,0) -- (-1,0);
        \end{axis}
        \end{tikzpicture}
&
        \begin{tikzpicture}[scale=0.45]
        \begin{axis}[
                axis lines=middle,
                grid = major,
                xmin=-2, xmax=2,
                ymin=-2, ymax=2,
                xlabel=$x_1$,
                ylabel=$x_2$,
                xtick={-2,-1,0,...,2},
                ytick={-2,-1,0,...,2}]
        \addplot [thin, samples=100] {-x};
        \addplot [only marks, mark = +, color = red] table {
        -1 0
        };
        \addplot [only marks, mark = -, color = blue] table {
        0 1
        };
        \draw [-latex, red, thick] (0,0) -- (-1,-1);
        \end{axis}
        \end{tikzpicture}
    \end{tabular}
    \caption{Caption B}
    \label{fig:my_label}
    \end{minipage}
\end{figure}
\end{document}    

相关内容