When using tikz-timing, the symbol D draws the data signal. I have two questions:
First, I would like to draw something like:
___ _____________ _ _ _ _ _________ ____
\/ some text left aligned \/
___/\_____________ _ _ _ _ _________/\____
However, after using D{some text} I cannot avoid the transition before [dotted] D;
Second, how to draw something like below, where // indicate that the signal is continued:
___ _____________//_________ ____
\/ some text centered \/
___/\_____________//_________/\____
An example code for the first question is as follows:
% ----------------------------------------------------------------
% Article Class (This is a LaTeX2e document) ********************
% ----------------------------------------------------------------
\documentclass[journal]{IEEEtran}
\usepackage{tikz}
\usepackage{tikz-timing}
% ----------------------------------------------------------------
\begin{document}
\def\htc{16}
\def\htcM{4}
\def\htcMI{1}
\def\tc{32}
\def\tcM{8}
\def\tcMT{16}
\def\tcMI{2}
\def\CNT{1.2}
\begin{figure}
\begin{tikztimingtable}[%
timing/dslope=0.3,
%timing/name/.style={text width=-2in},
xscale=1.1,yscale=1.1,
timing/rowdist=1.3,
timing/coldist=0,
line width=.5,
]
& 0.5D{} \tcMT D{$x_j(n)$} [dotted] \CNT D; \tcM D{} 0.7D{} \\
\end{tikztimingtable}
\end{figure}
\end{document}
(note the so api kept rejecting uploads so this is indirect)