Como posso fazer com que os pesos sejam posicionados nas diagonais usando o TikZ para que fique claro a qual aresta o peso pertence?
\begin{tikzpicture}[
> = stealth, % arrow head style
shorten > = 1pt, % don't touch arrow head to node
auto,
node distance = 3cm, % distance between nodes
semithick % line style
]
\tikzstyle{every state}=[
draw = black,
thick,
fill = white,
minimum size = 1mm
]
\node[state] (y1) {$y_1$};
\node[state] (y2) [right of=y1] {$y_2$};
\node[state] (y3) [right of=y2] {$y_3$};
\node[state] (x1) [above of=y1]{$x_1$};
\node[state] (x2) [above of=y2] {$x_2$};
\node[state] (x3) [above of=y3] {$x_3$};
\path[->] (x1) edge node {5} (y1);
\path[->] (y1) edge node {-8} (x2);
\path[->] (x1) edge node {4} (y2);
\path[->] (x2) edge node {3} (y2);
\path[->] (x2) edge node {3} (y3);
\path[->] (y2) edge node {-6} (x3);
\path[->] (x3) edge node {3} (y3);
\end{tikzpicture}
Responder1
Você pode usar a chave de posicionamento do rótulo pos=
junto com uma opção de posicionamento ( above
, above left
, above right
, below
, below left
, below right
) para personalizar ainda mais seu posicionamento. pos
significa uma certa distância entre as coordenadas unidas pela aresta. Usei pos=0.25
opções de posicionamento que alinharam bem os rótulos. Consulte as seções 2.21 e 17.5.2 do TikZ
manual para obter mais detalhes.
Isto dá uma solução possível. Segue o MWE que dá esse resultado.
\documentclass[border=5pt,tikz]{standalone}
\usetikzlibrary{arrows.meta,automata,positioning}
\begin{document}
\begin{tikzpicture}[
> = stealth, % arrow head style
shorten > = 1pt, % don't touch arrow head to node
auto,
node distance = 3cm, % distance between nodes
semithick % line style
]
\tikzset{every state}=[
draw = black,
thick,
fill = white,
minimum size = 1mm
]
\node[state] (y1) {$y_1$};
\node[state] (y2) [right=of y1] {$y_2$};
\node[state] (y3) [right=of y2] {$y_3$};
\node[state] (x1) [above=of y1]{$x_1$};
\node[state] (x2) [above=of y2] {$x_2$};
\node[state] (x3) [above=of y3] {$x_3$};
\path[->] (x1) edge node[] {5} (y1);
\path[->] (y1) edge node[pos=0.25,below right] {-8} (x2);
\path[->] (x1) edge node[pos=0.25,above right] {4} (y2);
\path[->] (x2) edge node[] {3} (y2);
\path[->] (x2) edge node[pos=0.25,above right] {3} (y3);
\path[->] (y2) edge node[pos=0.25,below right] {-6} (x3);
\path[->] (x3) edge node[] {3} (y3);
\end{tikzpicture}
\end{document}
Por favor, sempre poste o MWE completo começando \documentclass
e terminando com \end{document}
. Bem-vindo ao TeX.SE.
Responder2
Você também pode usar near start
ou near end
.
POR FALAR NISSO,usar \tikzset
, não\tikzstyle
, mas, no seu caso, não é necessário e também below/above of
está obsoleto, veja a resposta de Zarko.
Para o posicionamento do nó, você também pode usar um arquivo tikz matrix
.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{automata, matrix}
\begin{document}
\begin{tikzpicture}[
> = stealth, % arrow head style
shorten > = 1pt, % don't touch arrow head to node
auto,
node distance = 3cm, % distance between nodes
semithick % line style
]
every state/.style={%
draw = black,
thick,
fill = white,
minimum size = 1mm
}
\matrix[%
matrix of math nodes,
column sep = 2.1cm,
row sep = 2.1cm,
inner sep = 0pt,
nodes={state}
] (m) {%
x_1 & x_2 & x_3 \\
y_1 & y_2 & y_3 \\
};
\path[->] (m-1-1) edge node {5} (m-2-1)
(m-2-1) edge node[near start, swap] {-8} (m-1-2)
(m-1-1) edge node[near start] {4} (m-2-2)
(m-1-2) edge node {3} (m-2-2)
(m-1-2) edge node[near end, swap] {3} (m-2-3)
(m-2-2) edge node[near end] {-6} (m-1-3)
(m-1-3) edge node {3} (m-2-3);
\end{tikzpicture}
\end{document}
Responder3
Com o uso adequado da biblioteca TikZ positioning
right of = ...
é com o uso da biblioteca errado, o certo é right=of ...
), biblioteca adicionada quotes
e todas as definições de estilos determinadas como opção de tikzpicture
, o código pode ficar claro, sem qualquer confusão como é estranha definição de state
estilo etc, ou seja, conciso:
\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{automata,
positioning, quotes}% <-- added libraries
\begin{document}
\begin{tikzpicture}[
> = stealth, % arrow head style
shorten > = 1pt, % don't touch arrow head to node
auto,
node distance = 3cm,% distance between nodes
semithick, % edge thick
]
\node[state] (y1) {$y_1$};
\node[state] (y2) [right=of y1] {$y_2$};
\node[state] (y3) [right=of y2] {$y_3$};
\node[state] (x1) [above=of y1] {$x_1$};
\node[state] (x2) [above=of y2] {$x_2$};
\node[state] (x3) [above=of y3] {$x_3$};
\path[->] (x1) edge ["$5$"] (y1)
(y1) edge [pos=0.3, "$-8$"] (x2)
(x1) edge [pos=0.3, "$ 4$"] (y2)
(x2) edge ["$3$"] (y2)
(x2) edge [pos=0.3, "$ 3$"] (y3)
(y2) edge [pos=0.3, "$-6$"] (x3)
(x3) edge ["$3$"] (y3);
\end{tikzpicture}
\end{document}
Editar:
Caso você queira ter rótulos de bordas menores, mais próximos das bordas, adicione entre tikzpicture
opções, por exemplo
every edge quotes/.append style = {font=\footnotesize, inner sep=2pt}
Responder4
Use a opção sloped
para colocar o texto na diagonal
\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{arrows.meta, calc, chains, positioning, shapes, shapes.arrows}
\usepackage{enumitem}
\newlist{tikzitemize}{itemize}{1}% <-- defined new list
\setlist[tikzitemize]{nosep, % <-- new list setup
topsep = 0pt ,
partopsep = 0pt ,
leftmargin = * ,
label = $\bullet$ ,
before = \vspace{-1.5ex},
}
\begin{document}
\begin{tikzpicture}[
> = stealth, % arrow head style
shorten > = 1pt, % don't touch arrow head to node
auto,
node distance = 3cm, % distance between nodes
semithick % line style
]
\tikzstyle{state}=[
draw = black,
thick,
fill = white,
minimum size = 1mm,
circle,
]
\node[state] (y1) {$y_1$};
\node[state] (y2) [right of=y1] {$y_2$};
\node[state] (y3) [right of=y2] {$y_3$};
\node[state] (x1) [above of=y1]{$x_1$};
\node[state] (x2) [above of=y2] {$x_2$};
\node[state] (x3) [above of=y3] {$x_3$};
\path[->] (x1) edge node[sloped,above] {5} (y1);
\path[->] (y1) edge node[sloped] {-8} (x2);
\path[->] (x1) edge node[sloped] {4} (y2);
\path[->] (x2) edge node[sloped,above] {3} (y2);
\path[->] (x2) edge node[sloped] {3} (y3);
\path[->] (y2) edge node[sloped] {-6} (x3);
\path[->] (x3) edge node[sloped,above] {3} (y3);
\end{tikzpicture}
\end{document}