Question: Latex typesetting of delayDotProduct

I would like to implement a rule for typeseting delayDotProduct in latex exports (in which this expressions appears in plain form). It corresponds to dot products of vectors/matrices with the "." operator. I tried to define 

`latex/Typesetting:-delayDotProduct`:=proc(f1,f2,f3)
sprintf("{ {%s}{%s} }",cat(`latex/print`(f1)),cat(`latex/print`(f2)))
end proc:

which does not do the job. 

Edit:

A related question: How can I make

D[1,1](x)(t)

produce x''(t) in latex output?

Please Wait...