I have the same problem. I use linking extensively to denote relationships between elements. And I want to ignore the fact that links are unidirectional.
When I am generation information in RTF for a given element, I want to refer to the element at the other end of the link without knowing that the current element is the source element or the target element in the link relationship. An example -- Suppose I have the following link relationships:
Use case 1 ----> Use case 3 ----> Use case 4
Use case 2 ----> ----> Use case 5
When I generate the RTF documentation, I want the documentation on Use case 3 to be like the following:
1.1 Use Case 3
This is a description of the use case.
1.1.1 Related Use Cases
* Use Case 1
* Use Case 2
* Use Case 4
* Use Case 5
But unfortunately if I include just [highlight]source[/highlight] elements the list of related use cases will be use cases 1, 2, 3, and 3. If I choose just [highlight]target[/highlight] elements the list of related use cases will be use cases 3, 3, 4, and 5. And if I choose both [highlight]source[/highlight] and [highlight]target[/highlight] elements the list of related use cases will be 1, 3, 2, 3, 3, 4, 3, and 5. None of these scenarios is desirable, and there does not appear to be a way to get the RTF Generator to do what I want. I would be happy to be proved wrong. Let me know if you know how to do it.
Thanks......