如何在 Overleaf 中绘制费曼路径?

如何在 Overleaf 中绘制费曼路径?

我正在准备我的论文,我需要将 Feynman 路径积分方法的文件(如下图所示)添加到我的项目中。我正在使用 overleaf,但我不知道该怎么做,请帮助我。 在此处输入图片描述

答案1

我不会为你画出整个东西。不过,我给你一个很好的起点。我在这里做的是初学者的东西,有很多更优雅(和更短)的方式来绘制它。

如果你遇到困难,这里有一本非常好的手册:http://texdoc.net/texmf-dist/doc/generic/pgf/pgfmanual.pdf

你应该能够在几个小时内画出这个:

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{arrows}

\begin{document}

\begin{tikzpicture}
    \draw [color=gray!30]  [step=1cm] (0,-4) grid (10,4); 
    \draw[->,thick] (0,0) -- (10,0) node[below] {$t$};
    \draw[<->,thick] (0,-4) -- (0,4) node[left] {$x$};
    \draw [color=red] plot coordinates {(0,0) (1,1.5) (2,-1.5) (3,0.5) (4,0) (4.25,-0.5)};
    \draw [color=black](0,0) node[left]{$(x,t)$};
    \fill[red] (0,0) circle (2pt);
    \fill[red] (1,1.5) circle (2pt);
    \fill[red] (2,-1.5) circle (2pt);
    \fill[red] (3,0.5) circle (2pt);
    \fill[red] (4,0) circle (2pt);
    \fill[red] (4.5,-1) circle (2pt);
    \fill[red] (5,-1) circle (2pt);
    \fill[red] (5.5,-1) circle (2pt);
\end{tikzpicture}

\end{document}

tikz 图

相关内容