-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve docs. * Remove artificial prefix emojis for Wikipedia. * also remove the manual 🔗 prefix from earlier. * A few improvements on the about page. * finish extending docs. * Forgot to add a link. * Ah, relative links. * fix a typo in a filename. * Update docs/src/misc/about.md --------- Co-authored-by: Mateusz Baran <[email protected]>
- Loading branch information
1 parent
66be9cc
commit b62ce19
Showing
12 changed files
with
152 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
a[href^="https://juliamanifolds.github.io/ManifoldsBase.jl/"]::before { | ||
content: ""; | ||
background-image: url('logo-manifoldsbase.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
a[href^="https://manoptjl.org/"]::before { | ||
content: ""; | ||
background-image: url('logo-manopt.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
a[href^="https://en.wikipedia.org/"]::before { | ||
content: ""; | ||
background-image: url('wikipedia.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
a[href^="https://juliamanifolds.github.io/ManifoldsBase.jl/"]::before { | ||
background-image: url('logo-manifoldsbase-dark.png'); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
# About `Manifolds.jl` | ||
|
||
## License | ||
|
||
[MIT License](https://github.com/JuliaManifolds/Manifolds.jl/blob/master/LICENSE) | ||
`Manifolds.jl` was started by [Seth Axen](https://github.com/sethaxen), [Mateusz Baran](https://github.com/mateuszbaran), [Ronny Bergmann](https://github.com/kellertuer), and [Antoine Levitt](https://github.com/antoine-levitt) in 2019, after a very fruitful discussion following the release of the first version of [`Manopt.jl`](https://manoptjl.org/). The goal of `Manifolds.jl` is to provide a library of manifolds in Julia. The manifolds are implemented using the [´ManifoldsBase.jl](https://github.com/JuliaManifolds/ManifoldsBase.jl/) interface. | ||
|
||
## Core Developers | ||
## Main developers | ||
|
||
- [Seth Axen](https://github.com/sethaxen) | ||
- [Mateusz Baran](https://github.com/mateuszbaran) | ||
- [Ronny Bergmann](https://github.com/kellertuer) | ||
|
||
## Former Main Developers | ||
|
||
- [Seth Axen](https://github.com/sethaxen) | ||
|
||
## Contributors | ||
(in alphabetical order) | ||
|
||
- [Nick Dewaele](https://github.com/Nikdwal) contributed the [Tucker manifold](../manifolds/tucker.md) | ||
- [Renée Dornig](https://github.com/r-dornig) contributed the [centered matrices](../manifolds/centeredmatrices.md) and the [essential manifold](../manifolds/essentialmanifold.md) | ||
- [David Hong](https://github.com/dahong67) contributed uniform distributions on the Stiefel and Grassmann manifolds. | ||
- [Johannes Voll Kolstø](https://github.com/johannvk) contributed the [symplectic manifold](../manifolds/symplectic.md), the [symplectic Stiefel manifold](../manifolds/symplecticstiefel.md) | ||
- [Manuel Weiß](https://github.com/manuelweisser) contributed [symmetric matrices](../manifolds/symmetric.md) | ||
|
||
See the [GitHub contributors page](https://github.com/JuliaManifolds/Manifolds.jl/graphs/contributors). | ||
as well as everyone else reporting, investigating, and fixing bugs or fixing typographical errors in the documentation, see the [GitHub contributors page](https://github.com/JuliaManifolds/Manifolds.jl/graphs/contributors). | ||
|
||
Of course all further [contributions](CONTRIBUTING.md) are always welcome! | ||
|
||
## Projects using `Manifolds.jl` | ||
|
||
- [Caesar.jl](https://juliarobotics.org/Caesar.jl/latest/concepts/using_manifolds/) | ||
- [ManoptExamples.jl](https://github.com/JuliaManifolds/ManoptExamples.jl) collecting examples of optimization problems on manifolds implemented using `Manifolds.jl` and [`Manopt.jl`](https://manoptjl.org). | ||
|
||
Do you use Manifolds.jl in you package? Let us know and open an [issue](https://github.com/JuliaManifolds/Manifolds.jl/issues/new/choose) or [pull request](https://github.com/JuliaManifolds/Manifolds.jl/compare) to add it to the list! | ||
|
||
## License | ||
|
||
[Contributions](CONTRIBUTING.md) are welcome! | ||
[MIT License](https://github.com/JuliaManifolds/Manifolds.jl/blob/master/LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.