I'd like to produce a diagram like this
Is it even possible in TikZ?
MWE of my attempt
%\documentclass{standalone}
%\usepackage{tikz}
\documentclass[10pt,border=3mm,tikz]{standalone}% better visibility
\begin{document}
\begin{tikzpicture}
% First Horizontal Line and Vertical Lines
\draw [thick] (0,0) -- (5,0);
\draw [thick] (0,-0.2) -- (0,0.2);
\draw [thick] (5,-0.2) -- (5,0.2);
% Second Horizontal Line and Vertical Lines
\draw [thick] (6,0) -- (11,0);
\draw [thick] (6,-0.2) -- (6,0.2);
\draw [thick] (11,-0.2) -- (11,0.2);
\end{tikzpicture}
\end{document}





please do this for meservice. I would just draw this one graph (?) paper, then define\coordinatefor the relevant points, and lastly draw the lines and add the text. – daleif Aug 30 '23 at 10:35