<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Shiro Takeda&#039;s Weblog</title>
	<atom:link href="http://shirotakeda.org/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://shirotakeda.org/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 16 Feb 2013 11:43:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/" />
		<item>
		<title>GAMS mode (ver.4.2)</title>
		<link>http://shirotakeda.org/blog/?p=439</link>
		<comments>http://shirotakeda.org/blog/?p=439#comments</comments>
		<pubDate>Sat, 16 Feb 2013 11:43:36 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=439</guid>
		<description><![CDATA[GAMS mode for Emacs version 4.2 is released. http://shirotakeda.org/en/gams/gams-mode.html 4.2: 2013-02-16 Added the new variables `gams-outline-regexp-font-lock&#8217; and `gams-level-color-stars-only&#8217;. With this chage, headlines are colored according to their level. See Screenshot Page. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 4.2 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a></p>

<p><b>4.2</b>: 2013-02-16</p>

<ul>
<li> Added the new variables `gams-outline-regexp-font-lock&#8217; and `gams-level-color-stars-only&#8217;.
With this chage, headlines are colored according to their level. See <a href="http://shirotakeda.org/en/gams/gams-mode/gams-ss.html">Screenshot Page</a>.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=439</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=439" />
	</item>
		<item>
		<title>GAMS mode (ver.4.1)</title>
		<link>http://shirotakeda.org/blog/?p=435</link>
		<comments>http://shirotakeda.org/blog/?p=435#comments</comments>
		<pubDate>Sat, 13 Oct 2012 08:22:23 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=435</guid>
		<description><![CDATA[GAMS mode for Emacs version 4.1 is released. http://shirotakeda.org/en/gams/gams-mode.html 4.1: 2012-10-13 Fixed minor bugs. Changed the explanation in BUGS_PROBLEMS.txt and README.txt. Until the previous version, I recommended to add the following setting to Emacs. (setq jit-lock-chunk-size 50000) This is for making coloring in GAMS mode work well. But now I recommend the following setting: (setq [...]]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 4.1 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a></p>

<p><b>4.1</b>: 2012-10-13</p>

<ul>
<li> Fixed minor bugs.</li>
<li> Changed the explanation in BUGS_PROBLEMS.txt and README.txt.  Until the
  previous version, I recommended to add the following setting to Emacs.
<pre>
  (setq jit-lock-chunk-size 50000)
</pre>
This is for making coloring in GAMS mode work well. But now I recommend
the following setting:
<pre>
  (setq font-lock-support-mode '((gams-mode . nil) (t . jit-lock-mode)))
</pre>
This means that font-lock-support-mode is not used in GAMS mode.  By
this setting, Emacs is likely to slow down when you open GAMS files, but
you will encounter less troubles in coloring of GAMS mode.
</li>
<li> Abolished the command `gams-outline-external&#8217; (and deleted files
  associated with this command).</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=435</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=435" />
	</item>
		<item>
		<title>GAMS mode (ver.4.0)</title>
		<link>http://shirotakeda.org/blog/?p=432</link>
		<comments>http://shirotakeda.org/blog/?p=432#comments</comments>
		<pubDate>Sat, 08 Sep 2012 12:44:44 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=432</guid>
		<description><![CDATA[GAMS mode for Emacs version 4.0 is released. http://shirotakeda.org/en/gams/gams-mode.html Made several changes on GAMS-SIL mode. We often include the same file many times in a program. For example, supose that a GAMS program includes the following codes. $batinclude aggr vst i r vst_ $batinclude aggr vtwr i j r s vtwr_ $batinclude aggr vom g [...]]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 4.0 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a><p>


<ul>
<li>Made several changes on GAMS-SIL mode.
<p>We often include the same file many times in a program. For example,
supose that a GAMS program includes the following codes.
<pre>
  $batinclude aggr vst i r vst_
  $batinclude aggr vtwr i j r s vtwr_
  $batinclude aggr vom g r vom_
</pre>
  In this code, aggr.gms is included repeatedly. In the previous GAMS-SIL
  model, the content of aggr.gms is expanded repeatedly in GAMS-SIL
  buffer. But in the new gams.el, aggr.gms is expanded only once (only
  first time).</p>
</li>
<li>Added a new new function `gams-sil-toggle-expand-file-more&#8217; and a lisp
variable `gams-sil-expand-file-more&#8217; (the default value is nil).
<p>  In GAMS-SIL mode, the contents of files included by $include commands
  are usually expanded. For example, if your program includes the
  following code:
<pre>
  $include zzz.gms
</pre>
  then, the content of zzz.gms above is always expanded in
  GAMS-SIL. However, if the file is included conditionally like
<pre>
  $if exist xxx.gms $include xxx.gms
  $if %scenario%="bau" $include xxx.gms
</pre>
  the content of xxx.gms is not expanded by default.</p>
<p>  If you want to expand the content of conditionally inluced files, type
  &#8220;x&#8221; in GAMS-SIL buffer. This evokes `gams-sil-toggle-expand-file-more&#8217;
  command.</p>
<p>  If you always want to expand the content of conditionally inluced files,
  then set non-nil to the lisp variable `gams-sil-expand-file-more&#8217;.</p>
</li>
<li>
Added the new lisp variable `gams-sil-expand-batinclude&#8217; (default value is t).
<p>  In GAMS-SIL mode, the contents of files included by $include commands
  are always expanded. But files included by $batinclude are not expanded
  if `gams-sil-expand-batinclude&#8217; is nil.
</p>
</li>
<li>
Changed the default value of `gams-special-comment-symbol&#8217; from &#8220;com:&#8221;
  to &#8220;@&#8221;.  This is the string to specify the special comment like
<pre>
  display "@ This is the special comment line";
</pre>
  The special comment line is used for headlines in GAMS-SIL mode and
  GAMS-OUTLINE mode.
</li>
<li>Added outline representation like Org-mode (or outline mode). You can
  only show headlines of a GAMS program.
<p>  By default, lines starting with *@ are regarded as headlines.
<pre>
  *@ 	The top level headline
  *@@ 	Second level
        text text
  *@@@ 	Third level
        text text
  *@ 	Another top level headline
</pre>
You can change outline representation by the following two commands:
<blockquote>
<ul>
<li>`org-cycle&#8217; (binded to TAB key)</li>
<li>`org-global-cycle&#8217; (binded to Shift+TAB key).</li>
</ul>
</blockquote>
<p>  `org-cycle&#8217; command works only on headlines and toggles hide/show the
  body of programs. `org-global-cycle&#8217; toggles hide/show entire program.</p>
<p>   Open a sample file &#8220;org-minor-mode.gms&#8221; and try TAB and Shift+TAB.</p>
<p>  This feature uses codes in Org-mode. So if you want to use this feature,
  Org-mode must be installed (The recent Emacs has Org-mode by
  default). In addition, note that this command may depend on the version
  of Org-mode. I test in Org-mode of 7.8.11.</p>
<br />
<p><em> [How to change symbols for headlines]</em></p>
<p> In the default setting, &#8220;*@&#8221; is used as symbols to represent
  headlines. This is determined by the lisp variable
  `gams-outline-regexp&#8217;. This variable specifies the regular expressions
  of the symbol used to represent headlines and its default value is
<pre>
  "\\*@+[ \t]"
</pre>
  If you change the value of this variable, you can change symbols for
  headlines. For example, add the following expression to your init.el
  file
<pre>
  (setq gams-outline-regexp "[ \t]*display \"@+[ \t]")
</pre>
  And open &#8220;org-minor-mode-alt.gms&#8221;.</p>
<br />
<p><em>[Other commands for outline handling]</em></p>
<ul>
<li>&#8220;C-cC-:n&#8221; -> Move to the next headlines (`outline-next-visible-heading&#8217;).</li>
<li>&#8220;C-cC-:p&#8221; -> Move to the previous headlines (`outline-previous-visible-heading&#8217;).</li>
<li>&#8220;C-cC-:f&#8221; -> Fold the current tree (`gams-org-fold-current-tree&#8217;).</li>
<li>&#8220;C-cC-:k&#8221; -> Show branches (`show-branches&#8217;).</li>
</ul>
</li>
<li>Changed the default indent number from 8 to 4.</li>
<li>Changed the name of sample setting file from &#8220;dot-emacs-sample&#8221; to
  &#8220;setting-sample.el&#8221;.</li>
</ul>
	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=432</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=432" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.6)</title>
		<link>http://shirotakeda.org/blog/?p=430</link>
		<comments>http://shirotakeda.org/blog/?p=430#comments</comments>
		<pubDate>Sat, 02 Jun 2012 14:58:20 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=430</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.6 is released. This is a bug fix release. http://shirotakeda.org/en/gams/gams-mode.html Quited supporting XEmacs because I have no environment for testing XEmacs. Increased the default value of `gams-lxi-maximum-line&#8217; (from 500000 to 1000000). Fixed a bug in `gams-show-identifier&#8217;. Fixed many minor bugs. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.6 is released. This is a bug fix release.</p>

<a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>

<ul>
<li>Quited supporting XEmacs because I have no environment for testing
  XEmacs.</li>
<li>Increased the default value of `gams-lxi-maximum-line&#8217; (from 500000 to
  1000000).</li>
<li> Fixed a bug in `gams-show-identifier&#8217;.</li>
<li> Fixed many minor bugs.</li>
</ul>



	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=430</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=430" />
	</item>
		<item>
		<title>Website was restored</title>
		<link>http://shirotakeda.org/blog/?p=419</link>
		<comments>http://shirotakeda.org/blog/?p=419#comments</comments>
		<pubDate>Fri, 01 Jun 2012 12:26:01 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=419</guid>
		<description><![CDATA[I tried to update MODX for my website and failed&#8230; The database was destroyed and I had to restore the website manually. Here is the new website http://shirotakeda.org. There are only small changes in the contents but note that I changed URL for all pages (except for the top page). Old URL is http://shirotakeda.org/home/&#8230; New [...]]]></description>
				<content:encoded><![CDATA[<p>I tried to update <a href="http://modx.com/">MODX</a> for my website and failed&#8230; The database was destroyed and I had to restore the website manually. </p>

<p>Here is the new website <a href="http://shirotakeda.org/">http://shirotakeda.org</a>. There are only small changes in the contents but note that <b>I changed URL for all pages</b> (except for the top page).</p>
<ul>
<li>Old URL is http://shirotakeda.org/home/&#8230; </li>
<li>New URL is given by http://shirotakeda.org/en/&#8230;</li>
</ul>

<p>For example, the page for GAMS mode for Emacs changed from http://shirotakeda.org/home/gams/gams-mode.html to <a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.</p>

<br />
<br />

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=419</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=419" />
	</item>
		<item>
		<title>econ.bst (ver.2.0.1)</title>
		<link>http://shirotakeda.org/blog/?p=400</link>
		<comments>http://shirotakeda.org/blog/?p=400#comments</comments>
		<pubDate>Mon, 05 Dec 2011 12:53:59 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[econ.bst]]></category>
		<category><![CDATA[TeX]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=400</guid>
		<description><![CDATA[econ.bst (ver.2.0.1) is released. econ.bst is available from http://shirotakeda.org/en/tex/econ-bst.html Ver. 2.0.1 (2011-12-05) Fixed bugs for sorting entries. In version 2.0, entries of book and incollection type are not sometimes sorted in alphabetical order. The previous econ.bst always puts `period&#8217; before the content of note field. The new econ.bst uses `comma&#8217; by default (but this depends [...]]]></description>
				<content:encoded><![CDATA[<p>econ.bst (ver.2.0.1) is released.</p>

<p>econ.bst is available from <a href="http://shirotakeda.org/en/tex/econ-bst.html">http://shirotakeda.org/en/tex/econ-bst.html</a></p>

<p>Ver. 2.0.1 (2011-12-05)</p>

<ul>
<li> Fixed bugs for sorting entries. In version 2.0, entries of book and
  incollection type are not sometimes sorted in alphabetical order. </li>

<li>The previous econ.bst always puts `period&#8217; before the content of note
  field. The new econ.bst uses `comma&#8217; by default (but this depends on user
  customization).</li>

<li>Added new function `bst.hide.title&#8217;. If you set non-zero to bst.hide.title,
  title is not displayed. </li>
</ul>

<br />
<br />

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=bibtex" title="bibtex" >bibtex</a>, <a href="http://shirotakeda.org/blog/?tag=econ-bst" title="econ.bst" >econ.bst</a>, <a href="http://shirotakeda.org/blog/?tag=tex" title="TeX" >TeX</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=400</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=400" />
	</item>
		<item>
		<title>econ.bst (ver.2.0)</title>
		<link>http://shirotakeda.org/blog/?p=395</link>
		<comments>http://shirotakeda.org/blog/?p=395#comments</comments>
		<pubDate>Thu, 10 Nov 2011 15:18:33 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[econ.bst]]></category>
		<category><![CDATA[TeX]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=395</guid>
		<description><![CDATA[econ.bst (ver.2.0) is released. econ.bst is available from http://shirotakeda.org/en/tex/econ-bst.html Ver. 2.0 (2011-11-10) Added \bysame abbreviation of alternative style. Suppose that there are the following three entries: Mazda, A., Subaru, B., and Honda, C., (2011) &#8220;ABC&#8221; Mazda, A., Subaru, B., and Honda, C., (2011) &#8220;DEF&#8221; Mazda, A., Subaru, B., and Toyota, D., (2011) &#8220;GHI&#8221; When you [...]]]></description>
				<content:encoded><![CDATA[<p>econ.bst (ver.2.0) is released.</p>

<p>econ.bst is available from <a href="http://shirotakeda.org/en/tex/econ-bst.html">http://shirotakeda.org/en/tex/econ-bst.html</a></p>

<p>Ver. 2.0 (2011-11-10)</p>

<ul>
<li> Added \bysame abbreviation of alternative style.<br />
Suppose that there are the following three entries:<br />
<blockquote class="inyou">
  Mazda, A., Subaru, B., and Honda, C., (2011) &#8220;ABC&#8221;<br />
  Mazda, A., Subaru, B., and Honda, C., (2011) &#8220;DEF&#8221;<br />
  Mazda, A., Subaru, B., and Toyota, D., (2011) &#8220;GHI&#8221;
</blockquote>
When you set non-zero to `bst.use.bysame&#8217; in the previous econ.bst,
these entries are listed like<br />

[List 1]<br />
<blockquote class="inyou">
Mazda, A., Subaru, B., and Honda, C., (2011) &#8220;ABC&#8221;<br />
&#8212;-, (2011) &#8220;DEF&#8221;<br />
Mazda, A., Subaru, B., and Toyota, D., (2011) &#8220;GHI&#8221;
</blockquote>

That is, the abbreviation of authors by \bysame is only applied to entries with
exactly the same name. <br />
In the new econ.bst, you can choose an alternative abbreviation style like<br />

[List 2]<br />

<blockquote class="inyou">
  Mazda, A., Subaru, B., Honda, C., (2011) &#8220;ABC&#8221;<br />
  &#8212;-, &#8212;-, and &#8212;-, (2011) &#8220;DEF&#8221;<br />
  &#8212;-, &#8212;-, and Toyota, D., (2011) &#8220;GHI&#8221;
</blockquote>

In the new econ.bst, you can choose three values for `bst.use.bysame&#8217;.<br /><br />

#0: Not use bysame command.<br />
#1: Use bysame command like List 1 (this is the default value).<br />
#2: Use bysame command like List 2.<br /><br />

For the details, see econ-sample.pdf.
</li>

<li> Abolished `bst.year.backward&#8217; and added `bst.year.position&#8217;.
  Now you can choose the position of year.<br /><br />

  If set to #0, year is always placed right after &#8220;author&#8221;.<br />
  If non-zero, year is placed at the end (before note field) except for aritcle
  type entry.<br /><br />

  In article type entry, the position of year changes according to the following
  rule:
<br /><br />
 #1 -> year is placed at the end.<br />
 #2 -> year is placed after journal name in aritcle type entry.<br />
 #3 -> year is placed after volume in aritcle type entry.<br /><br />
</li>

<li> Added `bst.year.na.pre&#8217; and `bst.year.na.post&#8217;. <br />
  These functions are `bst.year.pre&#8217; and `bst.year.post&#8217; for non-article type
  entry. In the new econ.bst, `bst.year.pre&#8217; and `bst.year.post&#8217; are only
  applied to aritcle type entry.   
</li>

<li>Added `bst.editor.btitle.order&#8217;.<br />

This determines the order of editor and booktitle in incollection and
inproceedings entry.<br /><br />
If #0,  editors &#8211; booktitle order (the default value).<br />
If non-zero,  booktitle &#8211; editors order.<br /><br />
</li>

<li> Added `bst.address.position&#8217;.<br />

You can choose the order of address and publisher by this function.
<br /><br />
 If #0,    address -> publisher order (the default value).<br />
 If non-zero,  publisher -> address order.
<br /><br />

</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=bibtex" title="bibtex" >bibtex</a>, <a href="http://shirotakeda.org/blog/?tag=econ-bst" title="econ.bst" >econ.bst</a>, <a href="http://shirotakeda.org/blog/?tag=tex" title="TeX" >TeX</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=395</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=395" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.5)</title>
		<link>http://shirotakeda.org/blog/?p=393</link>
		<comments>http://shirotakeda.org/blog/?p=393#comments</comments>
		<pubDate>Sat, 15 Oct 2011 03:59:53 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=393</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.5 is released. This is a bug fix release. http://shirotakeda.org/en/gams/gams-mode.html The previous version (ver.3.6.4) includes a bug in indentation function for $macro block. It is fixed in this version. Fixed the bug related to $oneolcom and $offeolcom. In the previous versions, GAMS mode sometimes does not work well in files [...]]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.5 is released. This is a bug fix release.</p>

<a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>

<ul>
<li> The previous version (ver.3.6.4) includes a bug in indentation function
  for $macro block. It is fixed in this version.</li>
<li> Fixed the bug related to $oneolcom and $offeolcom. In the previous
  versions, GAMS mode sometimes does not work well in files with $oneolcom
  and $offeolcom.</li>
<li> Added minor changes on `gams-model-library&#8217;.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=393</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=393" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.4)</title>
		<link>http://shirotakeda.org/blog/?p=390</link>
		<comments>http://shirotakeda.org/blog/?p=390#comments</comments>
		<pubDate>Wed, 05 Oct 2011 13:52:17 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=390</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.4 is released. This is a minor update. http://shirotakeda.org/en/gams/gams-mode.html Added &#8220;nonnegative variables&#8221; to the GAMS statement list. Changed the key-binding of `gams-comment-dwim-inline&#8217; to `C-cM-;&#8217;. Added minor change on `gams-insert-statement-extended&#8217; (C-cC-n). Supported indentation for $macro definition. Various minor changes. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.4 is released. This is a minor update.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a></p>

<ul>
<li> Added &#8220;nonnegative variables&#8221; to the GAMS statement list.</li>
<li> Changed the key-binding of `gams-comment-dwim-inline&#8217; to `C-cM-;&#8217;.</li>
<li> Added minor change on `gams-insert-statement-extended&#8217; (C-cC-n).</li>
<li> Supported indentation for $macro definition.</li>
<li> Various minor changes.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=390</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=390" />
	</item>
		<item>
		<title>New papers</title>
		<link>http://shirotakeda.org/blog/?p=386</link>
		<comments>http://shirotakeda.org/blog/?p=386#comments</comments>
		<pubDate>Thu, 01 Sep 2011 15:01:52 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[CGE]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=386</guid>
		<description><![CDATA[&#8220;A CGE Analysis of Border Adjustments Under the Cap-and-Trade System: A Case Study of the Japanese Economy&#8221; &#8220;Labor Market Distortions and Welfare-Decreasing International Emissions Trading&#8221; My page in SSRN. Tags: all, CGE, research, WebUpdate]]></description>
				<content:encoded><![CDATA[<ul>
<li><a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1907108">&#8220;A CGE Analysis of Border Adjustments Under the Cap-and-Trade System: A Case Study of the Japanese Economy&#8221;</a></li>
<li><a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1886200">&#8220;Labor Market Distortions and Welfare-Decreasing International Emissions Trading&#8221;</a></li>
</ul>

<p><a href="http://papers.ssrn.com/sol3/cf_dev/AbsByAuth.cfm?per_id=1138103">My page in SSRN</a>.</p>
	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=cge" title="CGE" >CGE</a>, <a href="http://shirotakeda.org/blog/?tag=research" title="research" >research</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=386</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=386" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.3)</title>
		<link>http://shirotakeda.org/blog/?p=381</link>
		<comments>http://shirotakeda.org/blog/?p=381#comments</comments>
		<pubDate>Sun, 19 Jun 2011 10:45:12 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=381</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.3 is released. http://shirotakeda.org/en/gams/gams-mode.html 3.6.3: 2011-06-19 Fixed bugs in `gams-show-identifier&#8217; (C-cC-.). Fixed bugs in the indentation function. Minor changes. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.3 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a></p>

<p><b>3.6.3</b>: 2011-06-19</p>
<ul>
<li> Fixed bugs in `gams-show-identifier&#8217; (C-cC-.).</li>
<li> Fixed bugs in the indentation function.</li>
<li> Minor changes.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=381</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=381" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.2)</title>
		<link>http://shirotakeda.org/blog/?p=378</link>
		<comments>http://shirotakeda.org/blog/?p=378#comments</comments>
		<pubDate>Wed, 20 Apr 2011 13:42:06 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=378</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.2 is released. http://shirotakeda.org/en/gams/gams-mode.html 3.6.2: 2011-04-20 Fixed bug in `gams-show-identifier&#8217; (C-cC-.). Many minor changes and bug fix. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.2 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a></p>

<p><b>3.6.2</b>: 2011-04-20</p>
<ul>
<li> Fixed bug in `gams-show-identifier&#8217; (C-cC-.).</li>
<li> Many minor changes and bug fix.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=378</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=378" />
	</item>
		<item>
		<title>econ.bst (ver. 1.3.2)</title>
		<link>http://shirotakeda.org/blog/?p=376</link>
		<comments>http://shirotakeda.org/blog/?p=376#comments</comments>
		<pubDate>Tue, 05 Apr 2011 12:17:31 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[econ.bst]]></category>
		<category><![CDATA[TeX]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=376</guid>
		<description><![CDATA[New econ.bst. This is minor bug fix update. http://shirotakeda.org/en/tex/econ-bst.html. Tags: all, bibtex, econ.bst, TeX, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>New econ.bst. This is minor bug fix update.</p>

<p><a href="http://shirotakeda.org/en/tex/econ-bst.html">http://shirotakeda.org/en/tex/econ-bst.html</a>.</p>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=bibtex" title="bibtex" >bibtex</a>, <a href="http://shirotakeda.org/blog/?tag=econ-bst" title="econ.bst" >econ.bst</a>, <a href="http://shirotakeda.org/blog/?tag=tex" title="TeX" >TeX</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=376</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=376" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6.1)</title>
		<link>http://shirotakeda.org/blog/?p=369</link>
		<comments>http://shirotakeda.org/blog/?p=369#comments</comments>
		<pubDate>Wed, 02 Feb 2011 12:53:33 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=369</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6.1 is released. http://shirotakeda.org/en/gams/gams-mode.html. 3.6.1: 2011-02-02 Fixed bug in `gams-show-identifier&#8217; (C-cC-.). Added minor changes to GAMS-TEMPLATE mode and `gams-model-library&#8217;. Added items to the sample template file &#8220;gams-template.txt&#8221;. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6.1 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.</p>

<br />
<p><b>3.6.1</b>: 2011-02-02</p>
<ul>
<li> Fixed bug in `gams-show-identifier&#8217; (C-cC-.).</li>
<li> Added minor changes to GAMS-TEMPLATE mode and `gams-model-library&#8217;.</li>
<li> Added items to the sample template file &#8220;gams-template.txt&#8221;.</li>
</ul>

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=369</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=369" />
	</item>
		<item>
		<title>GAMS mode (ver.3.6)</title>
		<link>http://shirotakeda.org/blog/?p=366</link>
		<comments>http://shirotakeda.org/blog/?p=366#comments</comments>
		<pubDate>Fri, 14 Jan 2011 18:47:34 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=366</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.6 is released. http://shirotakeda.org/en/gams/gams-mode.html. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.6 is released.</p>

<p><a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.</p>


	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=366</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=366" />
	</item>
		<item>
		<title>econ.bst (ver. 1.3.1)</title>
		<link>http://shirotakeda.org/blog/?p=358</link>
		<comments>http://shirotakeda.org/blog/?p=358#comments</comments>
		<pubDate>Sat, 18 Dec 2010 07:23:31 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[econ.bst]]></category>
		<category><![CDATA[TeX]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=358</guid>
		<description><![CDATA[New econ.bst. http://shirotakeda.org/en/tex/econ-bst.html Tags: all, bibtex, econ.bst, TeX, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>New econ.bst. </p>
<p><a href="http://shirotakeda.org/en/tex/econ-bst.html">http://shirotakeda.org/en/tex/econ-bst.html</a></p>
	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=bibtex" title="bibtex" >bibtex</a>, <a href="http://shirotakeda.org/blog/?tag=econ-bst" title="econ.bst" >econ.bst</a>, <a href="http://shirotakeda.org/blog/?tag=tex" title="TeX" >TeX</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=358</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=358" />
	</item>
		<item>
		<title>New version of econ.bst (ver.1.3).</title>
		<link>http://shirotakeda.org/blog/?p=356</link>
		<comments>http://shirotakeda.org/blog/?p=356#comments</comments>
		<pubDate>Sun, 05 Dec 2010 05:57:49 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[econ.bst]]></category>
		<category><![CDATA[TeX]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=356</guid>
		<description><![CDATA[New version of econ.bst (BibTeX style file for economic papers). See this page. Tags: all, bibtex, econ.bst, TeX, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>New version of econ.bst (BibTeX style file for economic papers).</p>
<br />
<p>See <a href="http://shirotakeda.org/en/tex/econ-bst.html">this page</a>.</p>


	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=bibtex" title="bibtex" >bibtex</a>, <a href="http://shirotakeda.org/blog/?tag=econ-bst" title="econ.bst" >econ.bst</a>, <a href="http://shirotakeda.org/blog/?tag=tex" title="TeX" >TeX</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=356</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=356" />
	</item>
		<item>
		<title>GAMS mode (ver.3.5.2)</title>
		<link>http://shirotakeda.org/blog/?p=354</link>
		<comments>http://shirotakeda.org/blog/?p=354#comments</comments>
		<pubDate>Sat, 06 Nov 2010 05:50:00 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=354</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.5.2 is released. http://shirotakeda.org/en/gams/gams-mode.html. This is minor bug fix release. Tags: GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.5.2 is released.
<a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.</p>

<p>This is minor bug fix release.</p>

	Tags: <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=354</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=354" />
	</item>
		<item>
		<title>GAMS mode (ver.3.5.1)</title>
		<link>http://shirotakeda.org/blog/?p=349</link>
		<comments>http://shirotakeda.org/blog/?p=349#comments</comments>
		<pubDate>Thu, 14 Oct 2010 11:11:57 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=349</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.5.1 is released. http://shirotakeda.org/en/gams/gams-mode.html. This is minor bug fix release. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[<p>GAMS mode for Emacs version 3.5.1 is released.
<a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.</p>

<p>This is minor bug fix release.</p>


	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=349</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=349" />
	</item>
		<item>
		<title>GAMS mode (ver.3.5)</title>
		<link>http://shirotakeda.org/blog/?p=345</link>
		<comments>http://shirotakeda.org/blog/?p=345#comments</comments>
		<pubDate>Mon, 20 Sep 2010 12:17:46 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[GAMS]]></category>
		<category><![CDATA[gams-mode]]></category>
		<category><![CDATA[WebUpdate]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=345</guid>
		<description><![CDATA[GAMS mode for Emacs version 3.5 is released. http://shirotakeda.org/en/gams/gams-mode.html. Tags: all, GAMS, gams-mode, WebUpdate]]></description>
				<content:encoded><![CDATA[GAMS mode for Emacs version 3.5 is released.
<a href="http://shirotakeda.org/en/gams/gams-mode.html">http://shirotakeda.org/en/gams/gams-mode.html</a>.

	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a>, <a href="http://shirotakeda.org/blog/?tag=gams" title="GAMS" >GAMS</a>, <a href="http://shirotakeda.org/blog/?tag=gams-mode" title="gams-mode" >gams-mode</a>, <a href="http://shirotakeda.org/blog/?tag=webupdate" title="WebUpdate" >WebUpdate</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=345</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=345" />
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://shirotakeda.org/blog/?p=1</link>
		<comments>http://shirotakeda.org/blog/?p=1#comments</comments>
		<pubDate>Wed, 07 Apr 2010 07:28:11 +0000</pubDate>
		<dc:creator>shiro.takeda</dc:creator>
				<category><![CDATA[all]]></category>

		<guid isPermaLink="false">http://shirotakeda.org/blog/?p=1</guid>
		<description><![CDATA[test. a b c d e y = f(x) this is an apple. Tags: all]]></description>
				<content:encoded><![CDATA[test.
<ul>
	<li>a</li>
	<li>b</li>
	<li>c</li>
	<li>d</li>
	<li>e</li>
</ul>
<pre>
y = f(x)
</pre>

<blockquote>
this is an apple.
</blockquote>

<img src='http://s.wordpress.com/latex.php?latex=%20%5Cdisplaystyle%20%20q_%7Bi%7D%20%3D%20%5Cleft%5B%20%5Csum_%7Bj%7D%20%5Ctheta_%7Bji%7D%20p_%7Bj%7D%5E%7B1%20-%20%5Csigma%7D%20%5Cright%5D%5E%7B%5Cfrac%7B1%7D%7B1%20-%20%5Csigma%7D%7D%20%20&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt=' \displaystyle  q_{i} = \left[ \sum_{j} \theta_{ji} p_{j}^{1 - \sigma} \right]^{\frac{1}{1 - \sigma}}  ' title=' \displaystyle  q_{i} = \left[ \sum_{j} \theta_{ji} p_{j}^{1 - \sigma} \right]^{\frac{1}{1 - \sigma}}  ' class='latex' />
	Tags: <a href="http://shirotakeda.org/blog/?tag=all" title="all" >all</a><br />
]]></content:encoded>
			<wfw:commentRss>http://shirotakeda.org/blog/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://shirotakeda.org/blog/?p=1" />
	</item>
	</channel>
</rss>
