Skip to content

Commit

Permalink
Fix a typo in the bibtex entries (#200)
Browse files Browse the repository at this point in the history
* Fix a typo in the bibtex entries

* Use raw strings for the bibtex

* Replace \o{} with {\o}
  • Loading branch information
pnkraemer authored May 28, 2024
1 parent a91486b commit e624132
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ We would appreciate if you cited it as follows:
```bibtex
@article{kraemer2024gradients,
title={Gradients of functions of large matrices},
author={Kr\"amer, Nicholas and Moreno-Mu\~noz, Pablo and Roy, Hrittik and Hauberg S\o{}ren},
author={Kr\"amer, Nicholas and Moreno-Mu\~noz, Pablo and Roy, Hrittik and Hauberg, S{\o}ren},
journal={arXiv preprint arXiv:2405.17277},
year={2024}
}
Expand Down
12 changes: 6 additions & 6 deletions matfree/decomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class _LanczosAlg(containers.NamedTuple):
def tridiag_sym(
matvec, krylov_depth, /, *, reortho: str = "full", custom_vjp: bool = True
):
"""Construct an implementation of **tridiagonalisation**.
r"""Construct an implementation of **tridiagonalisation**.
Uses pre-allocation, and full reorthogonalisation if `reortho` is set to `"full"`.
It tends to be a good idea to use full reorthogonalisation.
Expand All @@ -53,8 +53,8 @@ def tridiag_sym(
```bibtex
@article{kraemer2024gradients,
title={Gradients of functions of large matrices},
author={Kr\"amer, Nicholas and Moreno-Mu\\~noz, Pablo and
Roy, Hrittik and Hauberg S\\o{}ren},
author={Kr\"amer, Nicholas and Moreno-Mu\~noz, Pablo and
Roy, Hrittik and Hauberg, S{\o}ren},
journal={arXiv preprint arXiv:2405.17277},
year={2024}
}
Expand Down Expand Up @@ -265,7 +265,7 @@ def hessenberg(
custom_vjp: bool = True,
reortho_vjp: str = "match",
):
"""Construct a **Hessenberg-factorisation** via the Arnoldi iteration.
r"""Construct a **Hessenberg-factorisation** via the Arnoldi iteration.
Uses pre-allocation, and full reorthogonalisation if `reortho` is set to `"full"`.
It tends to be a good idea to use full reorthogonalisation.
Expand All @@ -283,8 +283,8 @@ def hessenberg(
```bibtex
@article{kraemer2024gradients,
title={Gradients of functions of large matrices},
author={Kr\"amer, Nicholas and Moreno-Mu\\~noz, Pablo and
Roy, Hrittik and Hauberg S\\o{}ren},
author={Kr\"amer, Nicholas and Moreno-Mu\~noz, Pablo and
Roy, Hrittik and Hauberg, S{\o}ren},
journal={arXiv preprint arXiv:2405.17277},
year={2024}
}
Expand Down

0 comments on commit e624132

Please sign in to comment.