MWE:
\documentclass{article}
\usepackage{bm}
\begin{document}
$$x(t), \bf{x}(t), \bf{x(t)}$$
\end{document}
Result:
Question:
Why are the second and third x(t) typeset the same? In the second expression, it was asked to apply \bf to only x.
EDIT:
I had not payed attention to it when asking the question, but I would like to have a bold and italic x.



\bfis a declaration that applies to everything until the end of the current group. Use\mathbf{x}(t)instead. Nowadays (=the last thirty years) one doesn't use\bfanymore. – gernot Apr 10 '17 at 17:15\bminstead of\bf. – gernot Apr 10 '17 at 17:17$$...$$. Use\[...\]instead. Why is [ … ] preferable to $$ … $$? – gernot Apr 10 '17 at 17:18