Tagged Questions
6
votes
3answers
836 views
TikZ: Using Loop to Draw Grid of Nodes
I am trying to draw an Ising model (in my case, a grid of nodes with an undirected edge between adjacent nodes on the same row or column) using TikZ. I have the grid of nodes working nicely using a ...
5
votes
1answer
929 views
Gradient color on TikZ tree
Mindmap creates connection line composed of the parent/child colors. Is it possible to apply such effect on normal parent/child trees to connect the parent and child nodes with a gradient of their ...
2
votes
2answers
185 views
Declare the point for incomming arrows on nodes
is there a way to tell the a node, where the arrow shall arrive?
At this example, the Arrow from Node B to A should arrive exactly in the middle of the "D" from "Dies". It should start on top-center ...
5
votes
2answers
528 views
Edit TikZ Chains to add labels and maintain the option to add individual styles
I find a code that redefines the way one defines a chain (\chainin), and allows one to include labels in the chains. However, this code disables the style options (by and with keyword). However, I ...
4
votes
2answers
364 views
Redraw a kernel scheme diagram
I'm trying to redraw a kernel scheme diagram for a university lecture note. This is how far I got:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
...
22
votes
3answers
6k views
Add more anchors to standard TikZ nodes
I frequently find myself needing more than the standard anchors TikZ nodes provide, i.e. north, north east, east and so forth. I usually use coordinate calculations for this, as in the example below, ...
14
votes
3answers
6k views
Tikz - How to Draw Boxes Around Set of Nodes
How to draw the boxes as shown in the attached image? I could only manage to draw the chart but could not highlight the desired node / nodes with a rectangle box. Preferably dotted. I could not draw ...
9
votes
2answers
2k views
Tikz - How to connect nodes
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\begin{document}
\begin{tikzpicture}
\draw (0,2.5) node[minimum height=1cm,minimum width=3cm,draw] (A) {A};
\draw (5,0) ...
9
votes
2answers
3k views
Path From and To Same Node in tikz Flowchart
I'm working on creating flowcharts directly inside LaTeX documents using tikz. I am admittedly an extreme novice with tikz, although I have quite a bit of experience using LaTeX.
My problem is when ...