سؤال

I have an Isabelle theory that collects all my results and only presents them, so I’d currently apply [no_vars] to all my @thm antiquotations. (This suppresses the question marks in the schematic variables which are undesirable in the final presentation.)

Is there a way to make Isabelle use no_vars once for the whole theory?

هل كانت مفيدة؟

المحلول

I think the canonical way (whatever that means) is to add such options to your session ROOT. Either globally, e.g.,

session A = B +
  options [show_question_marks = false]
  theories
    ...

or per theory, e.g.,

session A = B +
  theories [show_question_marks = false]
    T1
  theories
    T2
    ...

نصائح أخرى

The magic invocation is

declare [[show_question_marks = false]]

as documented in the section “Details of printed output” in isar-ref.pdf.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top