Skip to content

Commit

Permalink
docs: fix references.bib (#14689)
Browse files Browse the repository at this point in the history
This PR removes `\url` and `\_` commands in `references.bib`. The existence of them breaks leanprover/doc-gen4#209.

- The first is `howpublished = {\url{...}}`. I think it's better to use the standard `url` field. Meanwhile `howpublished` field is preserved since some bibtex parser complains about missing that field.
- There are some `\_` in `url` and `doi` fields. I think it's better to replace them with `_`; there are already some `_` in `url` and `doi` fields of other bibitems.
- There is `$K\_X$`, but which, after checking the original article, should be `$K_X$`.
  • Loading branch information
acmepjz committed Jul 13, 2024
1 parent edcb1f9 commit 4bd8d80
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ @Misc{ avigad_moura_kong-2017
author = {Jeremy Avigad and Leonardo de Moura and Soonho Kong},
title = {{T}heorem {P}roving in {L}ean},
year = {2017},
howpublished = {\url{https://leanprover.github.io/theorem_proving_in_lean/}}
howpublished = {},
url = {https://leanprover.github.io/theorem_proving_in_lean/}
}

@Book{ axler2015,
Expand Down Expand Up @@ -1376,8 +1377,8 @@ @InProceedings{ fuerer-lochbihler-schneider-traytel2020
pages = {58--78},
publisher = {Springer},
year = {2020},
url = {https://doi.org/10.1007/978-3-030-51054-1\_4},
doi = {10.1007/978-3-030-51054-1\_4},
url = {https://doi.org/10.1007/978-3-030-51054-1_4},
doi = {10.1007/978-3-030-51054-1_4},
timestamp = {Mon, 06 Jul 2020 09:05:32 +0200},
biburl = {https://dblp.org/rec/conf/cade/FurerLST20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
Expand Down Expand Up @@ -2148,7 +2149,7 @@ @Article{ kelleyVaught1953

@Article{ kleiman1979,
author = {Kleiman, Steven Lawrence},
title = {Misconceptions about {$K\_X$}},
title = {Misconceptions about {$K_X$}},
journal = {Enseign. Math. (2)},
volume = {25},
year = {1979},
Expand Down

0 comments on commit 4bd8d80

Please sign in to comment.