If I use \begin{textbf} and \end{textbf} (for example) inside a minipage, it seems to apply only to the first character. Here's a simple example:
\documentclass{article}
\begin{document}
\begin{minipage}{10cm}
\begin{textbf}
This is a test.
\end{textbf}
\end{minipage}
\end{document}
Only the "T" of "This" appears bold. Am I doing something very stupid? (Probably!)