将其放入乳胶中的简单步骤

将其放入乳胶中的简单步骤

我正在尝试将以下内容包含在我的其中一篇文章中。我尝试使用 msc 和 tikz 执行此操作,但没有得到好的结果。我正在寻找一些简单的解决方案,因为该图非常简单。另外,请注意文本的对齐方式。在此处输入图片描述 你能告诉我或者给我一些提示吗?

答案1

我一直太笨了,无法理解tikz,所以我给出了一个解决方案tabular

\documentclass[a4paper,12pt]{article}

\usepackage{amsmath,array}

\begin{document}

\renewcommand*{\arraystretch}{2}

\begin{tabular}{|l|}
\hline
My procedure (input : c, input : d) \\
\hline
\begin{tabular}{r>{$}c<{$}l}
John does $a$\\
John calculates $b$ \\
 & \xrightarrow{\qquad\text{sends $(a,b)$}\qquad} & Peter receives $a$, $b$ \\
 & & calculates $c$, $d$ \\
 & \xleftarrow{\qquad\text{sends $(c,d)$}\qquad}\\
John receives $c$, $d$
\end{tabular} \\
\hline
\end{tabular}
\end{document}

在此处输入图片描述

相关内容