The options that are not given in myoptions are set at their default values if they are contained in defaultPGFOptions. Options not listed in possiblePGFOptions are discarded.
i1 : myoptions = hashTable {"fill"=>"black"}
o1 = HashTable{fill => black}
o1 : HashTable
|
i2 : pgfObject(textTag(point(20,30),"Hello world"),myoptions)
o2 = \draw (20,30) node[] {Hello world};
|