Currently, when using the induct rule, an automated goal split is generated:
for instance:
theorem example:
assumes a: "A"
assumes b: "B"
shows "A ∧ B"
proof (induct rule: conjI)
generates automatically the following text with the proof outline with cases to be selected and pasted:
A
B
Proof outline with cases:
case 1
then show ?case sorry
next
case 2
then show ?case sorry
qed
Would it it be possible to generate the proof outline with commented cases to be selected and pasted: For instance we would have:
A
B
Proof outline with cases:
case 1 (* A *)
then show ?case sorry
next
case 2 (* B *)
then show ?case sorry
qed
Thank you.
Mamoun