<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>TRUONG on LaTeX</title>
	<atom:link href="http://truonglatex.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://truonglatex.wordpress.com</link>
	<description>Because LaTeX is beautiful</description>
	<lastBuildDate>Mon, 28 Nov 2011 02:28:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='truonglatex.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>TRUONG on LaTeX</title>
		<link>http://truonglatex.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://truonglatex.wordpress.com/osd.xml" title="TRUONG on LaTeX" />
	<atom:link rel='hub' href='http://truonglatex.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Create standalone figures which are input-able</title>
		<link>http://truonglatex.wordpress.com/2011/11/28/create-standalone-figures-which-are-input-able/</link>
		<comments>http://truonglatex.wordpress.com/2011/11/28/create-standalone-figures-which-are-input-able/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 02:28:42 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=111</guid>
		<description><![CDATA[If you are using PGF/TikZ (or any drawing language for (La)TeX such as PSTricks), you will soon find yourself either: Re-compile an entire long LaTeX document just to see the effect of a small change you have made in a figure; or Maintain a simplified master LaTeX file for every figure file (that&#8217;s 2 files [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=111&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are using PGF/TikZ (or any drawing language for (La)TeX such as PSTricks), you will soon find yourself either:</p>
<ul>
<li>Re-compile an entire long LaTeX document just to see the effect of a small change you have made in a figure; or</li>
<li>Maintain a simplified master LaTeX file for every figure file (that&#8217;s 2 files for each figure) so that you can compile the figure quickly; or</li>
<li>Keep changing the preamble template for a tool like QtikZ to incorporate your custom definitions and packages for your figures.</li>
</ul>
<p>Any of the above methods is cumbersome, time-consuming and inefficient. A much better way is to use the <code>standalone</code> package. For example, you are creating a figure in TikZ for your long paper. You put the figure code in a TeX file with a full preamble &amp; the usual document environment, as if you are writing a small document with only one figure in it. But you don&#8217;t use the usual document class (e.g. article).  You use the class <code>standalone</code> instead, as follows:</p>
<p><pre class="brush: latex;">
% File myfigure.tex
\documentclass{standalone}
\usepackage{tikz}
\usepackage{mypackage}
\input{mydefs}
\begin{document}
\begin{tikzpicture}
  \draw [color=red] (0,0) rectangle (2,1) node [midway] {Cool};
\end{tikzpicture}
\end{document}
</pre></p>
<p>If you compile this file, you will get the same result as if you used the <code>preview</code> package. You can make small changes and re-compile only the figure quickly.</p>
<p>In you main LaTeX file, you must use the <code>standalone</code> package at the very beginning of the preamble, and input the figure file as usual. For example:</p>
<p><pre class="brush: latex;">
\documentclass{article}
\usepackage{standalone}
\usepackage{tikz}
\usepackage{mypackage}
\input{mydefs}
\title{Test of the \texttt{standalone} package}
\begin{document}
\maketitle
This is a figure.
\begin{figure}
  \centering
  \input{subfile}
  \caption{A figure.}
\end{figure}
\end{document}
</pre></p>
<p>You can compile this main file as usual. When being input, the preamble of the figure file (i.e. everything between <code>\documentclass</code> and <code>\begin{document}</code>) is skipped.</p>
<p>This method is more flexible and more convenient than the above methods. You maintain only one file per figure, and can edit and re-compile graphic code quickly.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=111&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/11/28/create-standalone-figures-which-are-input-able/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>New command and conditioning</title>
		<link>http://truonglatex.wordpress.com/2011/09/13/new-command-and-conditioning/</link>
		<comments>http://truonglatex.wordpress.com/2011/09/13/new-command-and-conditioning/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 18:15:58 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=102</guid>
		<description><![CDATA[To create a new custom command in LaTeX, the command \newcommand is well-known. Its full usage is: where \commandname is the name of the new command, with backslash; this name must have never been defined. n is the number of arguments of the new command; if ignored, there will be no argument. d is the default [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=102&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To create a new custom command in LaTeX, the command <code>\newcommand</code> is well-known. Its full usage is:</p>
<p><pre class="brush: plain;">
\newcommand{\commandname}[n][d]{definition}
</pre></p>
<p>where</p>
<ul>
<li><code>\commandname</code> is the name of the new command, with backslash; this name must have never been defined.</li>
<li><code>n</code> is the number of arguments of the new command; if ignored, there will be no argument.</li>
<li><code>d</code> is the default value of the first argument; if not provided, the first argument will be required.</li>
<li><code>definition</code> is the definition of the new command.</li>
</ul>
<p>If the command name has already been defined, the above command will cause an error. To re-define a command, use <code>\renewcommand</code> instead.</p>
<h2>Conditioning</h2>
<p>In the definition of the new command (or in your LaTeX document in general), you may want to generate content differently based on certain conditions. For example, if the first argument of the command is empty, you want to do &#8220;this&#8221;, otherwise you want to do &#8220;that.&#8221; You can use standard TeX commands (TeX programming) for this task, but it is easier to use the package <a href="http://ctan.org/pkg/xifthen" target="_blank">xifthen</a> (an extended version of the package <a href="http://ctan.org/pkg/ifthen" target="_blank">ifthen</a>, you can also use the latter if you want). These packages define commands like</p>
<p><pre class="brush: plain;">

\ifthenelse{condition}{code if true}{code if false}

</pre></p>
<p>and commands for checking conditions, for example <code>\isempty{}</code> to check if something is empty.</p>
<p>As an example, the following command generates content differently based on its optional first argument:</p>
<p><pre class="brush: plain;">

\newcommand{\mycommand}[2][]{%

\ifthenelse{\isempty{#1}}%

{\ensuremath{{#2}_{\mathrm{on}}}}%

{\ensuremath{{#2}_{\mathrm{on}, {#1}}}}%

}

</pre></p>
<p>Usafe examples:</p>
<ul>
<li><code>\mycommand{f}</code> produces <img src='http://s0.wp.com/latex.php?latex=f_%7B%5Cmathrm%7Bon%7D%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='f_{&#92;mathrm{on}}' title='f_{&#92;mathrm{on}}' class='latex' /></li>
<li><code>\mycommand[i]{f}</code> produces <img src='http://s0.wp.com/latex.php?latex=f_%7B%5Cmathrm%7Bon%7D%2C+i%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='f_{&#92;mathrm{on}, i}' title='f_{&#92;mathrm{on}, i}' class='latex' /></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=102&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/09/13/new-command-and-conditioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Typesetting numerical data (with units) in LaTeX</title>
		<link>http://truonglatex.wordpress.com/2011/08/12/typesetting-numerical-data-with-units-in-latex/</link>
		<comments>http://truonglatex.wordpress.com/2011/08/12/typesetting-numerical-data-with-units-in-latex/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 19:34:29 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=95</guid>
		<description><![CDATA[Typesetting numerical data (with units) in LaTeX correctly can be difficult and time-consuming. Note that I emphasized &#8220;correctly.&#8221; Fortunately, siunitx comes to the rescue. From its description: Typesetting values with units requires care to ensure that the combined mathematical meaning of the value plus unit combination is clear. In particular, the SI units system lays [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=95&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Typesetting numerical data (with units) in LaTeX <strong>correctly</strong> can be difficult and time-consuming. Note that I emphasized &#8220;correctly.&#8221;</p>
<p>Fortunately, <a href="http://ctan.org/pkg/siunitx" target="_blank">siunitx</a> comes to the rescue. From its description:</p>
<blockquote><p>Typesetting values with units requires care to ensure that the combined mathematical meaning of the value plus unit combination is clear. In particular, the SI units system lays down a consistent set of units with rules on how they are to be used. However, different countries and publishers have differing conventions on the exact appearance of numbers (and units). A number of LaTeX packages have been developed to provide consistent application of the various rules: <a href="http://ctan.org/pkg/siunits">SIunits</a>, <a href="http://ctan.org/pkg/sistyle">sistyle</a>, <a href="http://ctan.org/pkg/unitsdef">unitsdef</a> and <a href="http://ctan.org/pkg/units">units</a> are the leading examples. The <a href="http://ctan.org/pkg/numprint">numprint</a> package provides a large number of number-related functions, while <a href="http://ctan.org/pkg/dcolumn">dcolumn</a> and <a href="http://ctan.org/pkg/rccol">rccol</a> provide tools for typesetting tabular numbers.</p>
<p>The siunitx package takes the best from the existing packages, and adds new features and a consistent interface. A number of new ideas have been incorporated, to fill gaps in the existing provision. The package also provides backward-compatibility with SIunits, sistyle, unitsdef and units. The aim is to have one package to handle all of the possible unit-related needs of LaTeX users.</p></blockquote>
<p>Some examples stolen from its manual:</p>
<ul>
<li><code>\num{1+-2i}</code> produces <img src='http://s0.wp.com/latex.php?latex=1+%5Cpm+2%5Ctext%7Bi%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='1 &#92;pm 2&#92;text{i}' title='1 &#92;pm 2&#92;text{i}' class='latex' /></li>
<li><code>\num{.3e45}</code> produces <img src='http://s0.wp.com/latex.php?latex=0.3+%5Ctimes+10%5E%7B45%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='0.3 &#92;times 10^{45}' title='0.3 &#92;times 10^{45}' class='latex' /></li>
<li><code>\si{kg.m.s^{-1}}</code> or <code>\si{\kilogram\metre\per\second}</code> both produce <img src='http://s0.wp.com/latex.php?latex=%5Ctext%7Bkg%7D%5C%2C%5Ctext%7Bm%7D%5C%2C%5Ctext%7Bs%7D%5E%7B-1%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='&#92;text{kg}&#92;,&#92;text{m}&#92;,&#92;text{s}^{-1}' title='&#92;text{kg}&#92;,&#92;text{m}&#92;,&#92;text{s}^{-1}' class='latex' /></li>
<li><code>\si[per-mode=symbol]{\kilogram\metre\per\second}</code> produces <img src='http://s0.wp.com/latex.php?latex=%5Ctext%7Bkg%7D%5C%2C%5Ctext%7Bm%7D+%2F+%5Ctext%7Bs%7D&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='&#92;text{kg}&#92;,&#92;text{m} / &#92;text{s}' title='&#92;text{kg}&#92;,&#92;text{m} / &#92;text{s}' class='latex' /></li>
</ul>
<p>These are just a few examples. The possibility is much larger and the package is very useful. So keep my words: &#8220;Always use siunitx when possible.&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=95&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/08/12/typesetting-numerical-data-with-units-in-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Stack size limit error with hyperref</title>
		<link>http://truonglatex.wordpress.com/2011/07/26/stack-size-limit-error-with-hyperref/</link>
		<comments>http://truonglatex.wordpress.com/2011/07/26/stack-size-limit-error-with-hyperref/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 23:34:37 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=91</guid>
		<description><![CDATA[Today I got an weird error: ! TeX capacity exceeded, sorry [input stack size=1500]. The error text is not very helpful (not at all), but the compiler stopped at a section command of the form: \section{Some text $\bm{d}$} So I searched on Google and found the cause of the error. It was caused by hyperref [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=91&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I got an weird error:</p>
<blockquote><p><code>! TeX capacity exceeded, sorry [input stack size=1500].</code></p></blockquote>
<p>The error text is not very helpful (not at all), but the compiler stopped at a section command of the form:</p>
<blockquote><p><code>\section{Some text $\bm{d}$}</code></p></blockquote>
<p>So I searched on Google and found the cause of the error. It was caused by hyperref trying to convert the mathematical expressions and symbols in the section title to a PDF link in the table of contents. Somehow hyperref does not like mathematical text in section titles, especially bold symbols. There are several solutions, but the following two are the easiest:</p>
<ul>
<li>Specify an alternative title for the section, usually called short title, and hyperref will use that for the link, like this:<br />
<blockquote><p><code>\section[Some text d]{Some text $\bm{d}$}</code></p></blockquote>
</li>
<li>Specify pure text alternatives for the special symbols in the title, like this:<br />
<blockquote><p><code>\section{Some text \texorpdfstring{$\bm{d}$}{d}}</code></p></blockquote>
</li>
</ul>
<p>Note that the same error can happen with not only mathematical symbols but also other special fonts, such as \verb (as some people reported).</p>
<p>References:</p>
<ul>
<li><a href="http://tex.stackexchange.com/questions/5314/equations-in-section-heading-title" target="_blank">tex.stackexchange.com</a></li>
<li><a href="http://macosx-tex.576846.n2.nabble.com/Stack-size-limit-error-with-hyperref-td607685.html" target="_blank">More complex solutions</a> (too complex).</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=91&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/07/26/stack-size-limit-error-with-hyperref/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Typesetting algorithms/pseudo-code</title>
		<link>http://truonglatex.wordpress.com/2011/05/11/typesetting-algorithmspseudo-code/</link>
		<comments>http://truonglatex.wordpress.com/2011/05/11/typesetting-algorithmspseudo-code/#comments</comments>
		<pubDate>Wed, 11 May 2011 21:05:22 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=88</guid>
		<description><![CDATA[Two LaTeX packages are very popularly used to typeset algorithms/pseudo-code (actually one is a set of related packages). The first is the algorithms package and its related packages. The second is the algorithm2e package. The algorithms package provides two basic environments: algorithm for creating floats that contain algorithms, and algorithmic for typesetting actual algorithms. It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=88&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Two LaTeX packages are very popularly used to typeset algorithms/pseudo-code (actually one is a set of related packages). The first is the algorithms package and its related packages. The second is the algorithm2e package.</p>
<p>The algorithms package provides two basic environments: algorithm for creating floats that contain algorithms, and algorithmic for typesetting actual algorithms. It is very straightforward and easy to use, however it is not flexible and does not provide ways to customize the output easily. The algorithmicx package provides the same algorithmic environment, but with greater flexibility.</p>
<p>The algorithm2e package provides environments for typesetting algorithms with ultimate flexibility. By default, the output looks very much like actual code. It is very customizable. However, it is more difficult to use, and its syntax is not very intuitive.</p>
<p>My advice:</p>
<ul>
<li>If you don&#8217;t need to customize the output of your algorithms too much, don&#8217;t have very special needs, or just want to typeset your algorithms quickly, go with the algorithms family.</li>
<li>If you need very professionally looking algorithms, or you want to customize the output in a very special way, then you may want to go with algorithm2e (just MAY).</li>
</ul>
<p>P.S: google the package name on CTAN and you will find the package. I didn&#8217;t put the links here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=88&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/05/11/typesetting-algorithmspseudo-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Typeset complex block matrices with blkarray package</title>
		<link>http://truonglatex.wordpress.com/2011/02/03/typeset-complex-block-matrices-with-blkarray-package/</link>
		<comments>http://truonglatex.wordpress.com/2011/02/03/typeset-complex-block-matrices-with-blkarray-package/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 21:03:42 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>
		<category><![CDATA[matrix]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=84</guid>
		<description><![CDATA[The original article is at stackexchange: http://tex.stackexchange.com/q/10122/3048 The blkarray package can be found on CTAN.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=84&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The original article is at stackexchange: <a href="http://tex.stackexchange.com/q/10122/3048">http://tex.stackexchange.com/q/10122/3048</a></p>
<p>The <a href="http://ctan.org/pkg/blkarray">blkarray</a> package can be found on CTAN.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=84&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/02/03/typeset-complex-block-matrices-with-blkarray-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Excellent resource for writing CV&#8217;s with LaTeX</title>
		<link>http://truonglatex.wordpress.com/2011/01/23/excellent-resource-for-writing-cvs-with-latex/</link>
		<comments>http://truonglatex.wordpress.com/2011/01/23/excellent-resource-for-writing-cvs-with-latex/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 16:04:21 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>
		<category><![CDATA[cv]]></category>
		<category><![CDATA[resume]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=81</guid>
		<description><![CDATA[,<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=81&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cv-templates.info/">The CV Inn</a> is a very excellent resource for writing CV&#8217;s with LaTeX.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=81&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/01/23/excellent-resource-for-writing-cvs-with-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>The cool package is cool</title>
		<link>http://truonglatex.wordpress.com/2011/01/23/the-cool-package-is-cool/</link>
		<comments>http://truonglatex.wordpress.com/2011/01/23/the-cool-package-is-cool/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 03:51:04 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Special Typeset]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=78</guid>
		<description><![CDATA[cool is a package that helps mathematical equations in LaTeX more meaningful. Also, it makes writing equations easier, especially those involve a lot of (high-order) derivatives, partial derivatives, etc. The name cool stands for COntent Oriented LaTeX. The only concern is that this package is not very popular, so it should be avoided if you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=78&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ctan.org/tex-archive/macros/latex/contrib/cool/">cool</a> is a package that helps mathematical equations in LaTeX more meaningful. Also, it makes writing equations easier, especially those involve a lot of (high-order) derivatives, partial derivatives, etc. The name <strong>cool</strong> stands for <strong>CO</strong>ntent <strong>O</strong>riented <strong>L</strong>aTeX. The only concern is that this package is not very popular, so it should be avoided if you want to share your LaTeX files with many people, or if you want to submit your files to a publisher who forbids non-standard packages.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=78&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/01/23/the-cool-package-is-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Good quick online reference for LaTeX</title>
		<link>http://truonglatex.wordpress.com/2011/01/21/good-quick-online-reference-for-latex/</link>
		<comments>http://truonglatex.wordpress.com/2011/01/21/good-quick-online-reference-for-latex/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 05:39:53 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=76</guid>
		<description><![CDATA[The Arbitrary LaTeX Reference.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=76&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://latex.knobs-dials.com/">Arbitrary LaTeX Reference</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=76&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2011/01/21/good-quick-online-reference-for-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
		<item>
		<title>Synchronization with SyncTeX</title>
		<link>http://truonglatex.wordpress.com/2010/06/20/synchronization-with-synctex/</link>
		<comments>http://truonglatex.wordpress.com/2010/06/20/synchronization-with-synctex/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:50:06 +0000</pubDate>
		<dc:creator>Truong Nghiem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://truonglatex.wordpress.com/?p=73</guid>
		<description><![CDATA[I wrote this post on my main blog a while ago. I copied it here because I think it&#8217;s more appropriate. SyncTeX is a method for synchronization between (La)TeX source and its DVI/PDF file.  It is well and officially supported in TeXLive 2008. More information on using SyncTeX on Mac OS can be found here. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=73&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote <a href="http://truongnghiem.wordpress.com/2009/02/07/synctex-synchronization-between-tex-and-dvipdf/">this post</a> on my main blog a while ago. I copied it here because I think it&#8217;s more appropriate.</p>
<p>SyncTeX is a method for synchronization between (La)TeX source and  its DVI/PDF file.  It is well and officially supported in TeXLive 2008.  More information on using SyncTeX on Mac OS can be found <a href="http://mactex-wiki.tug.org/wiki/index.php?title=SyncTeX#Carbon_Emacs.2FSkim">here</a>.  This post targets Emacs+AucTeX (excellent LaTeX editor) and Skim  (excellent PDF viewer) on Mac OS. Carbon Emacs (i.e. Emacs for Mac OS)  can be downloaded from<a href="http://homepage.mac.com/zenitani/emacs-e.html"> its website</a> or from <a href="http://www.apple.com/downloads/macosx/unix_open_source/carbonemacspackage.html">Apple&#8217;s  website</a>. Skim is located <a href="http://skim-app.sourceforge.net/">here</a>.</p>
<p>Assuming that you already have Skim and Emacs+AucTeX up and running,  this is how you enable SyncTeX in your LaTeX files and synchronize  between them and their PDF files:</p>
<ul>
<li>To enable SyncTeX in your LaTeX files, first you must have TeXLive  2008 (or any TeX distribution that supports SyncTeX) installed in your  system. When you compile your LaTeX files, use the switch <code>-synctex=1</code> in your call to latex. Alternatively, you can add a line <code>\synctex=1</code> in the preamble of the master TeX file. The PDF file compiled from your  LaTeX source will be accompanied by a SyncTeX file of the same name,  which contains information necessary for the synchronization.</li>
<li>In Emacs, you must start the Emacs Server by issuing command <code>server-start</code> (<code>M-x server-start &lt;ENTER&gt;</code>).</li>
<li>You must configure Skim to synchronize with Emacs: menu  Preferences/Sync/Preset to Emacs.</li>
<li>Open the PDF file in Skim. In Skim, hold Shift-Apple and click on  any text in the PDF to go directly to the corresponding LaTeX source in  Emacs.</li>
</ul>
<p>That&#8217;s easy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/truonglatex.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/truonglatex.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/truonglatex.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=truonglatex.wordpress.com&amp;blog=5198878&amp;post=73&amp;subd=truonglatex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://truonglatex.wordpress.com/2010/06/20/synchronization-with-synctex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f484a10417b7d3a389540a401542e4bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">truongnghiem</media:title>
		</media:content>
	</item>
	</channel>
</rss>
