}
@Override
public JComponent getAdditionalInfo() {
JPanel panel = new JPanel(new GridLayout(3, 1));
FancyJButton butt1 = new FancyJButton("Deterministic Turing Machine");
FancyScriptConverterJButton butt2 = new FancyScriptConverterJButton(
"Show LaTeX state table",
() -> "latex: " + LaTeX.PREAMBLE_CROP_PAGE + this.getLatexTable() + LaTeX.POSTAMBLE_STANDARD,
null,
null,
super.getFather());
if (!this.isDeterministic()) {
butt1 = new FancyJButton("Nondeterministic Turing Machine",
"Nondeterministic Turing Machine -- these are the nondeterministic transitions:\n\n"
+ this.getNondeterministicTrans().toString()
.replace(", ", ",\n").replace("[", "").replace("]", ""));
}