<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding Math symbol with JSL Journal Text Box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29514#M19474</link>
    <description>&lt;P&gt;Unicode characters also often work in HTML while you can't count on symbol fonts being available in web browsers.&lt;/P&gt;
&lt;P&gt;Here's Dan's example in JMP, then saved as HTML and viewed in Internet Explorer.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unicode characters in JMP and a web browser(Internet Explorer)" style="width: 624px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/4116i2DD9943D4B42C486/image-size/large?v=v2&amp;amp;px=999" role="button" title="Symbols.PNG" alt="Unicode characters in JMP and a web browser(Internet Explorer)" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Unicode characters in JMP and a web browser(Internet Explorer)&lt;/span&gt;&lt;/span&gt;﻿&lt;/P&gt;</description>
    <pubDate>Wed, 23 Nov 2016 15:04:45 GMT</pubDate>
    <dc:creator>John_Powell_JMP</dc:creator>
    <dc:date>2016-11-23T15:04:45Z</dc:date>
    <item>
      <title>Adding Math symbol with JSL Journal Text Box</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29241#M19333</link>
      <description>&lt;P&gt;I am thinking that this is probably very easy, just in a text box, I would like to add a symbol like a capital sigma, or a summation symbol.&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp; I am trying to write an equation in a text box, is this just an html trick?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Thank yu in advance,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Brad&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 15:47:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29241#M19333</guid>
      <dc:creator>drblove</dc:creator>
      <dc:date>2016-11-16T15:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Math symbol with JSL Journal Text Box</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29261#M19342</link>
      <description>&lt;P&gt;You can add markup commands to a text box, and specify, &amp;lt;&amp;lt; markup(1) as a second parameter in the text box, You could also try using the function&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Expr as Picture(........)&lt;/P&gt;
&lt;P&gt;where you can place a formula into the passing element and it will draw a picture.&amp;nbsp; I have not figured out how to specify a Sigma using this method&lt;/P&gt;
&lt;P&gt;or you can do something more like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
new window("Sample",&amp;lt;&amp;lt;journal,
	HLB = H List Box(
		tb1 = Text Box("S")
	)
);
tb1&amp;lt;&amp;lt;font("Symbol")&amp;lt;&amp;lt;set font style("Bold")&amp;lt;&amp;lt;set font size(72)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 18:28:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29261#M19342</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2016-11-16T18:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Math symbol with JSL Journal Text Box</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29301#M19358</link>
      <description>&lt;P&gt;Most font families include a number of symbols, which can be used in JMP by specifying their unicode character values. &amp;nbsp;The advantage of not changing fonts is that you can use all of the regular characters as well as symbols.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Names Default To Here( 1 );
new window("Sample",&amp;lt;&amp;lt;journal,
	HLB = H List Box(
		tb1 = Text Box("\!U01A9x\!U00B2")
	)
);
tb1&amp;lt;&amp;lt;set font style("Bold")&amp;lt;&amp;lt;set font size(72);
&lt;/PRE&gt;
&lt;P&gt;This should work anywhere in JMP that you can set a string, even if the font cannot be changed. &amp;nbsp;You can look up Unicode values at &lt;A href="http://www.unicode.org/charts/," target="_self"&gt;http://www.unicode.org/charts/&lt;/A&gt;,&amp;nbsp;and there are also font viewers available that will show you the characters that are in the fonts that you have on your machine. &amp;nbsp;If you stick to common characters then your code will probably be fairly portable, but it's good to know that if you are using less common characters then they may exist in one font but not in another.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 14:09:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29301#M19358</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2016-11-17T14:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Math symbol with JSL Journal Text Box</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29514#M19474</link>
      <description>&lt;P&gt;Unicode characters also often work in HTML while you can't count on symbol fonts being available in web browsers.&lt;/P&gt;
&lt;P&gt;Here's Dan's example in JMP, then saved as HTML and viewed in Internet Explorer.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unicode characters in JMP and a web browser(Internet Explorer)" style="width: 624px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/4116i2DD9943D4B42C486/image-size/large?v=v2&amp;amp;px=999" role="button" title="Symbols.PNG" alt="Unicode characters in JMP and a web browser(Internet Explorer)" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Unicode characters in JMP and a web browser(Internet Explorer)&lt;/span&gt;&lt;/span&gt;﻿&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2016 15:04:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Math-symbol-with-JSL-Journal-Text-Box/m-p/29514#M19474</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2016-11-23T15:04:45Z</dc:date>
    </item>
  </channel>
</rss>

