Vertical align not working with tickspicture #481
AwesomeQuest
started this conversation in
Q&A
Replies: 1 comment 1 reply
-
Is this what you want? \documentclass{article}
\usepackage{tikz}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{width=0.8\textwidth,colspec={Q[c,m]|Q[c,m]}}
Factor & Feature \\
$K$ & \begin{tikzpicture}[baseline=(k.base)]
\draw[->] (0,0) -- ++(4,0);
\draw[red, thick] (0,1) -- ++(4,0);
\draw (2,1) node[above] (k) {$20\log_{10}{K}$};
\draw (4,0) node[below]{$\omega$};
\end{tikzpicture}\\
\end{tblr}
\end{document} Option Tikz doc for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need to make a table of equations and figures and the equations should vertically align with the figures.$K$ with the figure,
In the table below it seems that the
colspec
doesn't vertically align therowspec
doesn't work either.Thanks in advance for any pointers :)
Beta Was this translation helpful? Give feedback.
All reactions