买者自负...

买者自负...

树被分成两页,一些树行之间插入了文本行。由于这本书是双面的,所以我不排版双面文档,所以树在下一页看起来向左移动了。左下角的分支神奇地跳过了两行,并从 (9) 开始编号。

作者是如何做到这一点的?如果 prooftrees 使这变得容易,我会这么做。

在此处输入图片描述

答案1

使用 prooftrees 已经可以实现其中的一些功能,但是由于错误,发布版本还不能从 6 开始进行行号编号。

如果你很细心,你可以split here使用我的其他答案并基于萨索·日瓦诺维奇的代码拆分prooftrees prooftree一次,在其间插入一些解释或者分页符或其他任何内容。

注意:这肯定会坏。我不知道在哪里,但毫无疑问它会坏。它几乎没有在这个证明上进行过测试,更不用说其他的了。

事实上,我发现了 2 个现有的错误prooftrees事实上,我在玩这个游戏没有将证明分成几部分。(这些问题将在下一版 Forest 推送到 CTAN 后不久得到修复。)

买者自负...

例如:

\documentclass{article}
\usepackage{prooftrees,amssymb}
% Sašo Živanović: https://tex.stackexchange.com/a/296771/
\def\hiddenparcommand{\par}
\forestset{%
  declare count register={split here level},
  declare toks register={split here interject},
  split here level'=-1,
  split here interject={},
  to widest/.style={
    tikz+={\path (\forestregister{tempdima}, \forestoption{y}) -- (\forestregister{tempdimb}, \forestoption{y});},
  },
  split here/.style={%
    split here level'/.option=level,
    split here interject={#1},
    split tree
  },
  split tree/.code={%
    \forestset{%
      draw tree stage/.style={
        for root'={
          tempdima/.min={x()+min_x()}{tree},
          tempdimb/.max={x()+max_x()}{tree},
          for tree={%
            to widest,
          },
        },
        for nodewalk/.wrap pgfmath arg={{draw tree processing order/.style={level<=####1}}{}}{split_here_level},
        for root'={draw tree},
        TeX/.wrap pgfmath arg={\bigskip\hiddenparcommand ####1\hiddenparcommand}{split_here_interject},
        for nodewalk/.wrap pgfmath arg={{draw tree processing order/.style={level>=####1}}{}}{(split_here_level)+1},
        for root'={draw tree},
      },
    }
  }
}
\begin{document}
\begin{prooftree}
  {
    line no shift=5,
    just refs right,
  }
  [Fa, name=fa
    [{\lnot((Fa \land \forall y (Fy \supset y=a))} \land Ga), checked
      [{\lnot(Fa \land \forall y (Fy \supset y=a))}, checked, split here={So far, so automatic. The right hand branch closes, for we have}
        [\lnot Fa, just={from:!u}, close={:!uuu,!c}
        ]
        [{\lnot \forall y (Fy \supset y=a)}, checked
          [{\exists y \lnot (Fy \supset y=a)}, just={from:!u}, checked=b
            [{\lnot (Fb \supset b=a)}, just={from:!u}
            ]
          ]
        ]
      ]
      [\lnot Ga
        [Fa \supset Ga, just=from 3
          [\lnot Fa, close={:fa,!c}]
          [Ga, close={:!uu,!c}]
        ]
      ]
    ]
  ]
\end{prooftree}
\end{document}

防裂树 防裂树

相关内容