So, maybe I missed something completely when I started using Latex, but I have a difficult managing newlines in the Latex source. I have to put hard returns at the end of lines because even powerful editors like Emacs or Vim don't seem to manage that (at least out of the box).
For example, if I have the following paragraph in my Latex file:
So, maybe I missed something completely when I started using Latex,[\n]
but I have a difficult managing newlines in the Latex source. I have[\n]
to put hard returns at the end of lines because even powerful editors[\n]
like Emacs or Vim don't seem to manage that (at least out of the box).[\n]
But then I want to add a the parenthetical "but, not newlines in the Latex output" to the second line so then I get something like this:
So, maybe I missed something completely when I started using Latex, [\n]
but I have a difficult managing newlines in the Latex source (but, not newlines in the Latex output). I have [\n]
to put hard returns at the end of lines because even powerful editors [\n]
like Emacs or Vim don't seem to manage that (at least out of the box).[\n]
Assuming that before I insert the phrase, the lines we at the 80 character boundary, I get rather unmanageable soft line wraps. When this happens, the act of pushing the 'down' arrow brings me to the same column in the next line, completely ignoring the soft line breaks.
What am I missing?