You could also use the /sa command to manually place a reference in Base's page.
namespace fundamental
{
/**
* Basic function
* /sa Coordinate
*/
template
class Base
{
public:
T x; ///< x coordinate
T y; ///< y coordinate
};
typedef Base Coordinate; ///< Point coordinate class
}