I'll take the specific example of a bibliography. Here's a MWE to work with (the class is arbitrary here. I took it from some real papers on arXiv, and modified it to show the main things I want to concentrate on) :
Code: Select all
\RequirePackage[l2tabu,orthodox]{nag}
\documentclass[11pt]{revtex4-1}
\begin{document}
\begin{thebibliography}{999}
\bibitem{bibitem1}
\uppercase{Some one}, \par \textit{Title 1}, \par Found.\ Phys.\ \textbf{47}, no. 6, 797 (1980).
\medskip
\bibitem{bibitem2}
\uppercase{Some guy}, \par \textit{Title 2}, \par Phys.\ Rev.\ D \textbf{65}, 103522 (1990).
\end{thebibliography}
\end{document}
\
(for a space) as shown in this example ? Or use ~
instead ? Or somehing else ?For a change of paragraph in text mode, Should I use
\\
(I believe this is obsolete), or \par, or \newline (or even something else) in the bibliography?