I was wondering if it was possible to bold the first line of an enumerated list without effecting the remainder of the list. The output I want would be the same as:
\begin{enumerate}
\item \textbf{This is a question, what is the answer?} \\
This is the answer, in standard font!
\item \textbf{This is another question, what is the next answer?} \\
Here is the answer, also not in bold.
\end{enumerate}
Is it possible to do this without \textbf tags before every question, some way to automate it? using \begin{enumerate}\bfseries bolds everything.
There are some similar questions but the answers are either to just wrap each line in a tag or seem very inelegant.


\\? Or, perhaps a blank line? – Werner Apr 07 '15 at 17:21\documentclass{...}and ending with\end{document}. In addition: There are packages for typesetting question/solutions etc, e.g.probsln,tasks,answers– Apr 07 '15 at 17:24\\to separate question and answer, rather than\item qqqq \\ aaaaI'd use custom commands such as\question{qqqqqq}\answer{aaaaa}then it is easy to specify whatever style you want – David Carlisle Apr 07 '15 at 17:24