Hello,
I have some code I write inside the verbatim environment. Sometimes, the lines are too long and the generated pdf looks ugly - the text row passes over the right margin. What can I do to automatically break these long lines? Is there anything better than the verbatim env?
Thanks,
Lucian
...
For example, I want to break the long string in the below panic statement:
(panic "Truth-assignment length is longer than the number of propositions!")
I have tried
(panic "Truth-assignment length is longer than the number \
of propositions!")
and
(panic "Truth-assignment length is longer than the number
of propositions!")
and they both ...
Possible Duplicates:
Where to wrap a line of code, especially long argument lists?
Coding standards and line length
Hi,
Where do you break long lines of code? (Example: before or after an operator)
If it is a long string, do you split the string into substrings?
What other cases exist when breaking long lines?
...