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

<channel>
	<title>The CV Inn</title>
	<atom:link href="http://www.cv-templates.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cv-templates.info</link>
	<description>Tips for Professional CV Writing with LaTeX</description>
	<lastBuildDate>Mon, 15 Feb 2010 09:04:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>LaTeX Guide to putting a picture in your CV</title>
		<link>http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/</link>
		<comments>http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:00:24 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Typography Tips]]></category>
		<category><![CDATA[cv photo]]></category>
		<category><![CDATA[cv with picture]]></category>
		<category><![CDATA[picture in cv]]></category>
		<category><![CDATA[textpos]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=650</guid>
		<description><![CDATA[







A recurrent question on this blog and in general concerns the insertion of a picture in a common Curriculum Vitae, with or without LaTeX.
On this topic, my opinion is that a Curriculum without a picture definitely looks more polished because it&#8217;s very hard to insert a picture that fits the professional requirements of a resume.
A [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A recurrent question on this blog and in general concerns the insertion of a picture in a common Curriculum Vitae, with or without LaTeX.<br />
On this topic, my opinion is that a Curriculum <strong>without</strong> a picture definitely looks more polished because it&#8217;s very hard to insert a picture that fits the professional requirements of a resume.</p>
<p>A very nasty but, alas, <strong>common occurrence</strong> is that of putting a random picture of yourself just for the sake of putting the picture in. Well, let me put this straight:</p>
<h3 style="color:red">NEVER put your Facebook/<insert social network> picture in your CV, unless you use that very social network for business and professional reasons (designers, entrepreneurs, etc.) </h3>
</p>
<p>Some very straightforward principles apply when putting the picture in your CV:</p>
<ol>
<li>The picture should be clear, small, in business attire (if you apply for a corporations that has a business attire policy). In any case, <strong>try to be the person you want to be at the interview, which is not necessarily your Facebook self</strong>. Even better, delete your public Facebook Profile if that&#8217;s gonna show a picture of you sucking up a 5 pints keg of beer.</li>
<li>The picture should not be in utter typographical clash with the rest of the CV. A picture of you trying to lift the “Leaning Tower of Pisa”? No, thank you.</li>
<li>White background is the way to go. Either if you are a Photoshop/Gimp master or if you just happen to shoot a photography with a pretty white wall behind, do get a white background photo (examples below)</li>
</ol>
<p>Now back to LaTeX, how do we code this up?</p>
<h2>The textpos package</h2>
<p>From the documentation of the package, </p>
<blockquote><p>This package facilitates placing boxes at absolute positions on the LATEX page.</p></blockquote>
<p>Just make sure you include the package in your document preable, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">textpos</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>and you are ready to go.</p>
<p>We also include dimension references for the units we will be using:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPHorizModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%controls horizontal movements</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPVertModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>  <span style="color: #2C922C; font-style: italic;">%controls vertical movements</span></pre></div></div>

<p>This means that for every time we call the command</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">&lt;hsize&gt;</span><span style="color: #E02020; ">}</span>(&lt;hpos&gt;,&lt;vpos&gt;)
<span style="color: #800000; font-weight: normal;">\includegraphics</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">picName.jpg</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p><strong>hpos</strong> and <strong>vpos</strong> get multiplied by 10pt (that is, the length we have set \TPHorizModule and \TPVertModule to).</p>
<h2>Option 1. Full Body &amp; White Background</h2>
<p>In this option, we set a full body with with background on the left of the text, without any impact on the horizontal and vertical motion of the document&#8217;s typographical appearance.</p>
<div style="text-align: center;"><a href="http://www.cv-templates.info/wp-content/uploads/2010/02/full-body-+-white-background.png"><img class="size-medium wp-image-658" title="full body + white background" src="http://www.cv-templates.info/wp-content/uploads/2010/02/full-body-+-white-background-300x211.png" alt="full body + white background" width="300" height="211" /></a></div>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1</span><span style="color: #E02020; ">}</span>(-10,0) <span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\includegraphics</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">picName.jpg</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>Option 2. Face only &amp; White Background</h2>
<p>This second option is also acceptable, in my opinion. Just tweak a bit and play with textpos to get the best result out of the picture you have (yours might differ!). I&#8217;ve played with the parameters at least 20 times before getting it acceptable.</p>
<div style="text-align: center;"><a href="http://www.cv-templates.info/wp-content/uploads/2010/02/face-+-white-background.png"><img class="aligncenter size-medium wp-image-657" title="face + white background" src="http://www.cv-templates.info/wp-content/uploads/2010/02/face-+-white-background-300x208.png" alt="" width="300" height="208" /></a></div>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPHorizModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPVertModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1</span><span style="color: #E02020; ">}</span>(30,0)
<span style="color: #800000; font-weight: normal;">\includegraphics</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">picName.jpg</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>Option 3. Face Only &amp; Color Background</h2>
<p>Sorry to break it to you, but this is <strong>not</strong> acceptable!<br />
The picture with this full blown coloured background is just a punch in the eye.<br />
The rectangle at this position of the document breaks its typographical beauty and, more importantly, its horizontal motion.<br />
In other words, the reader and his/her eye do not expect a rectangle at this point, as they&#8217;re reading some text and following its flow naturally. In other words, it&#8217;s as if they&#8217;re hitting their head against a wall all of a sudden.<br />
Also the vertical motion is damaged, because the vertical lines of the rectangle make it difficult to identify the margins of the document. </p>
<div style="text-align: center;"><a href="http://www.cv-templates.info/wp-content/uploads/2010/02/face-+-non-white.png"><img class="aligncenter size-medium wp-image-656" title="face + non-white" src="http://www.cv-templates.info/wp-content/uploads/2010/02/face-+-non-white-300x211.png" alt="" width="300" height="211" /></a></div>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPHorizModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\TPVertModule</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1</span><span style="color: #E02020; ">}</span>(20,0)
<span style="color: #800000; font-weight: normal;">\includegraphics</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">picName.jpg</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">textblock</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>Lesson Learned</h2>
<p>Don&#8217;t put a picture in your CV, unless you know what you are doing.<br />
I, for one, don&#8217;t have any intention to throw my picture in my CV any time soon.</p>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</title>
		<link>http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/</link>
		<comments>http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:24:23 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Typography Tips]]></category>
		<category><![CDATA[LaTeX Lengths]]></category>
		<category><![CDATA[latex table align]]></category>
		<category><![CDATA[newlength]]></category>
		<category><![CDATA[setlength]]></category>
		<category><![CDATA[settowidth]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=606</guid>
		<description><![CDATA[
The problem with tables in a CV is that they are usually typeset as pairs of date =&#62; some job title, or piece of research.
For example, on the left, you can see three different sections:

A Work Experience section;
The Education section;
Another Section for Scholarships

So what happens when you are typesetting the columns of the document, especially [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/' rel='bookmark' title='Permanent Link: LaTeX Guide to putting a picture in your CV'>LaTeX Guide to putting a picture in your CV</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/' rel='bookmark' title='Permanent Link: CV Tip: Letterspacing your name with XeLaTeX + Fontspec'>CV Tip: Letterspacing your name with XeLaTeX + Fontspec</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cv-templates.info/wp-content/uploads/2010/01/setToWidth.png"><img class="size-full wp-image-607 alignright" title="setToWidth" src="http://www.cv-templates.info/wp-content/uploads/2010/01/setToWidth.png" alt="setToWidth" width="186" height="639" /></a></p>
<p>The problem with tables in a CV is that they are usually typeset as pairs of <strong>date =&gt; some job title, or piece of research</strong>.</p>
<p>For example, on the left, you can see <em>three</em> different sections:</p>
<ul>
<li>A <strong>Work Experience</strong> section;</li>
<li>The <strong>Education</strong> section;</li>
<li>Another Section for <strong>Scholarships</strong></li>
</ul>
<p>So what happens when you are typesetting the columns of the document, especially the ones with dates?</p>
<p>Dates can be of different length, consider for a moment how Summer and Fall 2010 will generate totally different column width, and the style of a one page document like a CV will suffer from this asymmetry.</p>
<p>So the idea I tried to implement in the document is that of considering all dates as if they belong to the same column (and to the same table obviously), therefore the leftmost column contaning the dates will be as wide as the widest date element.</p>
<p>This date element happens to be Summer 2007, which is quite long indeed, therefore all we need to do now is to create a new length that will store the Summer 2007 length and apply it to the columns.</p>
<h2>1. Length Manipulation Macros: \setlength, \newlength, \settowidth</h2>
<h3>1.a Declaring and Naming a new Dimension Container</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<h3>1.b Storing the length of a Text String into the just created Length \datebox</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\settowidth</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Summer 2007</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% string of text works here</span>
<span style="color: #800000; font-weight: normal;">\typeout</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\the</span><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% outputs 75.84961pt</span></pre></div></div>

<h3>1.c Manually assigning a value to a previously declared Length</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">&lt;dimension&gt;</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% string of text doesnt work here</span>
<span style="color: #800000; font-weight: normal;">\typeout</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\the</span><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% outputs &lt;dimension&gt;pt</span></pre></div></div>

<p>Example usage of \setlength might be</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1mm</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1cm</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\setlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1pt</span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>2. Setting the Fixed Table Column Width</h2>
<p>Option 1 involves setting the left hand side column as a justified paragraph of length \datebox.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%Table 1</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">p{<span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span>l<span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">% first row</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span> <span style="color: #E02020; ">&amp;</span> <span style="color: #2C922C; font-style: italic;">% first cell - width: \datebox</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span>    <span style="color: #2C922C; font-style: italic;">% second cell - width: variable</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%Table 2</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">p{<span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span>l<span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">% first row</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span> <span style="color: #E02020; ">&amp;</span> <span style="color: #2C922C; font-style: italic;">% first cell - width: \datebox</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span>    <span style="color: #2C922C; font-style: italic;">% second cell - width: variable</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>Another option is to use <strong><code>\parbox{dimen}{text}</code></strong></p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%Table 1</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">rl</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%notice r in place of p{\datebox}</span>
<span style="color: #2C922C; font-style: italic;">% first row</span>
<span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">[<span style="color: #C08020; font-weight: normal;">...text...</span><span style="color: #E02020; ">]</span></span><span style="color: #E02020; ">}</span> <span style="color: #E02020; ">&amp;</span> <span style="color: #2C922C; font-style: italic;">% first cell - width of the parbox: \datebox</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span>    <span style="color: #2C922C; font-style: italic;">% second cell - width: variable</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%Table 2</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">p{<span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span>l<span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">% first row</span>
<span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">[<span style="color: #C08020; font-weight: normal;">...text...</span><span style="color: #E02020; ">]</span></span><span style="color: #E02020; ">}</span> <span style="color: #E02020; ">&amp;</span> <span style="color: #2C922C; font-style: italic;">% first cell - width of the parbox: \datebox</span>
<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">...</span><span style="color: #E02020; ">]</span>    <span style="color: #2C922C; font-style: italic;">% second cell - width: variable</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>3. Final Result, as per Option 2 \parbox</h2>
<p><a href="http://www.cv-templates.info/wp-content/uploads/2010/01/equalWidth.png"><img src="http://www.cv-templates.info/wp-content/uploads/2010/01/equalWidth.png" alt="equalWidth" title="equalWidth" width="350" height="720" class="aligncenter size-full wp-image-632" /></a></p>
<h5>Useful Links on the Topic: <a href="http://en.wikibooks.org/wiki/LaTeX/Useful_Measurement_Macros#Length_manipulation_macros" target="_blank">Wikibooks</a></h5>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/' rel='bookmark' title='Permanent Link: LaTeX Guide to putting a picture in your CV'>LaTeX Guide to putting a picture in your CV</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/' rel='bookmark' title='Permanent Link: CV Tip: Letterspacing your name with XeLaTeX + Fontspec'>CV Tip: Letterspacing your name with XeLaTeX + Fontspec</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CurrVita &amp; ClassicThesis LaTeX CV Template – 100 lines of code</title>
		<link>http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/</link>
		<comments>http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 17:45:37 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[arsclassica]]></category>
		<category><![CDATA[classicthesis]]></category>
		<category><![CDATA[currvita]]></category>
		<category><![CDATA[iwona]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=563</guid>
		<description><![CDATA[The PDF Document is available here and the tex source here.

We are going to typeset a very clean and easy layout for a curriculum vitae using LaTeX, currvita and ClassicThesis. While I&#8217;m not extremely familiar with those styles, I took inspiration from the code snippet for a CV which is to be found at page [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h5>The PDF Document is available <a href="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita.pdf">here</a> and the tex source <a href="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita.tex">here</a>.<br />
</h5>
<p>We are going to typeset a very clean and easy layout for a curriculum vitae using <em>LaTeX</em>, <em>currvita</em> and <em>ClassicThesis</em>. While I&#8217;m not extremely familiar with those styles, I took inspiration from the code snippet for a CV which is to be found at <strong>page 202 </strong>of “L&#8217;Arte di Scrivere con LaTeX” by Lorenzo Pantieri, available in Italian at [PDF] <a href="http://www.lorenzopantieri.net/LaTeX_files/ArteLaTeX.pdf">the author&#8217;s website</a>.</p>
<p>As always, a preview of the final document follows (those screenshots are from multiple documents and variations thereof).</p>
<p><a title="Curriculum Vitae Template di The CV Inn, su Flickr" href="http://www.flickr.com/photos/the-cv-inn/4001679795/"><img src="http://farm3.static.flickr.com/2657/4001679795_cce3a2dc1d_b.jpg" alt="Curriculum Vitae Template" width="500" height="715" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita1/' title='currvita1'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita1-150x150.png" class="attachment-thumbnail" alt="" title="currvita1" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita2/' title='currvita2'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita2-150x150.png" class="attachment-thumbnail" alt="" title="currvita2" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita3/' title='currvita3'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita3-150x150.png" class="attachment-thumbnail" alt="" title="currvita3" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita4/' title='currvita4'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita4-150x150.png" class="attachment-thumbnail" alt="" title="currvita4" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita5/' title='currvita5'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita5-150x150.png" class="attachment-thumbnail" alt="" title="currvita5" /></a>
<a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/currvita6/' title='currvita6'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita6-150x150.png" class="attachment-thumbnail" alt="" title="currvita6" /></a>
<br />
<span id="more-563"></span></p>
<h1>1 The Preamble</h1>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">scrartcl</span><span style="color: #E02020; ">}</span>	<span style="color: #2C922C; font-style: italic;">% classe article di KOMA</span></pre></div></div>

<h2>1.1 Margin Notes</h2>
<p>In the economy of this document, margin notes will be fundamental markers as the following image clearly shows<br />
<img title="Margin Notes" src="http://img.skitch.com/20091012-fcsepqir7exqwq2ieqwwigcb4c.png" alt="Margin Notes" width="425" height="100" /><br />
First we need to set margin notes to default to the left margin (<em>reversemarginpar</em>), then I create a new shortcut command which will set the notes <em>ragged left</em>, <em>italic</em>, and <em>small</em>.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\reversemarginpar</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\MarginDate</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\marginpar</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedleft</span></span><span style="color: #800000; font-weight: normal;">\itshape</span><span style="color: #800000; font-weight: normal;">\small</span>#1</span><span style="color: #E02020; ">}}</span></pre></div></div>

<h2>1.2 Style and Currvita helper package</h2>
<p>For a more in–depth analysis of the packages, refer to CTAN and the appropriate documentation.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">LabelsAligned</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">currvita</span><span style="color: #E02020; ">}</span>	<span style="color: #2C922C; font-style: italic;">% CV package</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">nochapters</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">classicthesis</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%  ClassicThesis style</span></pre></div></div>

<h2>1.3 Miscellaneous Commands</h2>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">url</span><span style="color: #E02020; ">}</span>	<span style="color: #2C922C; font-style: italic;">% per gli indirizzi Internet</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\cvheadingfont</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\LARGE</span><span style="color: #800000; font-weight: normal;">\color</span><span style="color: #E02020; ">{</span>Maroon</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\cvlistheadingfont</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\large</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\cvlabelfont</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\qquad</span></span><span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">%Setup hyperref package, and colours for links, text and headings</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">hyperref</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hypersetup</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">	colorlinks,breaklinks,
			urlcolor=Maroon,
			linkcolor=Maroon</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">eurosym</span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>1.4 Boxes and Dimensions</h2>
<p>We will need to know the width of the biggest entry in the work experience “period”, in this way we make sure we have enought space for all the periods to align neatly.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\settowidth</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Summer 2007</span><span style="color: #E02020; ">}</span> 
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Sep</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span>2em</span><span style="color: #E02020; ">}}</span> <span style="color: #2C922C; font-style: italic;">% a trivial separator</span>
<span style="color: #2C922C; font-style: italic;">% the following is for languages</span>
<span style="color: #800000; font-weight: normal;">\newlength</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\langbox</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\settowidth</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\langbox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">English</span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>1.5 Helper Commands: NewWorkExperience and Description</h2>
<p>NewWorkExperience creates a <strong>Date</strong> – <strong>Job</strong> coupling, with a third argument for a location.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\NewWorkExperience</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">3</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\noindent</span><span style="color: #800000; font-weight: normal;">\hangindent</span>=2em<span style="color: #800000; font-weight: normal;">\hangafter</span>=0 <span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\datebox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textit</span></span><span style="color: #E02020; ">{</span>#1</span><span style="color: #E02020; ">}}</span><span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1.5em</span><span style="color: #E02020; ">}</span> #2 #3<span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}}</span></pre></div></div>

<p>while Description is simply a ragged right text box which contains a description of the job.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Description</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\hangindent</span>=2em<span style="color: #800000; font-weight: normal;">\hangafter</span>=0<span style="color: #800000; font-weight: normal;">\noindent</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span><span style="color: #800000; font-weight: normal;">\footnotesize</span><span style="color: #E02020; ">{</span>#1</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">par</span></span><span style="color: #800000; font-weight: normal;">\normalsize</span><span style="color: #E02020; ">}</span></pre></div></div>

<p><img src="http://img.skitch.com/20091014-xtq2sx3ex1i7asb9ddhc7a6cuw.png" alt="Visual Representation of Helper Commands" /></p>
<h1>The Document</h1>
<p>The document is very simple, there is nothing particularly fancy and it is mostly self–explanatory.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\thispagestyle</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">empty</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">cv</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\spacedallcaps</span><span style="color: #E02020; ">{</span>Marco Tullio Cicerone</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\spacedlowsmallcaps</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Personal Data</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">}{<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textit</span></span><span style="color: #E02020; ">{</span>Born in Matera,</span><span style="color: #E02020; ">}}{</span><span style="color: #2020C0; font-weight: normal;">13 November 1920</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">email</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\href</span><span style="color: #E02020; ">{</span>mailto:name.surname@gmail.com</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">name.surname@gmail.com</span><span style="color: #E02020; ">}}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span>phone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">+123 456 7890</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span>1.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\noindent</span><span style="color: #800000; font-weight: normal;">\spacedlowsmallcaps</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Work Experience</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Current</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Trader at Enoi spa,</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Milan</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Provided analysis of spreads, <span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span>Physical Natural Gas Trading</span><span style="color: #E02020; ">}</span>
in particular time and location spreads, with emphasis on trading
opportunities on the curve, also taking into
account the availability of storage facilities. Became familiar with logistic implications of physical gas trading and developed knowledge of continental virtual hubs for gas exchange.<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Sep</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">2008--2009</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Lehman Brothers,</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">London</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Developed spreadsheets for risk analysis<span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span>Commodities Exotics Trading</span><span style="color: #E02020; ">}</span> on exotic derivatives on a wide array of commodities (ags, oils, precious and base metals), managed blotter and secondary trades on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Sep</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Summer 2007</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Lehman Brothers,</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">London</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Received pre-placed offer from the Exotics Trading Desk as a <span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span>Summer Internship</span><span style="color: #E02020; ">}</span> result of very positive review.
Rated ``truly distinctive'' for Analytical Skills and Teamwork<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\spacedlowsmallcaps</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Education</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">July 2008</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Bocconi University,</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Milan</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">110/110 <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textit</span></span><span style="color: #E02020; ">{</span>summa cum laude</span><span style="color: #E02020; ">}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Major: Quantitative Finance<span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Master of Science in Finance</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\newline</span> Thesis: ``Sublinear and Locally Sublinear Prices'' <span style="color: #800000; font-weight: normal;">\newline</span> Advisor: Prof.~Erio <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Castagnoli</span><span style="color: #E02020; ">}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Gpa: 28.61/30<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Sep</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\NewWorkExperience</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">July 2006</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Bocconi University,</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Milan</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">110/110 <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textit</span></span><span style="color: #E02020; ">{</span>summa cum laude</span><span style="color: #E02020; ">}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Major: Quantitative Finance<span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Some Other Education</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\newline</span> Thesis: ``Sublinear and Locally Sublinear Prices'' <span style="color: #800000; font-weight: normal;">\newline</span> Advisor: Prof.~Erio <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Castagnoli</span><span style="color: #E02020; ">}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Gpa: 28.61/30<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\spacedlowsmallcaps</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Additional Information</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Sept. 2006	Scholarship for graduate students with an outstanding curriculum (<span style="color: #800000; font-weight: normal;">\euro</span><span style="color: #E02020; ">\</span> 30,000) </span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">June 2006	Gmat<span style="color: #800000; font-weight: normal;">\textregistered</span>: 730 (q:50;v:39) <span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span>Gmat</span><span style="color: #E02020; ">}</span>96<span style="color: #800000; font-weight: normal;">\textsuperscript</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">th</span><span style="color: #E02020; ">}</span> percentile; <span style="color: #800000; font-weight: normal;">\newline</span><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">awa</span><span style="color: #E02020; ">}</span>: 6.0/6.0 (89<span style="color: #800000; font-weight: normal;">\textsuperscript</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">th</span><span style="color: #E02020; ">}</span> percentile)<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\langbox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>English</span><span style="color: #E02020; ">}}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  <span style="color: #E02020; ">\</span> Fluent<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\langbox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>French</span><span style="color: #E02020; ">}}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  <span style="color: #E02020; ">\</span> Fluent<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Languages</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.5em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\parbox</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\langbox</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>Italian</span><span style="color: #E02020; ">}}\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Mother Tongue<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Description</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\LaTeX</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span> Typography<span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Programming<span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span> <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\cdotp</span>$</span><span style="color: #E02020; ">\</span> <span style="color: #E02020; ">\</span>  Other<span style="color: #800000; font-weight: normal;">\MarginDate</span><span style="color: #E02020; ">{</span>Interests</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\enlargethispage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\baselineskip</span></span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">cv</span></span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>The PDF Document is available <a href="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita.pdf">here</a> and the tex source <a href="http://www.cv-templates.info/wp-content/uploads/2009/10/currvita.tex">here</a>.</p>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>CV Tip: Letterspacing your name with XeLaTeX + Fontspec</title>
		<link>http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/</link>
		<comments>http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 18:20:11 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[Typography Tips]]></category>
		<category><![CDATA[fontin]]></category>
		<category><![CDATA[fontspec]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Letterspace]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[xcolor]]></category>
		<category><![CDATA[xelatex]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=536</guid>
		<description><![CDATA[Typographic Principle:
Letterspacing  may  increase the readability of your text, whereby the principle applies to
a) text set in bold;
b) text set in small caps.
It does not apply to text set in lowercase. In other words, don&#8217;t letterspace text set in lowercase.
How does this apply to a Resume?
There are at least two cases in which we [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/' rel='bookmark' title='Permanent Link: LaTeX Guide to putting a picture in your CV'>LaTeX Guide to putting a picture in your CV</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2><span style="background-color:#FFE302">Typographic Principle:</span></h2>
<blockquote><p>Letterspacing <strong> may </strong> increase the readability of your text, whereby the principle applies to<br />
<strong>a) </strong>text set in bold;<br />
<strong>b)</strong> text set in small caps.<br />
It <strong>does not apply</strong> to text set in lowercase. In other words, <strong>don&#8217;t letterspace </strong>text set in lowercase.</p></blockquote>
<h2>How does this apply to a Resume?</h2>
<p>There are at least two cases in which we can enhance the readability of our Curriculum Vitae or Resume, one which is <em>especially important</em>.</p>
<p>In fact, if you think about it, your name and surname are sitting at the top of the CV, which makes them a focal point where the eye is attracted instantly. This is the reason why your name must be typographically distinguished in some way: typically it is set in bold face, or small caps, or even ALL CAPS!</p>
<p>Problem is, sometimes bold text and small caps benefit from a little letterspacing, so we will see how that is achieved with fontspec and its easy to implement [LetterSpace =  &lt;<em>number</em>&gt;] option when calling the \fontspec{<strong>some font</strong>} command, as we will shortly show after a visual preview of what we can do.</p>

<a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/lowercase/' title='Lowercase'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/lowercase-150x150.png" class="attachment-thumbnail" alt="Lowercase" title="Lowercase" /></a>
<a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/bold/' title='Bold Family'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/bold-150x150.png" class="attachment-thumbnail" alt="Bold Family" title="Bold Family" /></a>
<a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/smallcaps/' title='Small Caps'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/smallcaps-150x150.png" class="attachment-thumbnail" alt="Small Caps" title="Small Caps" /></a>

<p><span id="more-536"></span></p>
<p>Here follows the XeLaTeX code to typeset the examples above (which are gathered in the pdf file at the end of the post).</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">% typeset the lowercase text</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\text</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Kramer Seinfeld</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\fontsize</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">36</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">36</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\fontspec</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Fontin</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%make sure you have Fontin installed</span>
<span style="color: #2C922C; font-style: italic;">%\bfseries %if you want text in bold face, the second example</span>
<span style="color: #2C922C; font-style: italic;">%\scshape %if you want text in small caps, make sure you have the font installed</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\marginpar</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\scshape</span><span style="color: #800000; font-weight: normal;">\addfontfeature</span><span style="color: #E02020; ">{</span>Color=FF0000</span><span style="color: #E02020; ">}</span> letterspace<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\text</span><span style="color: #800000; font-weight: normal;">\marginpar</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.0</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\addfontfeature</span><span style="color: #E02020; ">{</span>LetterSpace=2.0</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\text</span><span style="color: #800000; font-weight: normal;">\marginpar</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">2.0</span><span style="color: #E02020; ">}}</span>
&nbsp;
<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\addfontfeature</span><span style="color: #E02020; ">{</span>LetterSpace=5.0</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\text</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\marginpar</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">5.0</span><span style="color: #E02020; ">}</span></pre></div></div>

<p><a style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;" title="View Letter Spacing in XeLaTeX on Scribd" href="http://www.scribd.com/doc/20284581/Letter-Spacing-in-XeLaTeX">Letter Spacing in XeLaTeX</a> <object id="doc_951055688131003" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="500" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="doc_951055688131003" /><param name="align" value="middle" /><param name="quality" value="high" /><param name="play" value="true" /><param name="loop" value="true" /><param name="scale" value="showall" /><param name="wmode" value="opaque" /><param name="devicefont" value="false" /><param name="bgcolor" value="#ffffff" /><param name="menu" value="true" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://d1.scribdassets.com/ScribdViewer.swf?document_id=20284581&amp;access_key=key-77q1a7dxveh0bp0otdi&amp;page=1&amp;version=1&amp;viewMode=" /><param name="allowfullscreen" value="true" /><embed id="doc_951055688131003" type="application/x-shockwave-flash" width="100%" height="500" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=20284581&amp;access_key=key-77q1a7dxveh0bp0otdi&amp;page=1&amp;version=1&amp;viewMode=" allowscriptaccess="always" allowfullscreen="true" menu="true" bgcolor="#ffffff" devicefont="false" wmode="opaque" scale="showall" loop="true" play="true" quality="high" align="middle" name="doc_951055688131003"></embed></object></p>
<p>Next CV Typographic Tip will be about <em>emphasizing text</em>, how much should you emphasize your text so that it doesn&#8217;t look like this (<em>see the Not so short introduction to LaTeX</em>)?</p>
<p><img src="http://img.skitch.com/20090927-t6xeipctw6gmtjepusq37c8n7b.png" alt="lshort.pdf (pagina 123 di 147)"/> </p>
<p>By the way, anyone ever heard of “Seinfeld”?</p>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2010/02/latex-guide-to-putting-a-picture-in-your-cv/' rel='bookmark' title='Permanent Link: LaTeX Guide to putting a picture in your CV'>LaTeX Guide to putting a picture in your CV</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The “Linux” LaTeX CV Template</title>
		<link>http://www.cv-templates.info/2009/09/linux-latex-cv-template/</link>
		<comments>http://www.cv-templates.info/2009/09/linux-latex-cv-template/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 12:46:40 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[five-column]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[gutter]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Libertine]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[XeTeX]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=503</guid>
		<description><![CDATA[I decided to call this template generally “Linux” because I had had the opportunity to bump into the very interesting project called Linux Libertine which intends to develop, build and distribute a new typeface alternative to Times Roman that embraces the principles of open source and free “software”.

On wikipedia, Linux Libertine is described as:
[…] a [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I decided to call this template generally “Linux” because I had had the opportunity to bump into the very interesting project called <a href="http://linuxlibertine.sourceforge.net/" target="_blank">Linux Libertine</a> which intends to develop, build and distribute a new typeface alternative to Times Roman that embraces the principles of open source and free “software”.</p>
<p><span id="more-503"></span></p>
<p>On <a href="http://en.wikipedia.org/wiki/Linux_Libertine" target="_blank">wikipedia</a>, Linux Libertine is described as:</p>
<blockquote><p>[…] a serif proportional font that looks like a 19th century book type, though it has been developed for today&#8217;s usability. It contains more than 2000 <a title="Unicode" href="http://en.wikipedia.org/wiki/Unicode">Unicode</a> characters, including support for many different languages of the western <a title="Latin Alphabet" href="http://en.wikipedia.org/wiki/Latin_Alphabet">Latin</a>, <a title="Greek Alphabet" href="http://en.wikipedia.org/wiki/Greek_Alphabet">Greek</a>, <a title="Cyrillic alphabet" href="http://en.wikipedia.org/wiki/Cyrillic_alphabet">Cyrillic</a> and <a title="Hebrew alphabet" href="http://en.wikipedia.org/wiki/Hebrew_alphabet">Hebrew</a> typeset. Additionally it offers several <a title="Ligature (typography)" href="http://en.wikipedia.org/wiki/Ligature_%28typography%29">ligatures</a> (such as ff, fi, ct, …) and has special characters like <a title="International Phonetic Alphabet" href="http://en.wikipedia.org/wiki/International_Phonetic_Alphabet">IPA</a> characters, arrows, floral symbols, <a title="Roman numbers" href="http://en.wikipedia.org/wiki/Roman_numbers">Roman numbers</a>, <a title="Text figures" href="http://en.wikipedia.org/wiki/Text_figures">oldstyle numbers</a>, <a title="Small caps" href="http://en.wikipedia.org/wiki/Small_caps">small caps</a> etc. The <a title="OpenType" href="http://en.wikipedia.org/wiki/OpenType">OpenType</a> implementation allows automatic positioning and substitution like true fractures, ligatures and <a title="Kerning" href="http://en.wikipedia.org/wiki/Kerning">kerning</a></p></blockquote>
<p>You can find more about Linux Libertine at their <a href="http://linuxlibertine.sourceforge.net/" target="_blank">website</a>, a few examples of glyphs and characters are shown below, together with a preview of the CV Template that we will build using this typeface:</p>

<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/specimen-1/' title='Specimen-1'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Specimen-1-150x150.png" class="attachment-thumbnail" alt="" title="Specimen-1" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/specimen-2/' title='Specimen-2'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Specimen-2-150x150.png" class="attachment-thumbnail" alt="" title="Specimen-2" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/specimen-3/' title='Linux Libertine Glyphs'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Specimen-3-150x150.png" class="attachment-thumbnail" alt="Linux Libertine Glyphs" title="Linux Libertine Glyphs" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/bottom-linux-latex-cv-template/' title='Bottom Linux LaTeX Cv Template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Bottom-Linux-LaTeX-Cv-Template-150x150.png" class="attachment-thumbnail" alt="" title="Bottom Linux LaTeX Cv Template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/detail-contacts-latex-linux-cv-template/' title='Detail Contacts LaTeX Linux CV TEmplate'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Detail-Contacts-LaTeX-Linux-CV-TEmplate-150x150.png" class="attachment-thumbnail" alt="" title="Detail Contacts LaTeX Linux CV TEmplate" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/detail-list-linux-latex-cv-template/' title='Detail List Linux LaTeX CV Template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Detail-List-Linux-LaTeX-CV-Template-150x150.png" class="attachment-thumbnail" alt="" title="Detail List Linux LaTeX CV Template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/detail-top-left-grid-latex-cv-template/' title='detail Top left Grid LaTeX CV Template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/detail-Top-left-Grid-LaTeX-CV-Template-150x150.png" class="attachment-thumbnail" alt="" title="detail Top left Grid LaTeX CV Template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/top-left-linux-cv-template/' title='Top Left Linux CV Template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Top-Left-Linux-CV-Template-150x150.png" class="attachment-thumbnail" alt="" title="Top Left Linux CV Template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/middle-linux-latex-cv-template/' title='Middle Linux LaTeX CV Template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Middle-Linux-LaTeX-CV-Template-150x150.png" class="attachment-thumbnail" alt="" title="Middle Linux LaTeX CV Template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/linux-latex-cv-template-2/' title='Linux LaTeX CV template'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Linux-LaTeX-CV-template-150x150.png" class="attachment-thumbnail" alt="" title="Linux LaTeX CV template" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/linux-latex-cv-template-with-grid/' title='Linux LaTeX CV template with Grid'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Linux-LaTeX-CV-template-with-Grid-150x150.png" class="attachment-thumbnail" alt="" title="Linux LaTeX CV template with Grid" /></a>
<a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/grid-linux-latex-cv-template-bottom/' title='Grid Linux LaTeX CV Template Bottom'><img width="150" height="135" src="http://www.cv-templates.info/wp-content/uploads/2009/09/Grid-Linux-LaTeX-CV-Template-Bottom-150x135.png" class="attachment-thumbnail" alt="" title="Grid Linux LaTeX CV Template Bottom" /></a>

<p>Features:</p>
<ol>
<li>Grid Based with my custom style file (more on this in the following weeks)</li>
<li>Linux Libertine Font and Qlassik Medium for the name header</li>
<li>Nice and Clean color structure based only on shades of grey</li>
<li>Custom itemization of Computer Languages with gradient bullets</li>
<li>Support for inserting in an easy way a picture</li>
<li>Support for a personal quote, a very short summary, or a career objective right below the name, emphasizing its importance</li>
</ol>
<p>Check out the code and the final result and let me know your feedback&#8230;</p>
<p><a title="View LaTeX Linux CV Template on Scribd" href="http://www.scribd.com/doc/19348338/LaTeX-Linux-CV-Template" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">LaTeX Linux CV Template</a> <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="doc_114957592019918" name="doc_114957592019918" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle"	height="500" width="500" ><param name="movie"	value="http://d.scribd.com/ScribdViewer.swf?document_id=19348338&#038;access_key=key-1be801be8ryaa6gvnp75&#038;page=1&#038;version=1&#038;viewMode=list"><param name="quality" value="high"><param name="play" value="true"><param name="loop" value="true"><param name="scale" value="showall"><param name="wmode" value="opaque"><param name="devicefont" value="false"><param name="bgcolor" value="#ffffff"><param name="menu" value="true"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="salign" value=""><param name="mode" value="list"><embed src="http://d.scribd.com/ScribdViewer.swf?document_id=19348338&#038;access_key=key-1be801be8ryaa6gvnp75&#038;page=1&#038;version=1&#038;viewMode=list" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_114957592019918_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" mode="list" height="500" width="500"></embed></object></p>
<p>The document with its grid can be seen <a href="http://www.scribd.com/doc/19348339/LaTeX-Linux-CV-Template-with-Grid">here</a> and a zip bundle with the .sty to generate the grid is at this <a href="http://www.cv-templates.info/wp-content/uploads/2009/09/linux-latex-cv-template-grid.zip">link</a></p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"> <span style="color: #2C922C; font-style: italic;">% ----------------------------------------------------------------------------------------%</span>
<span style="color: #2C922C; font-style: italic;">%	Created by Alessandro with TeXShop						%</span>
<span style="color: #2C922C; font-style: italic;">%	----&gt;	Sep 1, 2009										%</span>
<span style="color: #2C922C; font-style: italic;">%	Compiled with XeLaTeX, on Mac OS X 10.5					%</span>
<span style="color: #2C922C; font-style: italic;">%	Licensed under the Creative Commons Attribution 3.0 Unported	%</span>
<span style="color: #2C922C; font-style: italic;">%	Share, change, spread, and have fun!						%</span>
<span style="color: #2C922C; font-style: italic;">%	http://creativecommons.org/licenses/by/3.0/					%</span>
<span style="color: #2C922C; font-style: italic;">%	You can find more at http://cv-templates.info				%</span>
<span style="color: #2C922C; font-style: italic;">% ----------------------------------------------------------------------------------------%</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">article</span><span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">%% LaTeX Preamble - Common packages</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">utf8</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">inputenc</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% Any characters can be typed directly from the keyboard, eg √©√ß√±</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">textcomp</span><span style="color: #E02020; ">}</span> 	<span style="color: #2C922C; font-style: italic;">% provide lots of new symbols</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">graphicx</span><span style="color: #E02020; ">}</span>  	<span style="color: #2C922C; font-style: italic;">% Add graphics capabilities</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">xcolor</span><span style="color: #E02020; ">}</span>		<span style="color: #2C922C; font-style: italic;">% Colors </span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">% Define Colors</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">lightg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">999999</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">666666</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">333333</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">wrapfig</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%FONTS</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">fontspec</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% not using this much although I should have</span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\head</span>=&quot;Qlassik Medium:letterspace=4&quot; at 34pt <span style="color: #2C922C; font-style: italic;">% http://www.dafont.com/qlassik.font</span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\subhead</span>=&quot;Linux Libertine O Bold&quot; at 15pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Quote</span>=&quot;Linux Libertine O Bold Italic:mapping=tex-text&quot; at 16pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Text</span>=&quot;Linux Libertine O&quot; at 11pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Textit</span>=&quot;Linux Libertine O/I:+onum&quot; at 11pt 	<span style="color: #2C922C; font-style: italic;">% /I select Italic</span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Textblack</span>=&quot;Linux Libertine O/BI&quot; at 9pt 	<span style="color: #2C922C; font-style: italic;">% /BI select Bold Italic </span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Textsc</span>=&quot;Linux Libertine O:+smcp&quot; at 11pt 	<span style="color: #2C922C; font-style: italic;">% +smcp selects Small Caps</span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\wdate</span>=&quot;Linux Libertine O:+smcp, letterspace=4,+onum&quot; at 9pt <span style="color: #2C922C; font-style: italic;">% +onum old style numerals</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">margin=10mm</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">geometry</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% Margins</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">pdftex,bookmarks,colorlinks,breaklinks</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">hyperref</span><span style="color: #E02020; ">}</span>  <span style="color: #2C922C; font-style: italic;">% PDF </span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">setspace</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">% leading</span>
&nbsp;
&nbsp;
<span style="color: #2C922C; font-style: italic;">% Commands to keep the code clean</span>
<span style="color: #2C922C; font-style: italic;">% Below experience section you can see this structure</span>
<span style="color: #2C922C; font-style: italic;">% WorkDate -&gt; Keyword</span>
<span style="color: #2C922C; font-style: italic;">% ^^ Multi line WorkDescription ^^</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\workdate</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #2C922C; font-style: italic;">%</span>
	<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">lightg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\wdate</span> #1</span><span style="color: #E02020; ">}}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\workdescription</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span><span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Text</span> <span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">spacing</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1.1818</span><span style="color: #E02020; ">}</span>#1 <span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">spacing</span></span><span style="color: #E02020; ">}}}</span>
<span style="color: #2C922C; font-style: italic;">% Variation with reduced leading</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\workdescriptionVAR</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span><span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span>medg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Text</span> <span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">spacing</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">1.1</span><span style="color: #E02020; ">}</span>#1 <span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">spacing</span></span><span style="color: #E02020; ">}}}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%Styling Itemizations</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">enumitem</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\labelitemi</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span>lightg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;F6B9</span><span style="color: #E02020; ">}}}</span>
<span style="color: #2C922C; font-style: italic;">% Bullets</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">999999</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notetwo</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">848484</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notethree</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">424242</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notefour</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">212121</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notefive</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">000000</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\fivenotes</span></span><span style="color: #E02020; ">}{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notetwo</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notethree</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notefour</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notefive</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\fournotes</span></span><span style="color: #E02020; ">}{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notetwo</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notethree</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notefour</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\threenotes</span></span><span style="color: #E02020; ">}{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notetwo</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notethree</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\twonotes</span></span><span style="color: #E02020; ">}{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">notetwo</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\onenote</span></span><span style="color: #E02020; ">}{</span><span style="color: #2C922C; font-style: italic;">%</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">noteone</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;2022</span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">% Important: This is not an official package, is a customized typogrid</span>
<span style="color: #2C922C; font-style: italic;">% .sty file which I wrote and enables the 5 column grid</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">draft, columns=5</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">mytypogrid</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\parindent</span>=0cm
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.59<span style="color: #800000; font-weight: normal;">\linewidth</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\head</span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">RICHARD STALLMAN</span><span style="color: #E02020; ">}\\</span> <span style="color: #E02020; ">\\</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">wrapfigure</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">i</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\includegraphics</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">scale=0.5</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">gnu.png</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">25pt</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">wrapfigure</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span><span style="color: #800000; font-weight: normal;">\Quote</span><span style="color: #800000; font-weight: normal;">\color</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}</span> <span style="color: #800000; font-weight: normal;">\kern</span> -10pt``<span style="color: #E02020; ">\</span> I like computers, music and butterflies --- among other things.''
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">3em</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hrule</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hfill</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\Textit</span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">born</span><span style="color: #E02020; ">}\</span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">lightg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"> March 16, 1953</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">2.2em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\subhead</span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">Contacts</span><span style="color: #E02020; ">}\\</span><span style="color: #800000; font-weight: normal;">\color</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\Text</span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">
Free Software Foundation<span style="color: #E02020; ">\\</span>
Boston, Massachusetts, USA</span><span style="color: #E02020; ">}\\</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">phone</span><span style="color: #E02020; ">}</span> : 123 456 789<span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">darkg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">email</span><span style="color: #E02020; ">}</span> : rms@gnu.org
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">lightg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">http://www.stallman.org/</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">2.3em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\subhead</span> <span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">&quot;E000</span><span style="color: #E02020; ">}\</span> Experience
&nbsp;
<span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.205<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\workdate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1983</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\hfill</span><span style="color: #800000; font-weight: normal;">\Textblack</span> Manifesto
<span style="color: #800000; font-weight: normal;">\workdescription</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Published the GNU Manifesto, which outlined his motivation for creating a free operating system called GNU, which would be compatible with Unix.</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hfill</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.387<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\workdate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1985</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\hfill</span><span style="color: #800000; font-weight: normal;">\Textblack</span> Emacs
<span style="color: #800000; font-weight: normal;">\workdescription</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Popularized the concept of copyleft, a legal mechanism to protect the modification and redistribution rights for free software. It was first implemented in the GNU Emacs General Public License.</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.205<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\workdate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1987</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\hfill</span><span style="color: #800000; font-weight: normal;">\Textblack</span> GNU
<span style="color: #800000; font-weight: normal;">\workdescription</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">The first program-independent GNU General Public License (GPL) was released. By then, much of the GNU system had been completed.</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hfill</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\workdate</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1991</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\hfill</span><span style="color: #800000; font-weight: normal;">\Textblack</span> Linux
<span style="color: #800000; font-weight: normal;">\workdescription</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Linus Torvalds, a Finnish student, used the GNU development tools to produce the Linux kernel</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">3em</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hrule</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">4.1em</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\subhead</span><span style="color: #800000; font-weight: normal;">\kern</span> -13pt<span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">&quot;E000</span><span style="color: #E02020; ">}</span> Computer Specialties <span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">&quot;E050</span><span style="color: #E02020; ">}</span> Programming Languages<span style="color: #E02020; ">\\</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0.205<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hfill</span><span style="color: #800000; font-weight: normal;">\Textblack</span> ...in words...
<span style="color: #800000; font-weight: normal;">\workdescriptionVAR</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span>5pt</span><span style="color: #E02020; ">}</span>
The GNU Compiler Collection (usually shortened to GCC) is a compiler system produced by the GNU Project supporting various programming languages. <span style="color: #E02020; ">\\</span><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>GCC is a key component of the GNU toolchain. 
<span style="color: #E02020; ">\\</span><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span> As well as being the official compiler of the GNU operating system, GCC has been adopted as the standard compiler by most other modern Unix-like computer operating systems, including GNU/Linux, the BSD family and Mac OS X. <span style="color: #E02020; ">\\</span><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">10pt</span><span style="color: #E02020; ">}</span>GCC has been ported to a wide variety of processor architectures, and is widely deployed as a tool in commercial, proprietary and closed source software development environments.<span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">3.1mm</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.38<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\Textblack</span> ...and in bullets.
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">5pt</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">itemize</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">leftmargin=25pt, rightmargin=55pt, labelsep=10pt, itemsep=0pt, topsep=0pt</span><span style="color: #E02020; ">]</span><span style="color: #800000; font-weight: normal;">\Text</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> <span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">C++</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fournotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> <span style="color: #800000; font-weight: normal;">\color</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">medg</span><span style="color: #E02020; ">}</span>C<span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\threenotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Lisp<span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fivenotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Bash <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\twonotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> GNU/Linux <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fournotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Lisp<span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fivenotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Bash <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\twonotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> GNU/Linux <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fournotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Lisp<span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fivenotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Bash <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\twonotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> GNU/Linux <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fournotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Lisp<span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fivenotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> Bash <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\twonotes</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">item</span></span> GNU/Linux <span style="color: #800000; font-weight: normal;">\hfill</span> <span style="color: #800000; font-weight: normal;">\fournotes</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">itemize</span></span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\vfill</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedleft</span></span><span style="color: #800000; font-weight: normal;">\wdate</span> Typeset <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">today</span></span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></pre></div></div>



<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/09/linux-latex-cv-template/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</title>
		<link>http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/</link>
		<comments>http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 21:15:52 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[PGF]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[TikZ]]></category>
		<category><![CDATA[XeTeX]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=413</guid>
		<description><![CDATA[Most of the templates built with LaTeX look like prehistoric documents and are embarassing in that they are usually designed with the standard font, with the standard class, no colours whatsoever, no creativity.
Plain LaTeX — what one would do when writing a math paper, just load a few packages and you&#8217;re good to go.
I wanted [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 160px"><a href="http://img.skitch.com/20090814-d5kh395f9aid4cuh2pui34s79p.png"><img class=" " title="The Typographer — Manuale di Tipografia" src="http://img.skitch.com/20090814-d5kh395f9aid4cuh2pui34s79p.png" alt="The Typographer — Manuale di Tipografia" width="150" height="195" /></a><p class="wp-caption-text">The Typographer</p></div>
<p>Most of the templates built with LaTeX look like prehistoric documents and are embarassing in that they are usually designed with the <em>standard</em> <em>font</em>, with the <em>standard class</em>, no colours whatsoever, no creativity.</p>
<p>Plain LaTeX — what one would do when writing a math paper, just load a few packages and you&#8217;re good to go.</p>
<p>I wanted to showcase the possibility that XeLaTeX offers to customize a lot of aspects of the style of your document, and for the purpose of this tutorial I figured I was a web designer and wanted to showcase, along with my computer skills and my experience, example thumbnails of work as a designer and finishing off the document with a fancy <strong>contact section</strong>.</p>
<p>A preview follows</p>

<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/car-obj/' title='Career Objective'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/08/car-obj-150x150.png" class="attachment-thumbnail" alt="Career Objective — top of the Resume Template" title="Career Objective" /></a>
<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/exp/' title='Experience Section'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/08/exp-150x150.png" class="attachment-thumbnail" alt="Experience Section" title="Experience Section" /></a>
<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/contacts/' title='Contacts at the Bottom of the Page'><img width="150" height="143" src="http://www.cv-templates.info/wp-content/uploads/2009/08/contacts-150x143.png" class="attachment-thumbnail" alt="Contacts at the Bottom of the Page" title="Contacts at the Bottom of the Page" /></a>
<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/cv-2-0/' title='Resume 2.0'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/08/cv-2.0-150x150.png" class="attachment-thumbnail" alt="Resume 2.0 — you like it?" title="Resume 2.0" /></a>
<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/2-0icons/' title='2.0 Icons'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/08/2.0icons-150x150.png" class="attachment-thumbnail" alt="Web 2.0 Icons" title="2.0 Icons" /></a>
<a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/leader/' title='Portfolio'><img width="150" height="150" src="http://www.cv-templates.info/wp-content/uploads/2009/08/leader-150x150.png" class="attachment-thumbnail" alt="Portfolio Leaderboard" title="Portfolio" /></a>
<br />
<span id="more-413"></span></p>
<h2>1 – Toolkit: Packages and Preamble</h2>
<h3>1.1 – Graphics and Colours</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">article</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%Load Graphics and Colours</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">graphicx</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tikz</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usetikzlibrary</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">backgrounds</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">wrapfig</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">linkcolour</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">2b2b2b</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">text1</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">2B2B2B</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">headings</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">CC3300</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">backgroundColor</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">CC3300</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>This is the color combination that will be used<br />
<a href="http://www.colorcombos.com/combotester.html?color0=2b2b2b&amp;color1=cc3300"><img src="http://www.colorcombos.com/combo_image.php?color0=2b2b2b&amp;color1=cc3300&amp;p_b=4&amp;p_w=4&amp;p_s=60" border="0" alt="" /></a></p>
<h3>1.2 – Margins and Leading</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%margins</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">hmargin=1.25cm, vmargin=1cm</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">geometry</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\linespread</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1.2</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">setspace</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>Things to notice:</p>
<ol>
<li> the <strong>linespread</strong> command is used for the whole document;</li>
<li> the <strong>setspace</strong> package is used to address specific paragraphs;</li>
</ol>
<h3>1.3 – Styling Itemization</h3>
<p><div class="wp-caption alignnone" style="width: 92px"><img title="Styling Itemization with Custom Calluna Symbol" src="http://img.skitch.com/20090815-fafjm36833dpg6iw1xfrms241.png" alt="Styling Itemization with Custom Calluna Symbol" width="82" height="72" /><p class="wp-caption-text">Styling Itemization with Custom Calluna Symbol</p></div>
<p>The package <strong>enumitem</strong> allows you to apply a custom style to your enumerations, and many other things like spacing and indenting: check out the documentation on <a href="http://ctan.og">CTAN</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%Styling Itemizations</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">enumitem</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\labelitemi</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\symbol</span><span style="color: #E02020; ">{</span>&quot;E052</span><span style="color: #E02020; ">}}</span></pre></div></div>

<h3>1.4 – Fonts for XeLaTeX; Calluna and Helvetica Neue</h3>
<p>We will use the following two professional fonts:</p>
<h4>CALLUNA</h4>
<div class="wp-caption alignnone" style="width: 405px"><a href="http://www.josbuivenga.demon.nl/calluna.html"><img title="Calluna Specimen" src="http://img.skitch.com/20090815-mwpwnk94t4ehgiaj2a3j9rarxd.png" alt="Calluna Regular — A wonderful new free professional font" width="395" height="145" /></a><p class="wp-caption-text">Calluna Regular — A wonderful new free professional font</p></div>
<h4>HELVETICA NEUE BOLD</h4>
<div class="wp-caption alignnone" style="width: 240px"><a href="http://www.adobe.com/type/browser/F/HELL/F_HELL-10095000.html"><img title="Adobe Helvetica Neue Black" src="http://img.skitch.com/20090815-cqj7dbib23b4msdfk9h4s47gjg.png" alt="Adobe Helvetica Neue Black" width="230" height="94" /></a><p class="wp-caption-text">Adobe Helvetica Neue Black</p></div>
<p>Helvetica Neue is a commercial fonts and may not be available to your system: I suggest taking a look at some other free fonts for headings, for example <a href="http://www.dafont.com/qlassik.font">Qlassik Bold</a></p>
<p><img src="http://img.skitch.com/20090815-nu2ksug8pmi6ejxjb4rqfy122d.png" alt="Qlassik Bold Font" /></p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%Fonts and Tweaks for XeLaTeX</span>
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\headers</span>=&quot;Helvetica Neue Bold:letterspace=5&quot; at 20pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\SectionHeaders</span>=&quot;Helvetica Neue Bold:letterspace=5&quot; at 14pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Career</span>=&quot;Calluna:color=2b2b2b&quot; at 13pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\Text</span>=&quot;Calluna:color=2b2b2b&quot; at 11pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\TextAlt</span>=&quot;Calluna:color=CC3300&quot; at 11pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\TextSC</span>=&quot;Calluna:+smcp, color=2b2b2b&quot; at 11pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\slash</span>=&quot;Calluna:+zero, color=2b2b2b&quot; at 40pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\slashAlt</span>=&quot;Calluna:+zero, color=CC3300&quot; at 40pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\ContactHeaders</span>=&quot;Calluna&quot; at 170 pt
<span style="color: #800000; font-weight: normal;">\font</span><span style="color: #800000; font-weight: normal;">\trick</span>=&quot;Calluna:color=FFFFFF&quot; at 0.1 pt</pre></div></div>

<p>Other things to notice here:</p>
<ol>
<li><em>letterspace </em>is modified to allow for headings to be more legible. This is usual practice with all caps text;</li>
<li><em>color </em>is given to the command setting the font name;</li>
<li><em>+smcp</em> is XeTeX syntax to recall Small Caps in the font table;</li>
<li><em>+zero </em>is XeTeX syntax to recall Slashed Zero in the font table;</li>
<li><em>trick</em> will be used as a workaround to hyperlinks not working properly for images in XeLaTeX;</li>
<li>I decided to use this syntax, however you could more easily access font features with the well-known <strong>fontspec</strong> package.</li>
</ol>
<h3>1.5 – Hyperref Package</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%Setup hyperref package, and colours for links, text and headings</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">hyperref</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\hypersetup</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">	colorlinks,breaklinks,
			urlcolor=linkcolour,
			linkcolor=linkcolour</span><span style="color: #E02020; ">}</span></pre></div></div>

<h3>1.6 – Custom Sections</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%custom \section</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">titlesec</span><span style="color: #E02020; ">}</span>				
&nbsp;
<span style="color: #2C922C; font-style: italic;">%CV Sections inspired by:</span>
<span style="color: #2C922C; font-style: italic;">%http://stefano.italians.nl/archives/26</span>
<span style="color: #800000; font-weight: normal;">\titleformat</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\section</span></span><span style="color: #E02020; ">}</span>
	<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\SectionHeaders</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">}{0em</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\titlespacing</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\section</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">5pt</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\thispagestyle</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">empty</span><span style="color: #E02020; ">}</span></pre></div></div>

<p style="text-align: right;"><span style="font-size: small;">Continued at <a href="http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/2/"><span style="text-decoration: underline;"><em>NEXT PAGE</em></span></a></span></p>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>LaTeX Fonts: 9 Fonts You Don&#8217;t Know (and How To Use Them)</title>
		<link>http://www.cv-templates.info/2009/07/latex-fonts-9-fonts-you-dont-know/</link>
		<comments>http://www.cv-templates.info/2009/07/latex-fonts-9-fonts-you-dont-know/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 18:15:26 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[XeTeX]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=365</guid>
		<description><![CDATA[Has the Computer Modern Font already bored you?
While I find it extremely clean and elegant, I don&#8217;t want people to recognize my typesetting system by the font — especially my Curriculum Vitæ. Indeed, it&#8217;s very easy to associate a document to LaTeX when it&#8217;s typeset in Computer Modern, headings are not customized, and the style [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Has the Computer Modern Font already bored you?</p>
<p>While I find it extremely clean and elegant, I don&#8217;t want people to recognize my typesetting system by the font — especially my Curriculum Vitæ. Indeed, it&#8217;s very easy to associate a document to LaTeX when it&#8217;s typeset in Computer Modern, headings are not customized, and the style is elegant yet totally predictable (i.e. the “I&#8217;ve already seen that elsewhere” syndrome).</p>
<p>Hereby you will find a list and the necessary commands to typeset your document with different, and hopefully more refreshing fonts.<br />
<span id="more-365"></span></p>
<h2>LaTeX Fonts vs. Xe(La)TeX Fonts</h2>
<p>Font installation in LaTeX is not immediate: you can&#8217;t use your system fonts directly or with simple commands.</p>
<p>The installation process goes beyond my knowledge.</p>
<p>At this point, lazy people will do one of the following things:</p>
<ol>
<li> change typesetting system — lazy+not-so-smart people will go back to Word, lazy+smart will discover XeTeX;</li>
<li>ask themselves whether their LaTeX distribution (i.e. TeXLive, MacTeX, MikTeX) has some other fonts bundled, and how to select them in a document;</li>
<li><span style="text-decoration: line-through;">read some 200 pages tutorial on how to install Fonts in LaTeX, and learning font tables + metrics + so many other things in the process</span> — they&#8217;re lazy people, this violates our main assumption.</li>
</ol>
<a href="http://www.cv-templates.info/2009/03/professional-cv-latex/">Here</a>, <a href="http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/">here</a>, and <a href="http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/">here</a> we have been using XeLaTeX and a few professional fonts (Fontin, Hoefler Text, Gill Sans).</p>
<p>Now we say we haven&#8217;t got these fonts, so how do we proceed?</p>
<h2>Custom LaTeX Fonts</h2>
<p>Much of the information that follows is taken from <a href="http://www.tug.dk/FontCatalogue/" target="_blank">this</a> wonderful page. Thanks!</p>
<h3>1. Computer Modern (Default)</h3>
<p>From <a href="http://en.wikipedia.org/wiki/Computer_modern">Wikipedia</a></p>
<blockquote><p>As implied by the name, Computer Modern is a modern font. Modern, or &#8220;Didone&#8221;, fonts have high contrast between thick and thin elements, and their axis of &#8220;stress&#8221; or thickening is perfectly vertical. Computer Modern, specifically, is based on Monotype Modern 8a, and like its immediate model it has a large x-height relative to the length of ascenders and descenders.
</p></blockquote>
<p><div id="attachment_382" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-computer-modern.png"><img class="size-thumbnail wp-image-382" title="font-showcase-computer-modern" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-computer-modern-150x150.png" alt="Computer Modern" width="150" height="150" /></a><p class="wp-caption-text">Computer Modern</p></div>
<h3>2. Venturis Old</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">venturisold</span><span style="color: #E02020; ">}</span></pre></div></div>

<div id="attachment_384" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-venturisold.png"><img class="size-thumbnail wp-image-384" title="font-showcase-venturisold" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-venturisold-150x150.png" alt="Venturis Old" width="150" height="150" /></a><p class="wp-caption-text">Venturis Old</p></div>
<h3>3. Bookman</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">bookman</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>From <a href="http://en.wikipedia.org/wiki/Bookman_(typeface)">Wikipedia</a></p>
<blockquote><p>Bookman was designed as an alternative to Caslon, with straighter serifs, making it more suitable for book and display applications. It maintains its legibility at small sizes, and can be used successfully for headlines and in advertising. In 1936, Chauncey H. Griffith of the American Linotype foundry developed a revival.</p></blockquote>
<div id="attachment_383" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-bookman.png"><img class="size-thumbnail wp-image-383" title="font-showcase-bookman" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-bookman-150x150.png" alt="Bookman" width="150" height="150" /></a><p class="wp-caption-text">Bookman</p></div>
<h3>4. TeX Gyre Schola</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tgschola</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>From the TeX Gyre <a href="http://www.gust.org.pl/projects/e-foundry/tex-gyre/">website</a></p>
<blockquote><p>
The TeX Gyre Schola family of serif fonts is based on the URW Century Schoolbook L family distributed with Ghostscript. The original was designed by Morris Fuller Benton in 1919, for the American Type Founders. The constituent 4 standard faces contain nearly 1250 glyphs each and are available in PostScript, TeX and OpenType formats.
</p></blockquote>
<div id="attachment_380" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase.tgschola.png"><img class="size-thumbnail wp-image-380" title="font-showcase.tgschola" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase.tgschola-150x150.png" alt="TG Schola" width="150" height="150" /></a><p class="wp-caption-text">TG Schola</p></div>
<h3>5. Times</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">mathptmx</span><span style="color: #E02020; ">}</span></pre></div></div>

<blockquote><p> Times New Roman is a serif typeface commissioned by the British newspaper, The Times, in 1931, designed by Stanley Morison and Victor Lardent at the English branch of Monotype.[1] It was commissioned after Morison had written an article criticizing The Times for being badly printed and typographically behind the times.</p></blockquote>
<div id="attachment_381" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-times.png"><img class="size-thumbnail wp-image-381" title="font-showcase-times" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-times-150x150.png" alt="Times" width="150" height="150" /></a><p class="wp-caption-text">Times</p></div>
<h3>6. Computer Modern Bright</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">cmbright</span><span style="color: #E02020; ">}</span></pre></div></div>

<div id="attachment_379" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-cmbright.png"><img class="size-thumbnail wp-image-379" title="font-showcase-cmbright" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-cmbright-150x150.png" alt="CM Bright" width="150" height="150" /></a><p class="wp-caption-text">CM Bright</p></div>
<h3>7. Utopia via Fourier package</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">fourier</span><span style="color: #E02020; ">}</span></pre></div></div>

<div id="attachment_378" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-fourier.png"><img class="size-thumbnail wp-image-378" title="font-showcase-fourier" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-fourier-150x150.png" alt="Fourier" width="150" height="150" /></a><p class="wp-caption-text">Fourier</p></div>
<h3>8. Latin Modern</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">lmodern</span><span style="color: #E02020; ">}</span></pre></div></div>

<div id="attachment_377" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-lmodern.png"><img class="size-thumbnail wp-image-377" title="font-showcase-lmodern" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-lmodern-150x150.png" alt="Latin Modern" width="150" height="150" /></a><p class="wp-caption-text">Latin Modern</p></div>
<h3>9. Helvetica</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">scaled</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">helvetica</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\renewcommand*</span><span style="color: #800000; font-weight: normal;">\familydefault</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\sfdefault</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%% Only if the base font of the document is to be sans serif</span></pre></div></div>

<p>From the Wikipedia <a href="http://en.wikipedia.org/wiki/Helvetica">entry</a></p>
<blockquote><p>Helvetica was developed in 1957 by Max Miedinger with Eduard Hoffmann at the Haas&#8217;sche Schriftgiesserei (Haas type foundry) of Münchenstein, Switzerland. Haas set out to design a new sans-serif typeface that could compete with Akzidenz-Grotesk in the Swiss market. Originally called Die Neue Haas Grotesk, it was created based on Schelter-Grotesk. The aim of the new design was to create a neutral typeface that had great clarity, had no intrinsic meaning in its form, and could be used on a wide variety of signage.
</p></blockquote>
<div id="attachment_376" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-helvetica.png"><img class="size-thumbnail wp-image-376" title="font-showcase-helvetica" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-helvetica-150x150.png" alt="Helvetica" width="150" height="150" /></a><p class="wp-caption-text">Helvetica</p></div>
<h3>10. GFS Didot</h3>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">gfsdidot</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>From the Wikipedia <a href="http://en.wikipedia.org/wiki/Didot_(typeface)">entry</a>:</p>
<blockquote><p>Didot is a name given to a group of typefaces named after the famous French printing and type producing family. The classification is known as modern, or Didone. The typeface we know today was based on a collection of related types developed in the period 1784-1811. Firmin Didot (1764–1836) cut the letters, and cast them as type. His brother Pierre Didot (1760–1853 ) used the types in printing. His edition of La Henriade by Voltaire in 1818 is considered his masterwork. The typeface takes inspiration from John Baskerville&#8217;s experimentation with increasing stroke contrast and a more condensed armature. The Didot family&#8217;s development of a high contrast typeface with an increased stress is contemporary to similar faces developed by Giambattista Bodoni in Italy. Didot is described as neoclassical, and is evocative of the Age of Enlightenment.
</p></blockquote>
<div id="attachment_390" class="wp-caption alignnone" style="width: 160px"><a class="shutterset_font" href="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-gfsdidot.png"><img class="size-thumbnail wp-image-390" title="font-showcase-gfsdidot" src="http://www.cv-templates.info/wp-content/uploads/2009/07/font-showcase-gfsdidot-150x150.png" alt="GFS Didot" width="150" height="150" /></a><p class="wp-caption-text">GFS Didot</p></div>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/07/latex-fonts-9-fonts-you-dont-know/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Alternate Row Shading in LaTeX Table</title>
		<link>http://www.cv-templates.info/2009/07/alternate-row-shading-latex/</link>
		<comments>http://www.cv-templates.info/2009/07/alternate-row-shading-latex/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 21:07:31 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Alternate Row]]></category>
		<category><![CDATA[Grades]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[xcolor]]></category>

		<guid isPermaLink="false">http://www.cv-templates.info/?p=321</guid>
		<description><![CDATA[This tutorial has been contributed to the wikibooks project. You can find it at this link (currently accepted)
Table Data are notoriously hard to read line by line.
In the very same way, grades in a Curriculum can be hard to read.
A nifty and quick workaround is to shade alternate rows with different colours, preferably one white [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/' rel='bookmark' title='Permanent Link: CV Tip: Letterspacing your name with XeLaTeX + Fontspec'>CV Tip: Letterspacing your name with XeLaTeX + Fontspec</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="background-color: #99ff99;"><img class="alignright" style="border: 0pt none; background-color: #99ff99;" src="http://upload.wikimedia.org/wikibooks/en/b/bc/Wiki.png" alt="Wikibooks Icon" width="35" height="35" /><img class="alignleft" style="border: 0pt none; background-color: #99ff99;" src="http://upload.wikimedia.org/wikibooks/en/b/bc/Wiki.png" alt="Wikibooks Icon" width="35" height="35" /><strong><span style="background-color: #99ff99;">This tutorial has been contributed to the wikibooks project. You can find it at this <a title="LaTeX Wikibook Contribution" href="http://en.wikibooks.org/wiki/LaTeX/Tables#Alternate_Row_Colors_in_Tables">link</a> (currently accepted)</span></strong></p>
<p>Table Data are notoriously hard to read line by line.</p>
<p>In the very same way, grades in a Curriculum can be hard to read.</p>
<p>A nifty and quick workaround is to shade alternate rows with different colours, preferably one white and the other a little darker.</p>
<p>Confused?</p>
<p>Apple will give you a hand: just look at your iTunes — and I will make your job easier by posting a screenshot here (click on them!).</p>
<p style="padding-left: 120px;"><a class="shutterset_alternate" href="http://www.cv-templates.info/wp-content/uploads/2009/07/iTunes-1.png"><img class="alignnone size-thumbnail wp-image-323" title="iTunes. Notice the difference with Finder (next Screenshot)" src="http://www.cv-templates.info/wp-content/uploads/2009/07/iTunes-1-150x150.png" alt="iTunes. Notice the difference with Finder (next Screenshot)" width="150" height="150" /></a><a class="shutterset_alternate" href="http://www.cv-templates.info/wp-content/uploads/2009/07/apple-Finder.png"><img class="alignnone size-thumbnail wp-image-322" title="Finder. Different shading from iTunes" src="http://www.cv-templates.info/wp-content/uploads/2009/07/apple-Finder-150x150.png" alt="Finder. Different shading from iTunes" width="150" height="150" /></a></p>
<p>So usual question: how do we go from a normal table to a table with shaded rows, in LaTeX &#038; Friends?</p>
<p>In images, how do we make the transition from the first to the second screenshot?</p>
<p><a class="shutterset_alternate_2" href="http://www.cv-templates.info/wp-content/uploads/2009/07/tableNormal.png"><img class="alignnone size-thumbnail wp-image-331" title="Table Without Shading" src="http://www.cv-templates.info/wp-content/uploads/2009/07/tableNormal-150x150.png" alt="Table Without Shading" width="150" height="150" /></a><a class="shutterset_alternate_2" href="http://www.cv-templates.info/wp-content/uploads/2009/07/tableShadedFinder.png"><img class="alignnone size-thumbnail wp-image-330" title="Table Shaded with Finder Combination" src="http://www.cv-templates.info/wp-content/uploads/2009/07/tableShadedFinder-150x150.png" alt="Table Shaded with Finder Combination" width="150" height="150" /></a><a class="shutterset_alternate_2" href="http://www.cv-templates.info/wp-content/uploads/2009/07/tableShadediTunes.png"><img class="alignnone size-thumbnail wp-image-329" title="Table Shaded with iTunes Color Combination" src="http://www.cv-templates.info/wp-content/uploads/2009/07/tableShadediTunes-150x150.png" alt="Table Shaded with iTunes Color Combination" width="150" height="150" /></a></p>
<p>The answer is simple and it is all a matter of looking into the <strong>xcolor </strong>package documentation, which provides you with the command which we will be using in order to get the shaded rows.</p>
<p>The package documentation is available, as always, on <a title="xcolor Package Documentation Page" href="http://www.ctan.org/tex-archive/macros/latex/contrib/xcolor/" target="_blank">CTAN</a>.</p>
<p><span id="more-321"></span>Let us start with the preamble of the document:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">article</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">table</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">xcolor</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tableShade</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">F1F5FA</span><span style="color: #E02020; ">}</span>   <span style="color: #2C922C; font-style: italic;">%iTunes</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tableShade2</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">ECF3FE</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%Finder</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>things to note down are:</p>
<ol>
<li> we use the <strong>xcolor </strong>package;</li>
<li>we invoke the <em>[table] </em>option, otherwise we won&#8217;t be able to use the table color features;</li>
<li>we define a new color which will be used to shade odd (or even) rows.</li>
</ol>
<p>For our examples we use the following two colours, grabbed from iTunes and Finder on Mac OS X.</p>
<p><a href="http://www.colorcombos.com/combotester.html?color0=F1F5FA&#038;color1=0191C8"><img src="http://www.colorcombos.com/combo_image.php?color0=F1F5FA&#038;color1=0191C8&#038;p_b=4&#038;p_w=4&#038;p_s=60" border="0" alt="" /></a></p>
<p>All you need to get your table now, besides the data, is <strong>ONE </strong>command (!).</p>
<p>I repeat: a single command will produce a table with odd rows and even rows of alternate colours.</p>
<p>The command in question is <strong><em>\rowcolors{1}{tableShade}{white}</em><span style="font-weight: normal;">, to be inserted right before your table.</span></strong></p>
<p><strong>The syntax is pretty easy: \rowcolors<span style="font-weight: normal;">{&lt;<em>starting row&gt;</em>}{&lt;<em>odd rows colour</em>&gt;}{&lt;<em>even rows colour</em>&gt;}</span></strong></p>
<p><strong>and we are done!</strong></p>
<p><span style="font-weight: normal;">The code follows</span></p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">center</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\rowcolors</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">tableShade</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">%SOURCE http://en.wikipedia.org/wiki/List_of_craters_on_the_Moon,_T-Z#X</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #E02020; "><span style="color: #2020C0; font-weight: normal;">l|c|l</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\scshape</span> Crater		<span style="color: #E02020; ">&amp;</span>	<span style="color: #800000; font-weight: normal;">\scshape</span> Diameter	 <span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\scshape</span> Eponym<span style="color: #E02020; ">\\</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">hline</span></span>
Zach		<span style="color: #E02020; ">&amp;</span>	70 km	<span style="color: #E02020; ">&amp;</span>	Franz Xaver von Zach (1754-1832)<span style="color: #E02020; ">\\</span>
Zagut		<span style="color: #E02020; ">&amp;</span>	84 km	<span style="color: #E02020; ">&amp;</span>	Abraham Ben Samuel Zagut (circa 1450-circa 1522)<span style="color: #E02020; ">\\</span>
Zähringer	<span style="color: #E02020; ">&amp;</span>	11 km	<span style="color: #E02020; ">&amp;</span>	Joseph Zahringer (1929-1970)<span style="color: #E02020; ">\\</span>
Zanstra		<span style="color: #E02020; ">&amp;</span>	42 km	<span style="color: #E02020; ">&amp;</span>	Herman Zanstra (1894-1972)<span style="color: #E02020; ">\\</span>
Zasyadko	<span style="color: #E02020; ">&amp;</span>	11 km	<span style="color: #E02020; ">&amp;</span>	Alexander Dmitrievich Zasyadko (1779-1837)<span style="color: #E02020; ">\\</span>
Zeeman		<span style="color: #E02020; ">&amp;</span>	190 km	<span style="color: #E02020; ">&amp;</span>	Pieter Zeeman (1865-1943)<span style="color: #E02020; ">\\</span>
Zelinskiy	<span style="color: #E02020; ">&amp;</span>	53 km	<span style="color: #E02020; ">&amp;</span>	Nikolay Dimitrievich Zelinskiy (1860-1953)<span style="color: #E02020; ">\\</span>
Zeno		<span style="color: #E02020; ">&amp;</span>	65 km	<span style="color: #E02020; ">&amp;</span>	Zeno of Citium (circa 335-263 B.C.)<span style="color: #E02020; ">\\</span>
Zernike		<span style="color: #E02020; ">&amp;</span>	48 km	<span style="color: #E02020; ">&amp;</span>	Frits Zernike (1888-1966)<span style="color: #E02020; ">\\</span>
Zhiritskiy	<span style="color: #E02020; ">&amp;</span>	35 km	<span style="color: #E02020; ">&amp;</span>	Georgiy Sergeevich Zhiritskiy (1893-1966)<span style="color: #E02020; ">\\</span>
Zhukovskiy	<span style="color: #E02020; ">&amp;</span>	81 km	<span style="color: #E02020; ">&amp;</span>	Nikolay Egorovich Zhukovskiy (1847-1921)<span style="color: #E02020; ">\\</span>
Zinner		<span style="color: #E02020; ">&amp;</span>	4 km	<span style="color: #E02020; ">&amp;</span>	Ernst Zinner (1886-1970)<span style="color: #E02020; ">\\</span>
Zöllner		<span style="color: #E02020; ">&amp;</span>	47 km	<span style="color: #E02020; ">&amp;</span>	Johann Karl Friedrich Zöllner (1834-1882)<span style="color: #E02020; ">\\</span>
Zsigmondy	<span style="color: #E02020; ">&amp;</span>	65 km	<span style="color: #E02020; ">&amp;</span>	Richard Adolf Zsigmondy (1865-1929)<span style="color: #E02020; ">\\</span>
Zucchius	<span style="color: #E02020; ">&amp;</span>	64 km	<span style="color: #E02020; ">&amp;</span>	Niccolo Zucchi (1586-1670)<span style="color: #E02020; ">\\</span>
Zupus		<span style="color: #E02020; ">&amp;</span>	38 km	<span style="color: #E02020; ">&amp;</span>	Giovanni Battista Zupi (circa 1590-1650)<span style="color: #E02020; ">\\</span>
Zwicky		<span style="color: #E02020; ">&amp;</span>	150 km	<span style="color: #E02020; ">&amp;</span>	Fritz Zwicky (1898-1974)
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">center</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>which produces</p>
<p style="padding-left: 150px;"><a href="http://img.skitch.com/20090711-xnash3i8um4uw2ppr3pa8pg6bw.png"><img class="alignnone" title="Table with Alternate Colour Rows " src="http://img.skitch.com/20090711-xnash3i8um4uw2ppr3pa8pg6bw.png" alt="" width="283" height="167" /></a></p>
<p>While this is a useful example, you should consider leaving table headings and the first row white, and using the shade colour from the third row onwards (by specifying 3 instead of 1 in the starting row argument.</p>
<p>Moreover, if you for any reason want to eliminate shading from a particular row, this can be easily done via the <strong>\hiderowcolors</strong> command, and reactivate shading via the <strong>\showrowcolors</strong> command.</p>
<p style="padding-left: 120px; "><a href="http://img.skitch.com/20090711-1wq4b2kbd8hdhe2phmmme6pdwa.png"><img class="alignnone" title="Table with Alternate Colour Rows. Notice that the last row is not shaded, although it should have been." src="http://img.skitch.com/20090711-1wq4b2kbd8hdhe2phmmme6pdwa.png" alt="" width="300" height="95" /></a></p>
<p style="padding-left: 120px; ">
<p>this second table with custom end line is typeset by the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">center</span></span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\rowcolors</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">3</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">tableShade</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">white</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">lcc</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\multicolumn</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">1</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">c</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>Exam</span><span style="color: #E02020; ">}}</span>
		<span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Grade</span><span style="color: #E02020; ">}</span>	<span style="color: #E02020; ">&amp;</span>	<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Grade Points</span><span style="color: #E02020; ">}\\</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">hline</span></span>
Corporate Financial Strategy	<span style="color: #E02020; ">&amp;</span>	A	<span style="color: #E02020; ">&amp;</span>	4<span style="color: #E02020; ">\\</span>
Derivatives			<span style="color: #E02020; ">&amp;</span>	A	<span style="color: #E02020; ">&amp;</span>	4<span style="color: #E02020; ">\\</span>
Money, Credit, and Banking	<span style="color: #E02020; ">&amp;</span>	A	<span style="color: #E02020; ">&amp;</span>	4<span style="color: #E02020; ">\\</span>
Business Strategy 		<span style="color: #E02020; ">&amp;</span> 	A-	<span style="color: #E02020; ">&amp;</span>	3.5<span style="color: #E02020; ">\\</span>
				<span style="color: #E02020; ">&amp;</span> 		<span style="color: #E02020; ">&amp;</span>	 <span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\hiderowcolors</span>			<span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Gpa</span><span style="color: #E02020; ">}</span>	<span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textbf</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">3.875</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">center</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<div class="wp-caption alignleft" style="width: 138px"><a href="http://www.cv-templates.info/wp-content/uploads/2009/07/table.tex"><img title="LaTeX Source" src="http://aleplasmati.comuv.com/img/doc.png" alt="LaTeX Source" width="128" height="128" /></a><p class="wp-caption-text">XeLaTeX Source</p></div>
<div class="wp-caption alignleft" style="width: 138px"><a href="http://www.cv-templates.info/wp-content/uploads/2009/07/table.pdf"><img title="PDF Output" src="http://aleplasmati.comuv.com/img/pdf.png" alt="PDF Output" width="128" height="128" /></a><p class="wp-caption-text">PDF Output</p></div>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/09/letterspacing-in-xelatex-with-fontspec/' rel='bookmark' title='Permanent Link: CV Tip: Letterspacing your name with XeLaTeX + Fontspec'>CV Tip: Letterspacing your name with XeLaTeX + Fontspec</a></li>
<li><a href='http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/' rel='bookmark' title='Permanent Link: Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF'>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/07/alternate-row-shading-latex/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wrapping Text in Rounded Corners ColorBox in LaTeX with TikZ and PGF</title>
		<link>http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/</link>
		<comments>http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:40:20 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Contact Box]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[PGF]]></category>
		<category><![CDATA[Rounded Corners]]></category>
		<category><![CDATA[TikZ]]></category>

		<guid isPermaLink="false">http://aleplasmati.comuv.com/?p=284</guid>
		<description><![CDATA[How the heck do we make a text box with a color background have its corners rounded? I wondered.
In images, how do we make the transition from the first screenshot below to the second, and maybe even to the third one?

Turns out the answer given from google&#8217;s results is more complicated than life (and LaTeX) [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How the heck do we make a text box with a color background have its corners rounded? I wondered.</p>
<p>In images, how do we make the transition from the first screenshot below to the second, and maybe even to the third one?</p>
<p style="padding-left: 90px;"><a href="http://www.cv-templates.info/wp-content/uploads/2009/06/box_rect.png"><img class="aligncenter size-medium wp-image-292" title="Sharp Corners Box" src="http://aleplasmati.comuv.com/wp-content/uploads/2009/06/box_rect-300x60.png" alt="Sharp Corners Box" width="300" height="60" /></a><a href="http://www.cv-templates.info/wp-content/uploads/2009/06/box_rounded_1.png"><img class="aligncenter size-medium wp-image-293" title="Box Rounded I - 5 pt" src="http://aleplasmati.comuv.com/wp-content/uploads/2009/06/box_rounded_1-300x60.png" alt="Box Rounded I - 5 pt" width="300" height="60" /></a><a style="text-decoration: none;" href="http://www.cv-templates.info/wp-content/uploads/2009/06/box_rounded_2.png"><img class="aligncenter size-medium wp-image-294" title="Box Rounded II - 15pt" src="http://aleplasmati.comuv.com/wp-content/uploads/2009/06/box_rounded_2-300x61.png" alt="Box Rounded II - 15pt" width="300" height="61" /></a></p>
<p>Turns out the <a href="http://lmgtfy.com/?q=rounded+corners+latex" target="_blank">answer given from google&#8217;s results</a> is more complicated than life (and LaTeX) requires, because, at least given my poor knowledge of LaTeX, <strong>\ovalbox </strong>and <strong>\oval </strong>commands don&#8217;t necessarily play nice with colours are overall less flexible than the <strong>TikZ</strong> package.</p>
<p>Now a word of warning: using <strong>TikZ </strong>for this purpose is a bit like using an atomic bomb to kill a bug, nonetheless using it may entice yourself (and me) to learn it more extensively and exploit it for its other much more powerful applications.</p>
<p><span id="more-284"></span></p>
<p>So let us get started with some quick code: it&#8217;ll only take a few lines to get our result.<br />
Here&#8217;s the preamble:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">article</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tikz</span><span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">%symbols - the ones you see on the left of the email and of the phone</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">bbding</span><span style="color: #E02020; ">}</span>
<span style="color: #2C922C; font-style: italic;">%\usepackage{hyperref}</span>
<span style="color: #800000; font-weight: normal;">\definecolor</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">shade</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">HTML</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">D4D7FE</span><span style="color: #E02020; ">}</span>	<span style="color: #2C922C; font-style: italic;">%light blue shade</span></pre></div></div>

<p>I am currently having an issue compiling with XeLaTeX and getting hyperlinks to work, so that is why the hyperlink package is commented out, and the email will not be enclosed in the \href command.</p>
<p>I am looking into the issue though, and will update the post when a solution is found: unfortunately I am no expert of LaTeX and even less of PGF and TikZ.</p>
<p>After the preamble, we begin the document and start the picture which is encapsulated by the tikzpicture environment:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%\begin{tikzpicture}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%	\node [fill=red,rounded corners=5pt]</span>
<span style="color: #2C922C; font-style: italic;">%	{\href{foo}{	bar bar bar}};</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%\end{tikzpicture}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tikzpicture</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\node</span> <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">fill=shade,rounded corners=5pt</span><span style="color: #E02020; ">]</span>
<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #E02020; "><span style="color: #2020C0; font-weight: normal;">c|l</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">&amp;</span> Born in Wonderland, Italy July 3, 1912 <span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raisebox</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">-3pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Phone</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">&amp;</span> +39 123 456789<span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raisebox</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">-3pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Envelope</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">&amp;</span> einstein.einstein@gmail.com
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">}</span>;
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tikzpicture</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>This will produce the second screenshot.</p>
<p>The code is mostly self-explanatory, just remember that you need to define the shade color and the symbols are available if you load the bbding package.</p>
<p>The commented out part at the beginning will show you the problem of the hyperlinks I mentioned before.</p>
<p>Anyone able to hack it so it works with XeLaTeX? Let me know.</p>
<p>For the moment you can enjoy the <a href="http://aleplasmati.comuv.com/?p=239">two-column CV</a> with a rounded corners box, if you like it.</p>
<div class="wp-caption alignleft" style="width: 138px"><a href="http://aleplasmati.comuv.com/wp-content/uploads/2009/07/rounded.tex"><img title="XeLaTeX Source" src="http://aleplasmati.comuv.com/img/doc.png" alt="XeLaTeX Source" width="128" height="128" /></a><p class="wp-caption-text">XeLaTeX Source</p></div>
<div class="wp-caption alignleft" style="width: 138px"><a href="http://www.cv-templates.info/wp-content/uploads/2009/07/rounded.pdf"><img title="PDF Output" src="http://aleplasmati.comuv.com/img/pdf.png" alt="PDF Output" width="128" height="128" /></a><p class="wp-caption-text">PDF Output</p></div>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2009/07/alternate-row-shading-latex/' rel='bookmark' title='Permanent Link: Alternate Row Shading in LaTeX Table'>Alternate Row Shading in LaTeX Table</a></li>
<li><a href='http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source'>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</a></li>
<li><a href='http://www.cv-templates.info/2009/10/classicthesis-currvita-latex-cv-template/' rel='bookmark' title='Permanent Link: CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code'>CurrVita &#038; ClassicThesis LaTeX CV Template – 100 lines of code</a></li>
<li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/07/wrapping-text-in-rounded-corners-colorbox-in-latex-with-tikz-and-pgf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced two-column LaTeX CV Template &#124; Part 2 + TeX Source</title>
		<link>http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/</link>
		<comments>http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 08:10:13 +0000</pubDate>
		<dc:creator>Alessandro</dc:creator>
				<category><![CDATA[CV]]></category>
		<category><![CDATA[two-column]]></category>
		<category><![CDATA[XeTeX]]></category>

		<guid isPermaLink="false">http://aleplasmati.comuv.com/?p=239</guid>
		<description><![CDATA[In this part we will cover the following:
1. Splitting the document with vertically aligned minipages;
2. Designing the Work Experience and Education Section;
The first part of this tutorial is to be found at this post.
Just for a quick recap, this is what we want to achieve as our final result


After the title, whose code we have [...]


Related posts:<ol><li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In this part we will cover the following:</p>
<p>1. Splitting the document with <em>vertically aligned</em> minipages;<br />
2. Designing the Work Experience and Education Section;</p>
<p>The first part of this tutorial is to be found at <a title="Advanced two-column LaTeX CV Template | Part 1" href="http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/" target="_blank">this post</a>.</p>
<p>Just for a quick recap, this is what we want to achieve as our final result</p>
<p style="padding-left: 90px;"><a href="http://www.cv-templates.info/wp-content/uploads/2009/05/two-cols-4.png"><img class="aligncenter size-medium wp-image-193" title="two-cols-4" src="http://aleplasmati.comuv.com/wp-content/uploads/2009/05/two-cols-4-282x300.png" alt="two-cols-4" width="282" height="300" /></a></p>
<p><span id="more-239"></span></p>
<p>After the title, whose code we have seen in the <a title="two column cv" href="http://aleplasmati.comuv.com/?p=186" target="_blank">previous post</a>, we are going to setup the document so that the it is nicely divided into two columns.</p>
<p>In order to achieve that with the maximum flexibility, we will make us of <strong>minipages</strong>, that is, the <strong>minipage </strong>environment.</p>
<p>You can find more information on this environment at the following <a title="Minipage" href="http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/teTeX/latex/latex2e-html/ltx-267.html" class="broken_link"  target="_blank">link</a>.</p>
<p><span style="text-decoration: underline;"><span style="font-family: mceinline;">I apologize in advance for the indenting, but the code highlighter is kinda funky.</span></span></p>
<h2>The left-hand side column</h2>
<p>We start the left hand side column with the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.5<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%START of left-hand side minipage</span></pre></div></div>

<p>The previous code means creating a minipage, i.e. a page within the page, whose vertical alignment is <strong>t = top </strong>(where other possible choices in the standard non-generalized minipage environment can be <strong>b = bottom </strong>and <strong>c = center</strong>).</p>
<p>Moreover, the page <strong>width </strong>equals 0.5 times the <strong>textwidth</strong>, which is not the same as the <strong>paperwidth</strong>!</p>
<p>Now a little trick which will make things easier for the alignment of the two minipages:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>now the reason for this is not 100% clear to me, so I will redirect you to page 25 of the [PDF] <a title="EPS LaTeX" href="http://www.ctan.org/get/info/epslatex/english/epslatex.pdf" target="_blank">epslatex package documentation</a>.</p>
<p>And now the easy stuff: Section Headers, Dates of Employment, Company, Position, a Description of your daily activities&#8230;if you&#8217;re not sure about how to structure the document, you can refer to <a title="Top CV Tips " href="http://aleplasmati.comuv.com/?p=153" target="_blank">this post</a>.</p>
<p>The code for this is pretty straightforward:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">% NEW SECTION</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\section</span><span style="color: #E02020; ">{</span><span style="color: #00008B; font-weight: bold;">Work Experience</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%WORK EXPERIENCE -1-</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedleft</span></span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\emph</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Current</span><span style="color: #E02020; ">}</span>, from <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Jan 2009</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">par</span></span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span><span style="color: #800000; font-weight: normal;">\large</span> Trader at <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Enoi</span><span style="color: #E02020; ">}</span> s.p.a., Milan<span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\emph</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Physical Natural Gas Trading</span><span style="color: #E02020; ">}\\[</span><span style="color: #C08020; font-weight: normal;">5pt</span><span style="color: #E02020; ">]</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\normalsize</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Provided analysis of spreads, in particular time and location spreads,
with emphasis on trading opportunities on the curve,
also taking into account the availability of storage facilities.
Became familiar with logistic implications of physical
gas trading and developed knowledge of
continental virtual hubs for gas exchange.</span><span style="color: #E02020; ">}\\[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]</span></pre></div></div>

<p>After listing here a few of your work-related experience, you should consider putting here some more interesting stuff which requires a little more than a single line, for example your participation to conferences, the awards and scholarships you received, or international certificates and qualifications you might have.</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">% NEW SECTION</span>
<span style="color: #800000; font-weight: normal;">\section</span><span style="color: #E02020; ">{</span><span style="color: #00008B; font-weight: bold;">International Certificates and Awards</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedleft</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>Sep 2006</span><span style="color: #E02020; ">}}</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">par</span></span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span>
Scholarship for graduate students with an outstanding curriculum (<span style="color: #800000; font-weight: normal;">\euro</span><span style="color: #E02020; ">\</span>  30,000)<span style="color: #800000; font-weight: normal;">\normalsize</span><span style="color: #E02020; ">\\[</span><span style="color: #C08020; font-weight: normal;">3pt</span><span style="color: #E02020; ">]</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedleft</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span>Jun 2006</span><span style="color: #E02020; ">}}</span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">par</span></span><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raggedright</span></span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Gmat</span><span style="color: #E02020; ">}</span><span style="color: #800000; font-weight: normal;">\textregistered</span>: 730 (<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #E02020; "><span style="color: #2020C0; font-weight: normal;">q:50;v:39</span></span><span style="color: #E02020; ">}</span>) 96<span style="color: #800000; font-weight: normal;">\textsuperscript</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">th</span><span style="color: #E02020; ">}</span> percentile<span style="color: #E02020; ">\\</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">awa</span><span style="color: #E02020; ">}</span>: 6.0/6.0 (89<span style="color: #800000; font-weight: normal;">\textsuperscript</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">th</span><span style="color: #E02020; ">}</span> percentile)<span style="color: #E02020; ">\\[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%% NEW SECTION</span>
<span style="color: #800000; font-weight: normal;">\section</span><span style="color: #E02020; ">{</span><span style="color: #00008B; font-weight: bold;"><span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Computer Skills</span></span><span style="color: #E02020; ">}}</span>
 <span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">rl</span><span style="color: #E02020; ">}</span>
Basic Knowledge: <span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">php</span><span style="color: #E02020; ">}</span>, my<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">sql</span><span style="color: #E02020; ">}</span>, <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">html</span><span style="color: #E02020; ">}</span>, Access<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Linux</span><span style="color: #E02020; ">}</span>, ubuntu, <span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\LaTeX</span></span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #E02020; ">\\</span>
Intermediate Knowledge: <span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Vba</span><span style="color: #E02020; ">}</span>, Excel, Word, PowerPoint<span style="color: #E02020; ">\\</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span></pre></div></div>

<p>and we are done with the left-hand side column</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%END of left-hand side minipage</span></pre></div></div>

<h2>The right-hand side column</h2>
<p>Just like the first minipage, the second is obtained with the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\hfill</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">minipage</span></span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">t</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">0.44<span style="color: #800000; font-weight: normal;">\textwidth</span></span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%START of right-hand side minipage</span>
<span style="color: #800000; font-weight: normal;">\vspace</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">0pt</span><span style="color: #E02020; ">}</span> <span style="color: #2C922C; font-style: italic;">%trick for alignment</span></pre></div></div>

<p>notice the <strong>\hfill</strong> command which puts the minipages as far as possible in the text width. This wouldn&#8217;t make sense if the minipages where 50% of the width each, but please notice as well that the right hand side column is slightly smaller, which makes the document look a little more stylish.</p>
<p>It also helps giving more focus on the work experience part, that is, the left hand side minipage.</p>
<p>As for the right hand side section, remember to keep it simple and short, otherwise the content will flow out of the margin, resulting in the common warning of “<em>overfull box”</em>.</p>
<h3>The “<em>contact” </em>box</h3>
<p>The contact box is the box at the top right of the minipage, with the nicely colored background.</p>
<div class="wp-caption alignnone" style="width: 444px"><img title="Contact Form" src="http://img.skitch.com/20090607-g46fxrygm1s2ai73rjb512y4nx.png" alt="Contact Form" width="434" height="96" /><p class="wp-caption-text">Contact Form</p></div><br />
How do we obtain this? The package <strong>xcolor </strong>and <strong>color </strong>will give us a hand&#8230;<br />
Also, the symbols need a little bit of tweaking as well.<br />
This is the code to produce the box:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\colorbox</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">shade</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\textcolor</span><span style="color: #E02020; ">{</span>text1</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #E02020; "><span style="color: #2020C0; font-weight: normal;">c|p{7cm</span></span><span style="color: #E02020; ">}}</span>
<span style="color: #E02020; ">&amp;</span> Born in Wonderland, Italy July 3, 1912 <span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raisebox</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">-3pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Phone</span></span><span style="color: #E02020; ">}</span>  <span style="color: #E02020; ">&amp;</span> +39 123 456789<span style="color: #E02020; ">\\</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">raisebox</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">-3pt</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\Envelope</span></span><span style="color: #E02020; ">}</span> <span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\href</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">mailto:albert.einstein@gmail.com</span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">einstein.einstein@gmail.com</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">}\\[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]</span></pre></div></div>

<p>The <em><strong>\Phone</strong></em> and <strong><em>\Envelope</em></strong> symbols are provided  by the <strong>bbding </strong>package, which we loaded at the beginning of the document.</p>
<p>A little tweaking is required to the vertical alignment of the symbols via the  <strong>\raisebox </strong>command, although I am not sure as to the reason why this happens.<br />
The next section is very easy to obtain, so I won&#8217;t go into the details of its typesetting.<br />
This is the code:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\section</span><span style="color: #E02020; ">{</span><span style="color: #00008B; font-weight: bold;">Education</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">rl</span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%EDUCATION -1-</span>
<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">July</span><span style="color: #E02020; ">}</span> 2008 <span style="color: #E02020; ">&amp;</span> Master of Science in <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Finance</span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textbf</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Bocconi University</span><span style="color: #E02020; ">}</span>, Milan<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span> 110/110 <span style="color: #800000; font-weight: normal;">\small</span><span style="color: #800000; font-weight: normal;">\emph</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">summa cum laude</span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span> Major: Quantitative Finance<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\normalsize</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Gpa</span><span style="color: #E02020; ">}</span>: 28.61/30<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;\\</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%EDUCATION -2-</span>
<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">July</span><span style="color: #E02020; ">}</span> 2006 <span style="color: #E02020; ">&amp;</span> Undergraduate Degree in<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Law</span><span style="color: #E02020; ">}</span> and <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Business Administration</span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textbf</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Bocconi University</span><span style="color: #E02020; ">}</span>, Milan<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span>110/110 <span style="color: #800000; font-weight: normal;">\small</span><span style="color: #800000; font-weight: normal;">\emph</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">summa cum laude</span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span><span style="color: #800000; font-weight: normal;">\normalsize</span> <span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Gpa</span><span style="color: #E02020; ">}</span>: 29.85/30<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;\\</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%EDUCATION -3-</span>
<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Fall</span><span style="color: #E02020; ">}</span> 2005<span style="color: #E02020; ">&amp;</span> Exchange Semester at <span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textbf</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">University of Southern California</span><span style="color: #E02020; ">}</span> <span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span>Los Angeles<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;\\</span>
&nbsp;
<span style="color: #2C922C; font-style: italic;">%EDUCATION -4-</span>
<span style="color: #800000; font-weight: normal;">\textsc</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">July</span><span style="color: #E02020; ">}</span> 2003<span style="color: #E02020; ">&amp;</span> <span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">textbf</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Liceo Classico ``E. Duni''</span><span style="color: #E02020; ">}\\</span>
<span style="color: #E02020; ">&amp;</span> Matera<span style="color: #E02020; ">\\</span>
<span style="color: #E02020; ">&amp;</span> Final Grade: 100/100<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tabular</span></span><span style="color: #E02020; ">}\\[</span><span style="color: #C08020; font-weight: normal;">10pt</span><span style="color: #E02020; ">]</span></pre></div></div>

<p>and this is the result:</p>
<p><img src="http://img.skitch.com/20090607-x4kihemrcn9q81p9y1qc3cb78d.png" alt="twoColumnCV.pdf" /></p>
<p>That&#8217;s all for this document.</p>
<p>If you so wish, you can view the text source of the document online at <a href="http://aleplasmati.comuv.com/doc/twoColumnCV">this link</a>.</p>
<p>Alternatively, feel free to download the source and the pdf of the finished document below</p>
<p><div class="wp-caption alignleft" style="width: 138px"><a href="http://aleplasmati.comuv.com/doc/two-col-cv.tex"><img title="XeLaTeX Source" src="http://aleplasmati.comuv.com/img/doc.png" alt="XeLaTeX Source" width="128" height="128" /></a><p class="wp-caption-text">XeLaTeX Source</p></div>
<div class="wp-caption alignleft" style="width: 138px"><a href="http://aleplasmati.comuv.com/doc/two-col-cv.pdf"><img title="PDF Output" src="http://aleplasmati.comuv.com/img/pdf.png" alt="PDF Output" width="128" height="128" /></a><p class="wp-caption-text">PDF Output</p></div>


<p>Related posts:<ol><li><a href='http://www.cv-templates.info/2009/05/advanced-two-column-latex-cv-template/' rel='bookmark' title='Permanent Link: Advanced two-column LaTeX CV Template &#124; Part 1'>Advanced two-column LaTeX CV Template &#124; Part 1</a></li>
<li><a href='http://www.cv-templates.info/2009/03/professional-cv-latex/' rel='bookmark' title='Permanent Link: Writing Your Professional CV with LaTeX'>Writing Your Professional CV with LaTeX</a></li>
<li><a href='http://www.cv-templates.info/2009/08/modern-latex-cv-template-advanced-graphics/' rel='bookmark' title='Permanent Link: Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography'>Non-prehistoric LaTeX Resume Template — Advanced Graphics and Typography</a></li>
<li><a href='http://www.cv-templates.info/2010/01/cv-tip-align-columns-different-latex-tables/' rel='bookmark' title='Permanent Link: CV Tip: Align Columns of Different LaTeX Tables with \settowidth'>CV Tip: Align Columns of Different LaTeX Tables with \settowidth</a></li>
<li><a href='http://www.cv-templates.info/2009/09/linux-latex-cv-template/' rel='bookmark' title='Permanent Link: The “Linux” LaTeX CV Template'>The “Linux” LaTeX CV Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cv-templates.info/2009/06/advanced-two-column-latex-cv-template-part-2-tex-source/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Code -->
