<div dir="ltr">Thanks, Eli.&nbsp; I used the @tt|{@}| alternative you gave at it works fine.&nbsp; While I was sure that some combination of @, |, and \ would get me there, it is confusing.<br><br>Doug<br><br><div class="gmail_quote">
On Thu, Sep 11, 2008 at 2:41 PM, Eli Barzilay <span dir="ltr">&lt;<a href="mailto:eli@barzilay.org">eli@barzilay.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Sep 11, Doug Williams wrote:<br>
&gt; Thanks, Matthew. &nbsp;One more scribble question.<br>
&gt;<br>
&gt; In the table I need an atsign as in entry (in teletype font). &nbsp;As<br>
&gt; part of a cell I have &#39;(make-flow (list (make-paragraph (list<br>
&gt; @tt{at}))))&#39; and I&#39;d like to have an atsign (@) appear in place of<br>
&gt; the &#39;at&#39;. &nbsp;I&#39;ve tried @ by itself, \@, |@|, etc, but without any<br>
&gt; luck. &nbsp;How do I correctly escape the atsign in this case?<br>
<br>
</div>You can always use a Scheme string escape:<br>
<br>
 &nbsp;@tt{@&quot;@&quot;}<br>
<br>
But another option is the laternative syntax for the open/close<br>
braces:<br>
<br>
<br>
 &nbsp;@tt|{@}|<br>
<br>
Using |{ to open the body means that only }| will be recognized as<br>
closing the body, and commands inside should start with |@. &nbsp;If that&#39;s<br>
not enough, you can add stuff between the | and {. &nbsp;For example, the<br>
scribble syntax documentation (collects/scribblings/scribble/<br>
reader.scrbl) has things like this:<br>
<br>
@scribble-examples|==={<br>
 &nbsp;@foo{bar baz<br>
 &nbsp; &nbsp; &nbsp; blah}<br>
 &nbsp;@foo{bar @baz[3]<br>
 &nbsp; &nbsp; &nbsp; blah}<br>
 &nbsp;@foo{bar @baz{3}<br>
 &nbsp; &nbsp; &nbsp; blah}<br>
 &nbsp;@foo{bar @baz[2 3]{4 5}<br>
 &nbsp; &nbsp; &nbsp; blah}<br>
}===|<br>
<font color="#888888"><br>
--<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;((lambda (x) (x x)) (lambda (x) (x x))) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Eli Barzilay:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.barzilay.org/" target="_blank">http://www.barzilay.org/</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Maze is Life!<br>
</font></blockquote></div><br></div>