Skip to content

Commit

Permalink
Correct function name
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Oct 21, 2024
1 parent 4997f49 commit 453a4dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/QuaternionicLatexifyExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ end
function Base.show(io::IO, ::MIME"text/latex", q::AbstractQuaternion)
s = Latexify.LaTeXStrings.latexstring(
q isa QuatVec ? "" : Latexify.latexify(q[1], env=:raw, bracket=true),
_pm_latex_latexify(q[2]), "\\,\\mathbf{i}",
_pm_latex_latexify(q[3]), "\\,\\mathbf{j}",
_pm_latex_latexify(q[4]), "\\,\\mathbf{k}"
_pm_latex(q[2]), "\\,\\mathbf{i}",
_pm_latex(q[3]), "\\,\\mathbf{j}",
_pm_latex(q[4]), "\\,\\mathbf{k}"
)
print(io, s)
end
Expand Down

0 comments on commit 453a4dc

Please sign in to comment.