如何在 TikZ LaTeX 中绘制量子测量

如何在 TikZ LaTeX 中绘制量子测量

我想在 TikZ LaTeX 中绘制量子测量,如下图所示!有什么想法吗?

在此处输入图片描述

答案1

以下是改编自使用 TikZ 测量仪表量子电路@Jasper Habicht 的。

\documentclass[12pt]{article}
\usepackage{circuitikz}
\usetikzlibrary{arrows,decorations.pathreplacing}
\begin{document}
\tikzset{meter/.append style={draw, inner sep=10, rectangle, font=\vphantom{A}, minimum width=30, line width=.8,  path picture={\draw[black] ([shift={(.1,.3)}]path picture bounding box.south west) to[bend left=50] ([shift={(-.1,.3)}]path picture bounding box.south east);\draw[black,-{Latex[length=8mm, width=1.8mm]}] ([shift={(0,.2)}]path picture bounding box.south) -- ([shift={(.4,-.1)}]path picture bounding box.north);}}}
\begin{circuitikz}
\node[meter] (meter) at (0,0) {};
\end{circuitikz}
\end{document}

在此处输入图片描述

相关内容