Simple question but couldn't find answer anywhere..
I'm trying to write a coordinate of a point as such: "(" Subscript[x, k] "," Subscript[y, k] ")"
But the output is something like this: (), x_k y_k
How do I write (x_k,y_k) instead?
Simple question but couldn't find answer anywhere..
I'm trying to write a coordinate of a point as such: "(" Subscript[x, k] "," Subscript[y, k] ")"
But the output is something like this: (), x_k y_k
How do I write (x_k,y_k) instead?
Row, but the question is unclear. – Szabolcs Oct 26 '20 at 17:38pt = {1, 1}; Graphics[{Point[pt], Text[StringForm["(``, ``)", Subscript[x, k], Subscript[y, k]], pt, {-1.25, -1.25}]}]– Bob Hanlon Oct 26 '20 at 18:23