Hi,
During my work with mathematics, I came across a problem with how to quantify directive Large etc. I need to quantify the directive to export my graphics to an external vector format. I copied an example from the help command Graphics.
Graphics[{Thick, Green, Rectangle[{0, -1}, {2, 1}], Red, Disk[], Blue,
Circle[{2, 0}], Yellow, Polygon[{{2, 0}, {4, 1}, {4, -1}}], Purple,
Arrowheads[Large], Arrow[{{4, 3/2}, {0, 3/2}, {0, 0}}], Black,
Dashed, Line[{{-1, 0}, {4, 0}}]}]
I tried FullForm to look inside, but no result.
Graphics[List[Thickness[Large],RGBColor[0,1,0],Rectangle[List[0,-1],List[2,1]],RGBColor[1,0,0],Disk[List[0,0]],RGBColor[0,0,1],Circle[List[2,0]],RGBColor[1,1,0],Polygon[List[List[2,0],List[4,1],List[4,-1]]],RGBColor[0.5`,0,0.5`],Arrowheads[Large],Arrow[List[List[4,Rational[3,2]],List[0,Rational[3,2]],List[0,0]]],GrayLevel[0],Dashing[List[Small,Small]],Line[List[List[-1,0],List[4,0]]]]]
I guess the problem is related to evaluating graphics by FrontEnd, but I don't know how to convince Mathematica to return an evaluated expression with substution by numbers.
Do you how to get result?