Though not unbearable, I always feel a little nervous when typing partial derivatives at a specified place e.g. $u^{(1,0)}(0,x)$, which happens a lot when setting initial/boundary conditions for PDEs. As far as I know, people usually turn to the following 2 ways to obtain the partial derivative:
(* 1 *)
Derivative[1, 0][u][0, x]
(* 2 *)
D[u[t, x], t] /. t -> 0
Both are tedious in my view. Is there a better way to input it? Create an auxiliary function? Shortcut? Template?


CreatePaletteetc. (I'm really unfamiliar with these stuff!) One disadvantage of template in my view, is that I can't move out of it in a easy way. (If I useTab, the cursor just… loops! ) – xzczd May 09 '16 at 09:33Derivative[Placeholder[], Placeholder[]][Placeholder[]][Placeholder[], Placeholder[]] // PasteButton // CreatePalettesuit you better? Or use right cursor key or End? – Mr.Wizard May 09 '16 at 09:35