| View previous topic :: View next topic |
| Author |
Message |
Asin General User

Joined: 06 Aug 2005 Posts: 22
|
Posted: Sun Feb 04, 2007 4:16 pm Post subject: Stop Enforcement of Matching Brackets |
|
|
I sometimes create very, very long expressions for school, and I would like to use opening brackets on one line, a newline character, and then the closing bracket on another line.
Is this possible? Is there something similar to phantom {} that recognizes the brackets without printing them?
Any help is greatly appreciated. |
|
| Back to top |
|
 |
kmogli General User


Joined: 12 Jan 2007 Posts: 12 Location: San Bernardino, California
|
Posted: Mon Feb 05, 2007 7:38 pm Post subject: Stop enforcement of matching brackets |
|
|
You can't stop it. You have to match the brackets on each line, but you can match left or right with a none printing bracket. "left none" will match any right bracket, and "right none" will match a left bracket, to allow things like cases. Here's a code example.
| Code: | left ( line1 right none newline
line2 newline
line3 newline
left none line4 right ) |
_________________ -- Big Cat Williams --
Last edited by kmogli on Wed Feb 07, 2007 12:46 am; edited 1 time in total |
|
| Back to top |
|
 |
waka General User

Joined: 11 Apr 2005 Posts: 46
|
Posted: Tue Feb 06, 2007 8:02 pm Post subject: |
|
|
This workaround is a bit tedious, however, if you must use other brackets, then use this.
color white left [ color black{ very very} right none newline
long long newline
color white left none color black{ very very long eq} right ) newline
just use white paper. heh |
|
| Back to top |
|
 |
|