line breaks - Latex Multiple Linebreaks -
I use LaTeX to type programming homework for class. I need to do this:
with the line between blah blah blah new line of text
i know i double Smash can use break lines \\, but latex will only take the first line break (complaining about more) and start a new line, it produces:
Blank blah blah my line line
with the blank line between that extra How can I get line breaks in place so that my text can be replaced between lines?
Do you want more space between paragraphs? You can then change the parameter \ parskip
. For example, try
\ setlength {\ parskip} {10pt plus 1pt minus 1pt}.
This means that the space between the paragraphs is usually 10pt, but can increase or decrease by 1pt. This means that you can change latex to a 1pt to get better page layout. If you are trying to display the source code, try the / code>. If you are trying to type a prefix, try the listing
package or literally
algorithm
package.
Comments
Post a Comment