Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nth_rewriteの記述追加 #3

Merged
merged 3 commits into from
Sep 24, 2023
Merged

nth_rewriteの記述追加 #3

merged 3 commits into from
Sep 24, 2023

Conversation

s-taiga
Copy link
Contributor

@s-taiga s-taiga commented Sep 24, 2023

下記内容についてのプルリクエストです。

https://github.com/lean-ja/tactic-cheetsheet/issues/1

@s-taiga s-taiga linked an issue Sep 24, 2023 that may be closed by this pull request
@Seasawher
Copy link
Member

Examplessrc のファイルには Examples → src の単射ができるようにしてください.CONTRIBUTING.md には

新しいタクティクのコード例を追加したら,Examples.lean ファイルに追記してください.

と書いていたので誤解があっても仕方ない気がしていて,申し訳ないのですが,nth_rewrite.md を作成していない以上,NthRewrite.lean は作らないでください.

後で CONTRIBUTING.md を直しておきます.

@Seasawher
Copy link
Member

mdbook の機能として

-- ANCHOR: first
example : (x + y) ^ 2 = x ^ 2 + 2 * x * y + y ^ 2 := by
  ring
-- ANCHOR_END: first

上記のような感じで ANCHOR でくくると,md ファイル上で括られている部分だけを以下のように引用できます.

{{#include ../Examples/Ring.lean:first}}

これを使って Rw.lean にコード例を追記してください.

@s-taiga
Copy link
Contributor Author

s-taiga commented Sep 24, 2023

上記対応しました。

Examples/Rw.lean Outdated
import Mathlib.Algebra.Group.Basic
import Mathlib.Tactic.NthRewrite

-- ANCHOR_END: nth_rewrite_import
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ライブラリの依存関係は needs: という書き方で本文中に書いてください.

コード例に import 文を含めないでください.

@Seasawher
Copy link
Member

お疲れ様です.こちらで多少手を加えてマージしようと思います.

* needs: を使って依存関係を示す
* 段落内で改行しない
@Seasawher Seasawher merged commit b54f568 into main Sep 24, 2023
1 check passed
@Seasawher Seasawher deleted the add_nth_rewrite branch September 24, 2023 12:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

nth_rewriteの記載追加
2 participants