A lot of my LaTeX documents are informal lists for my own use. I prefer to organize these informally, without using any of the "list" type formatting available to LaTeX.
I have a new line before and after most of my list items (see sample LaTeX source below), but ideally would like to have each items on its own line as opposed to being concatenated together as they are by default.
Currently I need to put a blank newline in the source to ensure the item on the next line will be on it's own line. That's the action I want to eliminate.
Ideally I can put a formatting line at the start of documents and not have to set each list item as an item.
Examples:
by default, this LaTeX code:
\documentclass{report}
\begin{document}
test1
test2
test3
\end{document}
Will produce a pdf with text like this
test1 test2 test3
I want text instead to be produced like this
test1
test2
test3
Basically, I want newlines in the latexsource to be honored in the document output.
I don't want to use easylist or any special list package.
If any string starts on a newline in the LaTeX source I want it to start on a newline in the output, and it does not by default. That's it.
image:
edit:
I saw werner solution, which works quiet well. Is it possible to start the overlay command, and to end it after a certain section? That would be perfect

easylist, I think it is called. But I don't know if any of this is what you want. – cfr Feb 18 '17 at 03:51easylistif you want minimal list 'markup'.) An image might help (me) understand what you are hoping to achieve. – jon Feb 18 '17 at 04:09