Angling text above a Tikz timeline
Rotating only two labels can be quite ugly, you may want to rotate all the labels the same way. documentclass[12pt,a4paper]{article} …
Rotating only two labels can be quite ugly, you may want to rotate all the labels the same way. documentclass[12pt,a4paper]{article} …
Apparently, the idea of scoping the relevant code in pics works. Here is an example: documentclass[tikz,border=2mm]{standalone} usetikzlibrary{fit} tikzset{pic shift/.store in=shiftcoord, …
The matrix is imho the best solution. If you don’t want all lines crampled, why did you put node={inner sep=0pt}? …
This is a long question and I am not sure I read everything but the dimension too large error is …
Revised version after your feedback. This is an attempt of an answer but no guarantee that it works. Why should …
You should just smash the [b]aseline of those words/phrases: documentclass{article} usepackage{tikz,amsmath} begin{document} usetikzlibrary{positioning,calc} tikzstyle{block} = [draw, rectangle, minimum height=1cm, minimum …
Just put both graphics in the same tikzpicture environment and move the second one down with yshift=-4.5cm documentclass[varwidth]{standalone} usepackage{pgfplots} begin{document} …
You are asking whether one can achieve the desired alignment with positioning only. The answer is yes, but you make …
an alternative, with using TikZ libraries calc (for calculation of middle points on edges), positioning (for positioning of nodes) and …
Another approach for left-aligning the bar labels is to use align=left, text width=<some value>, where <some value> should be large …