答案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}