1

Is there a package or tikz macro I could use to make something like this:

enter image description here

I'm looking for a way to create the "high"/"low" zig zag line.

1 Answers1

4

The waveform picture can absolutely be created with the tikz-timing package.

How about this (you will have to do a bit of cleanup to get the propagation delays right):

\documentclass[border=5mm]{standalone}
\usepackage{tikz-timing}
\begin{document}

\begin{tikztimingtable}[% timing/slope=0.0, timing/.style={x=3ex,y=2ex}, x=2ex, timing/rowdist=3ex, timing/name/.style={font=\sffamily} ] CLK & h 7{LH} \ S & hH 6{L} 2{H} 5{L} \ R & l 3{L} 4{H} 4{L} 3{H} \ CLR_L & h 2{L} 12{H} \ \end{tikztimingtable}

\end{document}

Which produces this: enter image description here

Bill Nace
  • 379