tikz: TikZ 그림에 노드(예: 교정기) 간 주석/연결 추가

tikz: TikZ 그림에 노드(예: 교정기) 간 주석/연결 추가

저는 라텍스를 처음 그리는 사람입니다. 아래는 내 코드입니다.

\documentclass{article}

\usepackage{tikz}
\usepackage{verbatim}

% Basis: http://www.texample.net/tikz/examples/neural-network/
\begin{document}
\pagestyle{empty}

\def\layersep{2.5cm}

\begin{tikzpicture}[shorten >=1pt,->,draw=black!100, node distance=\layersep]
    \tikzstyle{every pin edge}=[<-,shorten <=1pt]
    \tikzstyle{neuron}=[circle,fill=black!25,minimum size=17pt,inner sep=0pt]
    \tikzstyle{input neuron}=[neuron, fill=white!100,draw=black];
    \tikzstyle{output neuron}=[neuron, fill=white!100,draw=black];
    \tikzstyle{hidden neuron}=[neuron, fill=white!100,draw=black];
    \tikzstyle{annot} = [text width=4em, text centered]

% Draw the input layer nodes
\foreach \name / \y in {1,...,3}
% This is the same as writing \foreach \name / \y in {1/1,2/2,3/3,4/4}
    \node[input neuron, pin=left:Word \y] (I-\name) at (0,-\y) {};

% Draw the hidden layer nodes
\foreach \name / \y in {1,...,3}
    \path[yshift=0cm]
        node[hidden neuron] (H-\name) at (\layersep,-\y cm) {};

% Draw the output layer node
\node[output neuron,pin={[pin edge={->}]right:Sentiment Result}, right of=H-2] (O1) {};

% Connect every node in the input layer with every node in the
% hidden layer.
\foreach \source in {1,...,3}
    \foreach \dest in {1,...,3}
        \path (I-\source) edge (H-\dest);

% Connect every node in the hidden layer with the output layer
\foreach \source in {1,...,3}
    \path (H-\source) edge (O1);


% Annotate the layers
\node[annot,above of=H-1, node distance=1cm] (hl) {Vector layer};
\node[annot,left of=hl] {Input layer};
\node[annot,right of=hl] {Output layer};

\end{tikzpicture}
% End of code
\end{document}

결과는 다음과 같습니다. 여기에 이미지 설명을 입력하세요

내가 원하는 것은: 입력 레이어, 벡터 레이어, 출력 레이어 사이에 2개의 표기법을 추가하는 것입니다. 또한 Word 3을 Word n으로 변경하고 Word 2와 Word n ​​사이에 점을 추가합니다.

정말 고마워!

답변1

이와 같이?

여기에 이미지 설명을 입력하세요

\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{chains, decorations.pathreplacing, positioning} 

\begin{document}
\def\layersep{2.5cm}

    \begin{tikzpicture}[ 
        node distance = 11mm and 22mm,
          start chain = going below,
every pin edge/.style = {<-, draw=black, shorten <=1pt},
        neuron/.style = {circle, draw, minimum size=17pt,inner sep=0pt,
                         node contents={}},
  input neuron/.style = {neuron, on chain},
         annot/.style = {text width=4em, text centered, node distance = 6mm},
        B/.style args = {#1/#2}{%B: Brace
            decorate,
            decoration={brace, amplitude=5pt,
                        pre=moveto,pre length=1pt,post=moveto,post length=1pt,
                        raise=#1,
                        #2,% for mirroring of brace
                        },
            thick},
                        ]
% input, hiden and output layer nodes
\foreach \i in {1,2,3}
{
    \node (ni\i) [input neuron, pin=left:Word \i];
    \node (nh\i) [neuron, right=of ni\i];
}
% output layer node
\node (out) [neuron,
             pin={[pin edge={->}]right:Sentiment Result},
             right=of nh2];
% Connections between nodes
\foreach \j in {1,2,3}
{
    \draw[->,shorten >=1pt] (ni\j) -- (nh\j);
    \draw[->,shorten >=1pt] (nh\j) -- (out);
}
% Annotate the layers 
\node (ai) [annot,above=of ni1.center] {Vector layer};
\node (ah) [annot,above=of nh1.center] {Input layer};
\node (ao) [annot,above=of nh1 -| out] {Output layer};
% braces
\draw[B=1mm/ ]  (ai.north) -- node[above=3mm] {notation 1} (ah.north);
\draw[B=1mm/ ]  (ah.north) -- node[above=3mm] {notation 2} (ao.north);
\end{tikzpicture}
\end{document}

버팀대에는 TikZ 라이브러리가 사용됩니다 decorations.pathreplacing. 나는 그들을 위한 스타일을 B(Brace로) 명명했습니다. 위의 사용되지 않는 스타일 정의에서 MWE와 비교하여 노드는 의 사용에서만 다른 <style name>/.style = {...},두 가지 스타일( neuron및 )만 사용되기 때문에 로 대체됩니다 . 뉴런 노드를 더 간단하게 배치하는 데 사용됩니다.input neuronon chain

관련 정보