tikz - 如何输入 ' 符号

tikz - 如何输入 ' 符号

如何在 tikz 节点中输入 ' 符号?

我希望它看起来像

在此处输入图片描述

但实际上 tikz 中的 '9' 将如下所示:

\node[draw] (N) {'9'};

在此处输入图片描述

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{tikz}
\usepackage{textcomp}     


\begin{document}

\begin{tikzpicture}
\node[draw] (N) {\textquotesingle9\textquotesingle};    
\end{tikzpicture}

\end{document}

相关内容