1

I want to create a link to a page in the documentation.

I am currently using

///  You will find a copy here. 
///
///  \ref clicn

I want the link to be here rather than the name of the page that clicn refers to.

Zeus
  • 1,485
  • 1
  • 17
  • 33
  • 1
    Not completely sure what you want, but from the documentation: \ref [”(text)”] so I think it might be \ref clicn "here" – albert Apr 30 '15 at 16:44

1 Answers1

0

This should work with \ref

//! \page handle MyPage
//! text in MyPage

//! Some variable. For additional information look at \ref handle "this cool page"
int myvar;

This is also answered here

kuga
  • 1,483
  • 1
  • 17
  • 38