Continuation Lines

To improve readability, an input line can contain intermediate carriage return/line feeds. The intermediate line breaks must be continued or ‘escaped’ using one of the following character combinations.

M25 nd ng ns nb model_1 L=1.1e-3 W=2.2e-3 \
M=2 DTEMP=25 OFF

.INCLUDE './long_directory_name/long_subdirectory_name\\
/file_name'

M25 nd ng ns nb model_1 L=1.1e-3 W=2.2e-3
+ M=2 DTEMP=25 OFF

A line continued with a plus sign is interpreted as part of the statement, even if the previous line ended with a comment. For example:

R1 1 2 ; comment

+ 1000

Is the same as:

R1 1 2 1000