如何在图片旁边写出层次逻辑表达式?

如何在图片旁边写出层次逻辑表达式?

如何在图片旁边写出分层逻辑表达式(如附图)?

在此处输入图片描述

答案1

欢迎!您可以使用它forest来绘制这棵树。

\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree={math content,calign=fixed edge angles}
[\land
 [p]
 [\lor
  [\lnot
   [q]
  ]
  [r]
 ]
]
\end{forest}
\end{document}

在此处输入图片描述

或者

\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree={math content,s sep+=1.5em}
[\land
 [p]
 [\lor
  [\lnot
   [q]
  ]
  [r]
 ]
]
\end{forest}
\end{document}

在此处输入图片描述

相关内容