[Tex/LaTex] BeamerArticle and \\

beamerbeamerarticle

I am trying to use beamer and beamerarticle to generate slides and accompanying notes. I noticed that the latex command \\ to start a new paragraph does not seem to work in the beamerarticle mode. Here is a minimal reproducible example. You will notice on compilation to pdf, that both sentences are printed on the same line. Any thoughts on why this is happening, and if there is a way to overcome this behavior?

\documentclass{article}
\usepackage{beamerarticle}

\begin{document}

\frame{\frametitle{Some Slide}
\noindent this is good \\ this is bad
}

\end{document}

Best Answer

New paragraphs are not started with \\. Use an empty line or \par instead.

Beside this: The behaviour of \\ is explained in the beameruserguide. In my version in section 21.2.1 on page 208. You must use \\<all> if you want a line break also in article mode.