<?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>install &#8211; Gnuplotting</title>
	<atom:link href="./index.html?simply_static_page=1943" rel="self" type="application/rss+xml" />
	<link>./../../../index.html</link>
	<description>Create scientific plots using gnuplot</description>
	<lastBuildDate>Mon, 04 Jun 2012 13:14:31 +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>Installing the tikz terminal</title>
		<link>./../../../installing-the-tikz-terminal/index.html</link>
					<comments>./../../../installing-the-tikz-terminal/index.html#comments</comments>
		
		<dc:creator><![CDATA[hagen]]></dc:creator>
		<pubDate>Thu, 31 Mar 2011 08:50:14 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lua]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tikz]]></category>
		<guid isPermaLink="false">./../../../index.html?p=754</guid>

					<description><![CDATA[Beside the epslatex terminal, Gnuplot offers another terminal which can be used in companion with LaTeX. The tikz terminal creates only a tex file without any eps file. The trick is that it uses the tikz environment of LaTeX to draw the whole plot with TeX. The downside is that this terminal is a new [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Beside the epslatex terminal, Gnuplot offers another terminal which can be used in companion with LaTeX. The tikz terminal creates only a tex file without any eps file. The trick is that it uses the tikz environment of LaTeX to draw the whole plot with TeX.</p>
<p>The downside is that this terminal is a new one and not available in the most standard installations of Gnuplot and it could be that there are a few bugs in comparison to epslatex.</p>
<p>In order to install the tikz terminal we have to compile Gnuplot by ourself with the lua flag enabled and install it the usual way:</p>
<pre class="prettyprint">
<span class="pr">$</span> ./configure --with-lua=yes
<span class="pr">$</span> make
<span class="pr">#</span> make install
</pre>
<p>To do so we have to install lua before of course. Under Debian and Ubuntu we have to fix also two links in order to find the lua package:</p>
<pre class="prettyprint">
<span class="pr">#</span> ln -s /usr/lib/pkgconfig/lua5.1.pc  /usr/lib/pkgconfig/lua.pc
<span class="pr">#</span> ln -s /usr/lib/liblua5.1.so  /usr/lib/liblua.so
</pre>
<p>If the installation is complete, we can use the tikz terminal in the normal way</p>
<pre class="prettyprint">
<span class="k">set</span> teminal tikz
</pre>
<p>For lots of plots in our LaTeX document we can get a problem with the TeX memory. In order to fix this use more memory for TeX by changing the memory settings in <code>/etc/texmf/texmf.cnf</code>. In Debian and Ubuntu this can&#8217;t be done directly, but by editing <code>/etc/texmf/texmf.d/95NonPath.cnf</code> and running </p>
<pre class="prettyprint">
<span class="pr">#</span> update-texmf
</pre>
<p>afterwards.<br />
 The memory can be increased by changing the following lines to these new values (which are the maximum values possible).</p>
<pre class="prettyprint">
<span class="v">main_memory</span> <span class="o">=</span> <span class="n">7999999</span>
<span class="v">extra_mem_top</span> <span class="o">=</span> <span class="n">7999999</span>
<span class="v">extra_mem_bot</span> <span class="o">=</span> <span class="n">7999999</span>
</pre>
]]></content:encoded>
					
					<wfw:commentRss>./../../../installing-the-tikz-terminal/feed/index.html</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Installing Gnuplot 4.4 under Ubuntu Lucid Lynx</title>
		<link>./../../../installing-gnuplot-under-ubuntu-lucid-lynx/index.html</link>
					<comments>./../../../installing-gnuplot-under-ubuntu-lucid-lynx/index.html#comments</comments>
		
		<dc:creator><![CDATA[hagen]]></dc:creator>
		<pubDate>Tue, 20 Jul 2010 15:05:45 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">./../../../index.html?p=472</guid>

					<description><![CDATA[Last Update: 2011-07-11 Ubuntu 10.04 (Lucid Lynx) contains not the newest Gnuplot package, but the old 4.2 version. To install Gnuplot 4.4 under Ubuntu you can download it from Debian squeeze and install it by: wget http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-nox_4.4.0-1.1+b1_i386.deb wget http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-doc_4.4.0-1.1_all.deb wget http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-x11_4.4.0-1.1+b1_i386.deb wget http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot_4.4.0-1.1_all.deb sudo dpkg -i gnuplot* It can happen that some features of Gnuplot [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Last Update:</strong> 2011-07-11</p>
<p>Ubuntu 10.04 (Lucid Lynx) contains not the newest Gnuplot package, but the old 4.2 version. To install Gnuplot 4.4 under Ubuntu you can download it from Debian squeeze and install it by:</p>
<pre class="prettyprint">
<span class="k">wget</span> <span class="s">http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-nox_4.4.0-1.1+b1_i386.deb</span>
<span class="k">wget</span> <span class="s">http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-doc_4.4.0-1.1_all.deb</span>
<span class="k">wget</span> <span class="s">http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot-x11_4.4.0-1.1+b1_i386.deb</span>
<span class="k">wget</span> <span class="s">http://ftp.us.debian.org/debian/pool/main/g/gnuplot/gnuplot_4.4.0-1.1_all.deb</span>
<span class="k">sudo dpkg</span> <span class="v">-i</span> <span class="s">gnuplot*</span>
</pre>
<p>It can happen that some features of Gnuplot (for me the readline stuff) do not work as expected. If you experience problems, then you have to compile gnuplot yourself, which is in most cases straight forward. You can download it from <a href="http://sourceforge.net/projects/gnuplot/files/gnuplot/" target="_blank">sourceforge</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>./../../../installing-gnuplot-under-ubuntu-lucid-lynx/feed/index.html</wfw:commentRss>
			<slash:comments>15</slash:comments>
		
		
			</item>
	</channel>
</rss>
