Skip to content

Commit

Permalink
Correctly render math in HTML docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Jul 16, 2024
1 parent 1b65f0d commit 51b85b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ FORMULA_MACROFILE =
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

USE_MATHJAX = NO
USE_MATHJAX = YES

# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
# Note that the different versions of MathJax have different requirements with
Expand Down
2 changes: 1 addition & 1 deletion include/scran_graph_cluster/build_snn_graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace scran_graph_cluster {
* For the purposes of this ranking, each node has a rank of zero in its own nearest-neighbor set.
* More shared neighbors, or shared neighbors that are close to both observations, will generally yield larger weights.
* - `NUMBER` defines the weight between two nodes as the number of shared nearest neighbors between them.
* The weight can range from zero to \$k + 1\$, as the node itself is included in its own nearest-neighbor set.
* The weight can range from zero to \f$k + 1\f$, as the node itself is included in its own nearest-neighbor set.
* This is a simpler scheme that is also slightly faster but does not account for the ranking of neighbors within each set.
* - `JACCARD` defines the weight between two nodes as the Jaccard index of their neighbor sets,
* motivated by the algorithm used by the [**Seurat** R package](https://cran.r-project.org/package=seurat).
Expand Down

0 comments on commit 51b85b1

Please sign in to comment.