I want to show Double quotes and Parentheses in nodes.
Without using A[label="Rahul(A)"]. I want to show during Rahul(A) -> B
I want to show Double quotes and Parentheses in nodes.
Without using A[label="Rahul(A)"]. I want to show during Rahul(A) -> B
The only way I know to do that (without label) is by enclosing the node name between double quotes, and escaping double quotes which are part of the node name:
This works:
"Rahul(A)" -> "Rahul \"B\"";
gv.addln("\"A(SS)\" -> B;")
for example. –
Trawler © 2022 - 2024 — McMap. All rights reserved.