LateX 中的哪个绘图 GUI 可以进行此类绘图?

LateX 中的哪个绘图 GUI 可以进行此类绘图?

有一些关于 TikZ 的 GUI 的帖子。我安装了几个 GUI,但找不到执行此简单绘图的功能。哪个 GUI 可以帮助我做到这一点?

我正在使用 Lyx。

在此处输入图片描述

答案1

欢迎来到 TeX.SE!我不认为我会为此使用任何 GUI。

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}
 \node[draw,thick,minimum width=1cm,minimum height=0.4cm,outer sep=4pt] at (0,0) (A) {};
 \node[draw,thick,minimum width=1cm,minimum height=0.4cm,outer sep=4pt] at (6,0) (B) {};
 \draw[thick] (A.north) -- (A.south) node[below] {$t_\mathrm{initial}$};
 \draw[thick] (B.north) -- (B.south) node[below] {$t_\mathrm{final}$};
 \draw[thick,latex-latex] ([yshift=4pt]A.north west) -- ([yshift=4pt]A.north
 east);
 \draw[thick,latex-latex] ([yshift=4pt]B.north west) -- ([yshift=4pt]B.north
 east);
 \draw[thick] (A.center) -- (B.center);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容