How can I input ' symbol in tikz node?
I wish it looks like
But actually '9' will be like below in tikz:
\node[draw] (N) {'9'};
How can I input ' symbol in tikz node?
I wish it looks like
But actually '9' will be like below in tikz:
\node[draw] (N) {'9'};
\documentclass{article}
\usepackage{tikz}
\usepackage{textcomp}
\begin{document}
\begin{tikzpicture}
\node[draw] (N) {\textquotesingle9\textquotesingle};
\end{tikzpicture}
\end{document}
\node[draw,font=\sffamily] (N) {\textquotesingle 9 \textquotesingle};. this gives better approximation of showed example
– Zarko
Feb 10 '17 at 19:44