<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>italic &#8211; Gnuplotting</title>
	<atom:link href="./index.html?simply_static_page=1965" rel="self" type="application/rss+xml" />
	<link>./../../../index.html</link>
	<description>Create scientific plots using gnuplot</description>
	<lastBuildDate>Mon, 02 Jan 2023 18:38:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
	<item>
		<title>Arrow with T-shaped head</title>
		<link>./../../../arrow-with-t-shaped-head/index.html</link>
					<comments>./../../../arrow-with-t-shaped-head/index.html#comments</comments>
		
		<dc:creator><![CDATA[hagen]]></dc:creator>
		<pubDate>Fri, 21 Feb 2014 22:17:40 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arrow]]></category>
		<category><![CDATA[circle]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[italic]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[table]]></category>
		<guid isPermaLink="false">./../../../index.html?p=1910</guid>

					<description><![CDATA[For the measurement of distances T-shaped arrows are often used to highlight the length. In gnuplot there is an easy way to achieve this. Fig. 1 Diffraction of light for a slit with the length d. (code to produce this figure) Have a look at Fig. 1 which tries to explain the diffraction phenomenon of [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>For the measurement of distances T-shaped arrows are often used to highlight the length. In gnuplot there is an easy way to achieve this.</p>
<div class="figure">
    <img decoding="async" src="./../../../figs/diffraction.png" alt="Diffraction on a slit"/></p>
<p class="caption">
        <strong>Fig. 1 </strong> Diffraction of light for a slit with the length <em>d</em>. (<a href="./../../../code/diffraction.gnu" type="text/plain" rel="nofollow">code to produce this figure</a>)
    </p>
</div>
<p>Have a look at Fig. 1 which tries to explain the diffraction phenomenon of a slit with the length <em>d</em>. At a distance <em>a</em> the diffraction pattern is drawn. The different distances, the distance between the first minima of the diffraction pattern, and the wave length are indicated by T-shaped arrows. This kind of arrays can be achieved in gnuplot with the following code.</p>
<pre class="prettyprint">
Theads = 'heads size 0.5,90 front ls 201'
set arrow from -24,-2 to -24, 2       @Theads
set arrow from -22, 2 to -21.44,1.92  @Theads
set arrow from 1.5,-pi to 1.5,pi      @Theads
set arrow from -22,2.5*pi to 0,2.5*pi @Theads
</pre>
<p>Here, <code>90</code> is the relevant entry after <code>size</code> as it describes the opening angle of the arrow head.<br />
In addition, an open circle is drawn to indicate the angle <em>&theta;</em>. This is achieved by specifying the opening angle for the circle object.</p>
<pre class="prettyprint">
set object circle at -22,0 size 6 arc [-8:0]
</pre>
]]></content:encoded>
					
					<wfw:commentRss>./../../../arrow-with-t-shaped-head/feed/index.html</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Postscript terminal with italic symbols</title>
		<link>./../../../postscript-terminal-with-italic-symbols/index.html</link>
					<comments>./../../../postscript-terminal-with-italic-symbols/index.html#comments</comments>
		
		<dc:creator><![CDATA[hagen]]></dc:creator>
		<pubDate>Tue, 22 Jun 2010 13:54:49 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[italic]]></category>
		<category><![CDATA[postscript]]></category>
		<category><![CDATA[symbols]]></category>
		<guid isPermaLink="false">http://gnuplot.kkdu.org/?p=152</guid>

					<description><![CDATA[If you use the postscript terminal and have a greek letter e.g. &#934; for the xlabel, it should be italic because it is a variable. To get the greek letter you have to use the enhanced mode of the terminal and can write set xlabel '{/Symbol P}' But this produces a non italic &#934; and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you use the postscript terminal and have a greek letter e.g. &Phi; for the xlabel, it should be italic because it is a variable.<br />
To get the greek letter you have to use the enhanced mode of the terminal and can write</p>
<pre class="prettyprint">
<span class="k">set</span> xlabel <span class="s">'{/Symbol P}'</span>
</pre>
<p>But this produces a non italic &Phi; and it is not obvious how to get it italic. For normal letters the following will work</p>
<pre class="prettyprint">
<span class="k">set</span> xlabel <span class="s">'{/Helvetica-Italic P}'</span>
</pre>
<p>and produces a <em>P</em>. But for the Symbol font <code>Italic</code> is not the right notation, instead you have to use <code>Oblique</code>:</p>
<pre class="prettyprint">
<span class="k">set</span> xlabel <span class="s">'{/Symbol-Oblique P}'</span>
</pre>
<p>This will finally generate our desired italic <em>&Phi;</em>.</p>
<p><strong>Update:</strong> in the meantime I have learned Helvetica-Italic is not part of the official <a href="http://en.wikipedia.org/wiki/PostScript_fonts#Core_Font_Set">postscript core fonts</a>. Hence, use also Helvetica-Oblique.</p>
]]></content:encoded>
					
					<wfw:commentRss>./../../../postscript-terminal-with-italic-symbols/feed/index.html</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
