Skip to content

Commit 8843df7

Browse files
committed
use MathJax
1 parent 84058b7 commit 8843df7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A full and standardized implementation of the present library has been integrate
77

88
All procedures work with all types (`real`, `complex`) and kinds (32, 64, 128-bit floats).
99

10-
## [`solve`](@ref la_solve::solve) - Solve a linear matrix equation or a linear system of equations.
10+
## [solve](@ref la_solve::solve) - Solve a linear matrix equation or a linear system of equations.
1111

1212
### Syntax
1313

@@ -34,7 +34,7 @@ For a full-rank matrix, returns an array value that represents the solution to t
3434
- Raises [`LINALG_VALUE_ERROR`](@ref la_state_type::linalg_value_error) if the matrix and rhs vectors have invalid/incompatible sizes.
3535
- If `err` is not present, exceptions trigger an `error stop`.
3636

37-
## [`lstsq`](@ref la_least_squares::lstsq) - Compute a least squares solution to a system of linear equations.
37+
## [lstsq](@ref la_least_squares::lstsq) - Compute a least squares solution to a system of linear equations.
3838

3939
### Syntax
4040

@@ -178,7 +178,7 @@ Returns the solution array \f$ x \f$ with size \f$ n \f$ (for a single right-han
178178
**Optional arguments**:
179179
- `err`: Error handler.
180180

181-
## [`qr`](@ref la_qr::qr) - Compute the QR factorization of a matrix.
181+
## [qr](@ref la_qr::qr) - Compute the QR factorization of a matrix.
182182

183183
### Syntax
184184

@@ -223,7 +223,7 @@ The QR factorization matrices \f$ Q \f$ and \f$ R \f$ are returned in the corres
223223
- If `overwrite_a` is enabled, the input matrix `a` will be modified during computation.
224224

225225

226-
## [`qr_space`](@ref la_qr::qr_space) - Workspace size for QR operations.
226+
## [qr_space](@ref la_qr::qr_space) - Workspace size for QR operations.
227227

228228
### Syntax
229229

project/doxygen/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ FULL_SIDEBAR = NO
381381
TREEVIEW_WIDTH = 250
382382
EXT_LINKS_IN_WINDOW = NO
383383
FORMULA_FONTSIZE = 16
384-
USE_MATHJAX = NO
385-
MATHJAX_RELPATH = http://www.mathjax.org/mathjax
384+
USE_MATHJAX = YES
385+
MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/
386386
SEARCHENGINE = YES
387387
SERVER_BASED_SEARCH = NO
388388
#---------------------------------------------------------------------------

0 commit comments

Comments
 (0)