You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a context where a namespace has been open-ed, it appears the column width for the theorem row is based on a fully qualified name for the theorem (even though such name is not displayed), which throws off the spacing for the whole table. See below.
Minimal example:
import Mathlib.Tactic.Explode
namespace LongNamedNamespace
axiomTheTheorem (x: Type): x = x
end LongNamedNamespace
sectionopen LongNamedNamespace
theoremTheorem2 (x: Type) : x = x := by
apply TheTheorem;
/-Theorem2 : ∀ (x : Type), x = x0│ │ x ├ Type1│ │ TheTheorem │ x = x2│0,1│ ∀I │ ∀ (x : Type), x = x-/
#explode Theorem2
end/-Theorem2 : ∀ (x : Type), x = x0│ │ x ├ Type1│ │ LongNamedNamespace.TheTheorem │ x = x2│0,1│ ∀I │ ∀ (x : Type), x = x-/
#explode Theorem2
The text was updated successfully, but these errors were encountered:
In a context where a namespace has been
open
-ed, it appears the column width for the theorem row is based on a fully qualified name for the theorem (even though such name is not displayed), which throws off the spacing for the whole table. See below.Minimal example:
The text was updated successfully, but these errors were encountered: