如何在 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}

在此輸入影像描述

相關內容