乳胶中的双光子过程图

乳胶中的双光子过程图

在我的文档中,我必须反复显示包含如下图表的各种图形: 在此处输入图片描述

我想知道哪种方法可以有效地在乳胶文档中满足这一需求?我必须能够改变状态,以及过渡的感觉。任何建议都将不胜感激。

答案1

您可以使用下一个作为起点:

在此处输入图片描述

\documentclass[tikz, border=2mm]{standalone}
\usepackage{amssymb}
\usetikzlibrary{positioning,arrows}

\begin{document}
\begin{tikzpicture}[>=stealth']
\coordinate (dash) at (0,0);
\coordinate[below=3cm of dash] (psii);
\coordinate[below=1.5cm of psii] (psif);

\draw[dashed, thick] (dash)--++(0:5cm);
\draw[thick] (psii)--++(0:5cm) node[right]{$|\psi_i\rangle$};
\draw[thick] (psif)--++(0:5cm) node[right]{$|\psi_f\rangle$};;

\draw[->] ([xshift=1cm]psii) -- ([xshift=1cm]dash) node[left, midway] (hwi) {$\hslash\omega_I$};
\draw[<-] ([xshift=3cm]psif) -- ([xshift=3cm]dash) coordinate(aux);
\path (aux|-hwi) node[right] {{$\hslash\omega_S$}};
\end{tikzpicture}
\end{document}

更新:如何嵌入tikzpicture乳胶文档

tikzpicture您可以在文档中的任意位置插入.tex。它被视为与任何其他字符一样。接下来您将看到两个示例,第一个示例创建一个新段落并将图形居中。第二个示例使用浮动figure环境。

\documentclass{article}

\usepackage{lipsum}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows}

\begin{document}

\lipsum[1]

{\par\centering
\begin{tikzpicture}[>=stealth']
\coordinate (dash) at (0,0);
\coordinate[below=3cm of dash] (psii);
\coordinate[below=1.5cm of psii] (psif);

\draw[dashed, thick] (dash)--++(0:5cm);
\draw[thick] (psii)--++(0:5cm) node[right]{$|\psi_i\rangle$};
\draw[thick] (psif)--++(0:5cm) node[right]{$|\psi_f\rangle$};;

\draw[->] ([xshift=1cm]psii) -- ([xshift=1cm]dash) node[left, midway] (hwi) {$\hslash\omega_I$};
\draw[<-] ([xshift=3cm]psif) -- ([xshift=3cm]dash) coordinate(aux);
\path (aux|-hwi) node[right] {{$\hslash\omega_S$}};
\end{tikzpicture}\par}

\lipsum[1-5]

\begin{figure}\centering
\begin{tikzpicture}[>=stealth']
\coordinate (dash) at (0,0);
\coordinate[below=3cm of dash] (psii);
\coordinate[below=1.5cm of psii] (psif);

\draw[dashed, thick] (dash)--++(0:5cm);
\draw[thick] (psii)--++(0:5cm) node[right]{$|\psi_i\rangle$};
\draw[thick] (psif)--++(0:5cm) node[right]{$|\psi_f\rangle$};;

\draw[->] ([xshift=1cm]psii) -- ([xshift=1cm]dash) node[left, midway] (hwi) {$\hslash\omega_I$};
\draw[<-] ([xshift=3cm]psif) -- ([xshift=3cm]dash) coordinate(aux);
\path (aux|-hwi) node[right] {{$\hslash\omega_S$}};
\end{tikzpicture}
\caption{Two photon processes diagram}
\end{figure}

\end{document}

在此处输入图片描述

相关内容