<?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: Equations in JMP pro Notebooks in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932219#M108869</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/56939"&gt;@EduardDerks&lt;/a&gt;.,&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/610"&gt;@Jed_Campbell&lt;/a&gt;&amp;nbsp;'s suggestion to add this to the wish list is a great idea, please do that.&lt;/P&gt;
&lt;P&gt;Also, there is a slight modification to&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/610"&gt;@Jed_Campbell&lt;/a&gt;'s suggestion that might get you slightly closer, which is to omit Current Window(), and start with the bare put-to operator ( i.e., &amp;lt;&amp;lt; ), which tells Notebook to emit the resulting display box to the block output directly, rather than at the bottom of the window.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Append (
	Expr As Picture( Expr( (-b + Sqrt( b ^ 2 - 4 * a * c )) / (2 * a) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="formula.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94373i07B084EA8E5411FC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="formula.png" alt="formula.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;jules&lt;/P&gt;</description>
    <pubDate>Mon, 23 Feb 2026 21:00:07 GMT</pubDate>
    <dc:creator>jules</dc:creator>
    <dc:date>2026-02-23T21:00:07Z</dc:date>
    <item>
      <title>Equations in JMP pro Notebooks</title>
      <link>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/931913#M108843</link>
      <description>&lt;P&gt;Is it possible to get formatted equations in JMP Notebooks, like in Jupyter?&lt;/P&gt;
&lt;P&gt;My version is 19.0.5 JMP-pro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 11:07:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/931913#M108843</guid>
      <dc:creator>EduardDerks</dc:creator>
      <dc:date>2026-02-20T11:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Equations in JMP pro Notebooks</title>
      <link>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932217#M108868</link>
      <description>&lt;P&gt;This might be a good idea to &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;submit to the Wish List&lt;/A&gt;. The developers are likely looking for what people want to see in Notebooks.&lt;/P&gt;
&lt;P&gt;Closest I can come up with is appending a formula using the Expr as Picture () command:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-02-23 134855.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94372iB7FA22470BA9EACB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-02-23 134855.png" alt="Screenshot 2026-02-23 134855.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 20:51:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932217#M108868</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2026-02-23T20:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Equations in JMP pro Notebooks</title>
      <link>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932219#M108869</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/56939"&gt;@EduardDerks&lt;/a&gt;.,&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/610"&gt;@Jed_Campbell&lt;/a&gt;&amp;nbsp;'s suggestion to add this to the wish list is a great idea, please do that.&lt;/P&gt;
&lt;P&gt;Also, there is a slight modification to&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/610"&gt;@Jed_Campbell&lt;/a&gt;'s suggestion that might get you slightly closer, which is to omit Current Window(), and start with the bare put-to operator ( i.e., &amp;lt;&amp;lt; ), which tells Notebook to emit the resulting display box to the block output directly, rather than at the bottom of the window.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Append (
	Expr As Picture( Expr( (-b + Sqrt( b ^ 2 - 4 * a * c )) / (2 * a) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="formula.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94373i07B084EA8E5411FC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="formula.png" alt="formula.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;jules&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 21:00:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932219#M108869</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2026-02-23T21:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Equations in JMP pro Notebooks</title>
      <link>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932336#M108879</link>
      <description>&lt;P&gt;I'll submit my wishes for future versions. Would be great if the JMP Notebook's could behave in a similar way as Jupyter Notebooks, especially when it comes to reporting equations.&lt;/P&gt;
&lt;P&gt;Thanks for the suggestion!.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2026 12:56:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Equations-in-JMP-pro-Notebooks/m-p/932336#M108879</guid>
      <dc:creator>EduardDerks</dc:creator>
      <dc:date>2026-02-24T12:56:29Z</dc:date>
    </item>
  </channel>
</rss>

