In the FaultDetectionTools package I have two functions called emmsyn with the distinct signatures:
julia> methods(emmsyn)
# 2 methods for generic function "emmsyn" from FaultDetectionTools:
[1] emmsyn(sysf::FDIModel{T1}, sysref::FDIFilterIF{T2}; poles, sdeg, smarg, nullspace, minimal, simple, regmin, normalize, freq, tcond, HDesign, offset, atol, atol1, atol2, atol3, rtol, fast) where {T1, T2}
@ C:\Users\Andreas\Documents\software\Julia\FaultDetectionTools.jl\src\FDIsynthesis.jl:3762
[2] emmsyn(sysf::FDIModel{T1}, sysr::Union{FDFilterIF{T2}, FDIModel{T2}}; poles, sdeg, smarg, nullspace, minimal, simple, regmin, normalize, freq, tcond, HDesign, offset, atol, atol1, atol2, atol3, rtol, fast) where {T1, T2}
@ C:\Users\Andreas\Documents\software\Julia\FaultDetectionTools.jl\src\FDIsynthesis.jl:3183
I would like to build cross-references in the documentation to these functions using @ref . I tried in several ways, as for example,
[`emmsyn`](@ref)
[`emmsyn(::FDIModel, ::FDFilterIF)`](@ref)
[`emmsyn(::FDIModel, ::FDIFilterIF)`](@ref)
but all links go to the second function (which is the first one in the source code). I wonder if there is a way to also obtain a link to the first function. Many thanks in advance for your help.