TikZ에서 랜덤 행렬에 주석을다는 방법

Aug 18 2020

무작위 행렬 이미지를 생성하는 다음이 있습니다 (첫 번째 예). 그러나 다음 방법을 알 수 없습니다.

  1. 상단과 오른쪽의 셀 모양 수정

  2. 색조 추가 (두 번째 예에서는 파란색)

  3. 윤곽이있는 청크로 만들기 (두 번째 예)

    \begin{figure}[p]
    \begin{tikzpicture}[scale=1]
       \foreach \y in {0.1,0.2,...,.9} {
           \foreach \x in {0.1,0.2,...,.9} {
               \pgfmathparse{0.9*rnd+0.3}
               \definecolor{MyColor}{rgb}{\pgfmathresult,\pgfmathresult,\pgfmathresult}
                   \node[fill=MyColor,inner sep=0.1cm,outer sep=0pt,anchor=center] at (\x,\y) {}; 
           }
       }
    \end{tikzpicture}
    \end{figure}
    

출력 (예 1) :

예제 2에서 이러한 단계를 보여 주었지만 미리 생성 된 pdf 파일에서만 작동하도록 할 수있었습니다.

\begin{tikzpicture}
     \node[inner sep=0pt] (tumor1to4) at (0,0) {\includegraphics[trim=0 400 400 0,clip,width=20ex,height=20ex]{Plots/Clipart/heatmap.pdf}};

     \node[right=1ex of tumor1to4,font=\fontsize{20}{0}\selectfont, thick] (el1) {...};
     
     \node[inner sep=0pt, right= 0.5ex of el1] (tumorp) {\includegraphics[trim=0 400 475 0,clip,height=20ex]{Plots/Clipart/heatmap.pdf}};
 
     \node[right=0.5ex of tumorp,font=\fontsize{20}{0}\selectfont, thick] (el2) {...};
     
     \node[inner sep=0pt, right= 0.5ex of el2] (tumorP) {\includegraphics[trim=475 400 0 0,clip,height=20ex]{Plots/Clipart/heatmap.pdf}};
 
    \node[below=3ex of tumor1to4,font=\fontsize{20}{0}\selectfont, thick, rotate=90] (el3) {...};
 
     \node[inner sep=0pt, below =5.5ex of tumor1to4] (tumorK) {\includegraphics[trim=0 300 400 178,clip,width=20ex]{Plots/Clipart/heatmap.pdf}};

     \node[right=1ex of tumorK,font=\fontsize{20}{0}\selectfont, thick] (el5) {...};
     
     \node[inner sep=0pt, right= 0.5ex of el5] (tumorKp) {\includegraphics[trim=0 300 475 178,clip,width=5ex]{Plots/Clipart/heatmap.pdf}};
 
     \node[right=0.5ex of tumorKp,font=\fontsize{20}{0}\selectfont, thick] (el6) {...};
     
     \node[inner sep=0pt, right= 0.5ex of el6] (tumorKP) {\includegraphics[trim=475 300 0 178,clip,height=5ex]{Plots/Clipart/heatmap.pdf}};
    
     \node[draw=red,size=3pt,rectangle,fit=(tumorp) (tumorKp)] {};
\end{tikzpicture}

출력 (예 2) :

이제 질문은 예제 2에서와 같이 예제 1에 주석을 추가하는 방법입니다.

답변

2 muzimuzhiZ Aug 18 2020 at 06:30

첫째, inner sep=0.1cm모든 노드의 크기는 실제로 0.2cm x 0.2cm입니다. 이로 인해 상단과 오른쪽의 세포 모양 문제가 발생했습니다.

여기에서 inner sep=0pt, minimum size=1cm대신 사용 합니다. blue[-75, 75]각각 대신 다른 기본 색상과 임의의 색상 범위를 선택할 수 있습니다 .

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}[inner sep=0pt, minimum size=1cm]
    \foreach \y in {1, ..., 9} {
        % add vertical shift and dots
        \ifnum\y=2\relax
          \tikzset{yshift=-1cm}
        \else
          \ifnum\y=1\relax
            \path node at (5, \y+1) {\huge$\vdots$};
          \fi
        \fi
        
        \foreach \x in {1, ..., 9} {
            % add horizontal shift and dots
            \ifnum\x<8\relax
            \else
              \tikzset{xshift=1cm*(\x-7)}
              \ifnum\y=1\relax
              \path node at (\x-1, 5) {\huge\ldots}
                    node at (\x-1, 1) {\huge\ldots};
              \fi
            \fi
            
            % get random color
            \pgfmathparse{int(150*rnd-75)} % [-75, 75]
            % color range: blue!75!white .. blue!100 .. blue!75!black
            \ifnum\pgfmathresult>0\relax
              \colorlet{MyColor}{black!\pgfmathresult!blue}
            \else
              \edef\pgfmathresult{-\pgfmathresult}
              \colorlet{MyColor}{white!\pgfmathresult!blue}
            \fi
            
            % draw filled square
            \node[fill=MyColor] at (\x,\y) {};
        }
    }
\end{tikzpicture}
\end{document}