作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当您熟悉一个项目时,符号很方便,但当您刚开始使用代码库时可能会感到困惑。我知道您可以使用白话 Set Printing All
关闭所有符号。但是,我想保留一些打印功能,例如隐式参数。全部打印如下:
Require Import Utf8_core.
Set Printing All.
Theorem contradiction_implies_anything : forall P Q : Prop,
(P /\ ~P) -> Q.
Proof.
1 subgoal (ID 120)
============================
forall (P Q : Prop) (_ : and P (not P)), Q
_
并将
forall
设为
∀
并展开我的符号。
Set Printing Notations
但这没有做任何事情,也没有启用
Set Printing Implicit.
Set Printing Coercions.
Set Printing Synth.
Set Printing Projections.
最佳答案
Printing Notations
的有趣之处在于您实际上必须对其进行 Unset
。
Unset Printing Notations.
Printing Notations
:
Controls whether to use notations for printing terms wherever possible. Default is on.
关于coq - 如何在 Coq 中暂时禁用符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59419172/
我是一名优秀的程序员,十分优秀!