我可以透過 PGF \nextgroupplot 功能新增表格嗎?

我可以透過 PGF \nextgroupplot 功能新增表格嗎?

我做了一個最小的工作範例,顯示了我現在的情況:

\RequirePackage{luatex85}
\documentclass[tikz]{standalone}
% Default preamble
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}
\usepgfplotslibrary{polar}
\usepgfplotslibrary{smithchart}
\usepgfplotslibrary{statistics}
\usepgfplotslibrary{dateplot}
% Custom preamble from global variable:
\usepackage{pgfplotstable}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[group style={group size={2 by 2}}, height={4cm}, width={4cm}]
    \nextgroupplot[title={1}]
    \addplot+
        coordinates {
            (0,0)
            (1,1)
            (2,2)
        }
        ;
        
    \nextgroupplot[title={2}]
%                        \pgfplotstabletypeset[
%                       col sep=&,  % specify the column separation character
%                       row sep=\\, % specify the row separation character
%                       columns/E/.style={string type} % specify the type of data in the designated column
%                        ]{
%                           A & B & C & D & E \\
%                           1 & 10 & 0.1 & 1000 & 2011-01-01 \\
%                           2 & 20 & 0.2 & 2000 & 2012-02-02 \\
%                           3 & 30 & 0.3 & 3000 & 2013-03-03 \\
%                           4 & 40 & 0.4 & 4000 & 2014-04-04 \\
%                           5 & 50 & 0.5 & 5000 & 2015-05-05 \\
%                        }


    \nextgroupplot[title={3}]
    \addplot+
        coordinates {
            (0,2)
            (1,1)
            (2,1)
        }
        ;
    \nextgroupplot[title={4}]
    \addplot+
        coordinates {
            (0,2)
            (1,1)
            (1,0)
        }
        ;
\end{groupplot}
\end{tikzpicture}
\end{document}

運行此程式碼會產生下圖:

在此輸入影像描述

我想插入一個表格,而不是右上角的空數字(“2”)。該表已在我的程式碼中定義,但已註釋(使用%) - 如果我取消註釋並再次運行我的 LaTeX 程式碼,結果將變為:

在此輸入影像描述

有人知道如何留在這個工作流程中\nextgroupplot,並且能夠解決這個問題,這樣我就可以插入表格而不是圖形嗎?

親切的問候

答案1

您可以使用以下命令刪除空軸

\nextgroupplot[hide axis]

然後將表格加入到後面的節點中\end{groupplot}。軸被命名為group cNrM,其中NM分別是列號和行號,因此您可以使用例如

\node [below right, xshift=-5mm] at (group c2r1.north west) { <table code> };

無論你是使用\pgfplotstabletypeset還是直接使用都沒關係,但節點中tabular不能有環境。table

在此輸入影像描述

\documentclass[tikz]{standalone}
% Default preamble
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}
\usepgfplotslibrary{polar}
\usepgfplotslibrary{smithchart}
\usepgfplotslibrary{statistics}
\usepgfplotslibrary{dateplot}
% Custom preamble from global variable:
\usepackage{pgfplotstable}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[group style={group size={2 by 2}}, height={4cm}, width={4cm}]
    \nextgroupplot[title={1}]
    \addplot+
        coordinates {
            (0,0)
            (1,1)
            (2,2)
        }
        ;
        
    \nextgroupplot[hide axis]
    

    \nextgroupplot[title={3}]
    \addplot+
        coordinates {
            (0,2)
            (1,1)
            (2,1)
        }
        ;
    \nextgroupplot[title={4}]
    \addplot+
        coordinates {
            (0,2)
            (1,1)
            (1,0)
        }
        ;
\end{groupplot}

    \node [below right, xshift=-5mm] at (group c2r1.north west) {
                        \pgfplotstabletypeset[
                       col sep=&,  % specify the column separation character
                       row sep=\\, % specify the row separation character
                       columns/E/.style={string type} % specify the type of data in the designated column
                        ]{
                           A & B & C & D & E \\
                           1 & 10 & 0.1 & 1000 & 2011-01-01 \\
                           2 & 20 & 0.2 & 2000 & 2012-02-02 \\
                           3 & 30 & 0.3 & 3000 & 2013-03-03 \\
                           4 & 40 & 0.4 & 4000 & 2014-04-04 \\
                           5 & 50 & 0.5 & 5000 & 2015-05-05 \\
                        }};

\end{tikzpicture}
\end{document}

答案2

有時,一組圖旁邊的表格與這些圖有關。

在此版本中,繪圖與表格一樣大。

透過循環放置圖和表格(其中表格設定為數字 0)

\pgfplotsforeachungrouped \n in {1,0,2,3}{%%
\ifnum\n=0 \nextgroupplot[title=The Table,hide axis]
                   \addplot[draw=none]{x}; % so no warnings
\else
\edef\tmp{
   \noexpand\nextgroupplot[title=Title\n, ylabel=y\n, xlabel=x]
   \noexpand\addplot+[black, mark options={color\n}, thick] table[x=X, y=Y\n]{\noexpand\data};
              }\tmp     
\fi}%%

優點是您可以控製表格(圖)的顯示位置:您可以選擇{1,0,2,3}{1,2,3,0}或...

在此輸入影像描述

\def\ShowHelps{0}% 1 "yes" 0 "no"

在此輸入影像描述

\documentclass[a4paper]{article}
\usepackage[margin=2cm, showframe=false]{geometry}
\usepackage{calc}
\usepackage{colortbl}
 \usepackage{pgfplotstable}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}

\def\ShowHelps{1}% 1 "yes"   0 "no"

\pgfplotstableread[]{
X       Y1     Y2    Y3       Date 
1      10     0.1   100      2011-01-01     
2      20     0.2   200      2012-02-02     
3      30     0.3   300      2013-03-03     
4      40     0.4   400      2014-04-04     
5      50     0.5   500      2015-05-05     
}\data

\foreach \n/\mycolor in {1/red, 2/blue!66, 3/purple}{
\xglobal\colorlet{color\n}{\mycolor}          }

\pgfplotsinvokeforeach{1,...,3}{
\pgfplotstableset{every col no #1/.style={
column type/.add={>{\columncolor{color#1}}}{}       }, }
}

\newsavebox{\mytable}
\sbox{\mytable}{%
\pgfplotstabletypeset[
columns/Date/.style={string type} 
]{\data}}
\pgfmathsetlengthmacro\tablewidth{width("\usebox{\mytable}")}
%\pgfmathsetlengthmacro\tableheight{height("\usebox{\mytable}")}% not good
\newlength{\tabheight}
\settototalheight{\tabheight}{\usebox{\mytable}} % good
\pgfmathsetlengthmacro\tableheight{\the\tabheight}


\ifnum\ShowHelps=1 
\tikzset{Help/.style={draw=#1,  
nodes={scale=0.6, fill=yellow, draw=#1, text=black, font=\tiny, midway, above, align=left,} },
Help/.default=red, 
}\else
\tikzset{Help/.style={opacity=0, overlay},
}\fi

\begin{document}
\begin{tikzpicture}[]
\begin{groupplot}[group style={
group size={2 by 2},
horizontal sep=44pt, vertical sep=45pt,
}, 
scale only axis,    % 1/2  
width=\tablewidth, height=\tableheight, % 2/2
]
\pgfplotsforeachungrouped \n in {1,0,2,3}{%%
\ifnum\n=0 \nextgroupplot[title=The Table,hide axis]
                   \addplot[draw=none]{x}; % so no warnings
\else
\edef\tmp{
   \noexpand\nextgroupplot[title=Title\n, ylabel=y\n, xlabel=x]
   \noexpand\addplot+[black, mark options={color\n}, thick] table[x=X, y=Y\n]{\noexpand\data};
              }\tmp     
\fi}%%

% Help 1/2
\xdef\verticalsep{\pgfkeysvalueof{/pgfplots/group/vertical sep}}
\xdef\horizontalsep{\pgfkeysvalueof{/pgfplots/group/horizontal sep}}
\end{groupplot}
% Help 2/2
\node[draw=gray, anchor=north west, inner sep=0pt] (X) at (group c2r1.north west) {\usebox{\mytable}};
\draw[Help, -|] (X.north west) -- +(\tablewidth,0) node[Help, near start]{\tablewidth \\ tablewidth}; 
\draw[Help, -|] (X.north west) -- +(0,-\tableheight) node[Help, rotate=90]{\tableheight \\ tableheight}; 
\draw[Help,-|] (group c2r1.south west) -- +(0,-\verticalsep) node[Help, rotate=90]{\verticalsep \\ vertical sep}; 
\draw[Help,-|] (group c2r1.south west) -- +(-\horizontalsep,0)  node[Help]{\horizontalsep \\ horizontal sep};  
\draw[Help,dashed] (group c2r1.north west) -- +(-\tablewidth-\horizontalsep,0); 
\draw[Help,dashed] (group c2r1.south west) -- +(-\tablewidth-\horizontalsep,0); 
\draw[Help,dashed] (group c2r2.south west) -- +(0,\tableheight) ; 
\draw[Help,dashed] (group c2r2.south east) -- +(0,2*\tableheight+\verticalsep) ; 
\end{tikzpicture}
\end{document}

相關內容