Skip to content

Commit

Permalink
Get references working
Browse files Browse the repository at this point in the history
  • Loading branch information
cohensbw committed Oct 14, 2023
1 parent ccfd822 commit 6d1040a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ A very similar Julia package implementing and exporting many of the same algorit
To install [`StableLinearAlgebra.jl`](https://github.com/SmoQySuite/StableLinearAlgebra.jl) run following in the Julia REPL:

```julia
] add StableLinearAlgebra
julia> ]
pkg> add StableLinearAlgebra
```
9 changes: 6 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ using Documenter
using DocumenterCitations
using LinearAlgebra

bib = CitationBibliography(
joinpath(@__DIR__, "src", "references.bib");
style=:numeric
)
DocMeta.setdocmeta!(StableLinearAlgebra, :DocTestSetup, :(using StableLinearAlgebra); recursive=true)
bib = CitationBibliography(joinpath(@__DIR__, "references.bib"), sorting = :nyt)

makedocs(
bib,
makedocs(;
plugins=[bib],
modules=[StableLinearAlgebra],
authors="Benjamin Cohen-Stead <[email protected]>",
repo="https://github.com/SmoQySuite/StableLinearAlgebra.jl/blob/{commit}{path}#{line}",
Expand Down
6 changes: 4 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ A very similar Julia package implementing and exporting many of the same algorit
To install [`StableLinearAlgebra.jl`](https://github.com/SmoQySuite/StableLinearAlgebra.jl) run following in the Julia REPL:

```julia
] add StableLinearAlgebra
julia> ]
pkg> add StableLinearAlgebra
```

## References

```@bibliography
```
*
```
File renamed without changes.
2 changes: 1 addition & 1 deletion src/overloaded_functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ copyto!(U::LDR, I::UniformScaling, ignore...) = ldr!(U,I)
@doc raw"""
copyto!(U::LDR{T,E}, V::LDR{T,E}, ignore...) where {T,E}
Copy the ['LDR'](@ref) factorization `V` to `U`.
Copy the [`LDR`](@ref) factorization `V` to `U`.
"""
copyto!(U::LDR{T,E}, V::LDR{T,E}, ignore...) where {T,E} = ldr!(U, V)

Expand Down

0 comments on commit 6d1040a

Please sign in to comment.