4

MWE

\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usepackage{tikz-timing}
\usetikztiminglibrary[dual arrows]{clockarrows}
\begin{document}
\begin{tikztimingtable}[
scale=2.5,
timing/slope=0.1,
timing/rowdist=3ex,
]
\textnormal{Clock} &  [black] {h} 47{c} \\ 
\extracode
\begin{pgfonlayer}{background}
\node[anchor=east] at (row1.north west){\tiny +5V};
\node[anchor=east] at (row1.south west){\tiny 0};
\vertlines[help lines,red]{0,1,3,5,7,9,11,13,15,17,19,21,23}
\end{pgfonlayer}
\tablegrid
\end{tikztimingtable}
\end{document}

And output

enter image description here

The clock pulses are shifting. How can we do?

Özgür
  • 3,270
  • 2
    As Martin mentions in the manual, scale key won't scale things properly. He recommends scalebox or putting things inside a node. It seems a little awkward why he does that though. – percusse Jul 12 '15 at 16:57

1 Answers1

3

Some thing like this:

enter image description here

TikZ-timing diagrams scale relative to the font size as stated in the package documentation. Options for scaling, then, can be using a \scalebox{<factor >}{<content>} or putting things inside a node as mentioned in the documentation and also noted by @percusse in a comment. A more natural way, though, could be scaling like a normal text, that is, using standard sizes (\small, \large, \Large, ...etc) or issuing \fontsize{<size>}{<baselineskip>} command. Here, I used \Huge for example:

\documentclass[border=2pt]{standalone}
\usepackage{tikz}
\usepackage{tikz-timing}
\usetikztiminglibrary[dual arrows]{clockarrows}
\begin{document}

{%
\Huge %\fontsize{40}{40}\selectfont
\begin{tikztimingtable}[line width=.5pt,
timing/slope=0.1,
timing/rowdist=3ex,%
]
\textnormal{\small Clock} &  [black] {h} 47{c} \\ 
\extracode
\begin{pgfonlayer}{background}
\node[anchor=east] at (row1.north west){\tiny +5V};
\node[anchor=east] at (row1.south west){\tiny 0};
\vertlines[help lines,red]{0,1,3,5,7,9,11,13,15,17,19,21,23}
\end{pgfonlayer}
\tablegrid
\end{tikztimingtable}
}
\end{document}
AboAmmar
  • 46,352
  • 4
  • 58
  • 127