<?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>Oak-Tree.us</title>
	<atom:link href="http://www.oak-tree.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oak-tree.us</link>
	<description>Research, Engineering, Software Development, Design</description>
	<lastBuildDate>Wed, 07 Mar 2012 23:57:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Importing Word Documents Into LyX (word2lyx 0.1)</title>
		<link>http://www.oak-tree.us/2012/03/07/word2lyx01-2/</link>
		<comments>http://www.oak-tree.us/2012/03/07/word2lyx01-2/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 23:50:21 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[LyX]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/?p=676</guid>
		<description><![CDATA[For many writers, the act of writing (or placing one word after another) is synonymous with the tool that they use to do it. There’s a reason why writers feel so strongly about their moleskin notebooks, fountain pens, and computer software. I’m no different than any other writer. I have my preferred tools, and I [...]]]></description>
			<content:encoded><![CDATA[<p>For many writers, the act of writing (or placing one word after another) is synonymous with the tool that they use to do it. There’s a reason why writers feel so strongly about their moleskin notebooks, fountain pens, and computer software. I’m no different than any other writer. I have my <a href="http://blog.oak-tree.us/index.php/2009/03/04/perfect-tool">preferred tools</a>, and I love them dearly. They help to focus on my ideas and craft prose that I can be proud of.</p>
<p>When writing on a computer, the tool of choice for many writers (dare I say most?) is Microsoft Word. It’s everywhere and everyone has used it. It comes preinstalled on most computers and is a de-facto standard for exchanging written material with others.</p>
<p>Unfortunately, Word is not part of <em>my</em> preferred toolset. I prefer to write using LyX and an add-on I’ve written for it called LyX-Outline. But while I love my writing program, it makes it difficult to <a href="http://blog.oak-tree.us/index.php/2012/01/24/subversion31">collaborate</a> with other writers who use Word, as LyX doesn’t have a straightforward way to directly import Word files.</p>
<p>This isn’t a new problem and I’ve written about it before. I’ve even proposed a solutions. But while that solution was a good fit for me, it isn’t something that I would recommend to others.</p>
<p>For starters, it required a great deal of software to be installed. You needed a program to convert Microsoft Word documents to Open Office documents. You then had to use a second utility to convert it to HTML or LaTeX. After <em>that, </em>you used to a third utility to clean it up and import the LaTeX code into LyX. Three distinct steps, with a lot of places where things could go wrong.</p>
<p>Over the past few months, I’ve found that I need a better way, a tool that can <em>directly</em> import a Word document and cleanly translate its content. So, I decided to create one.</p>
<p align="center"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="MSDoc2LyX" src="http://www.oak-tree.us/wp-content/uploads/2012/03/MSDoc2LyX.png" alt="MSDoc2LyX" width="500" height="245" border="0" /></p>
<p><span id="more-676"></span></p>
<h2>Project Goals</h2>
<p>I wanted my tool to meet several important criteria:</p>
<ul>
<li>it should be easy to use and maintain</li>
<li>it should maintain document structure including headers, styles and other elements</li>
<li>it should successfully translate Word to LyX, meaning that I don’t need to spend time repairing double quotes or fixing em-dashes</li>
<li>it should support tables, images, and footnotes</li>
<li>it should be extensible, allowing me to create custom templates that support a wide variety of Word documents <em>and </em>LaTeX document classes</li>
</ul>
<p>After several months of work, I’m now ready to release an alpha-quality version of that tool. I’m calling it word2lyx.</p>
<h2>word2lyX</h2>
<p>word2lyx is a python script to convert Microsoft Word documents to a format that can be imported into LyX. word2lyx only works on documents saved in the docx format, created using Word 2007 or 2010. Older in doc will have to be converted before word2lyx will be able to read them.</p>
<p>But here’s the important thing, it works <em>directly</em> on the Word file. It doesn’t rely on external parsers for translation. For that reason, you can specify exactly how you would like for your documents to be converted.</p>
<p>Currently, word2lyx supports:</p>
<ul>
<li>Translating Word paragraph and character styles to LyX paragraph and character styles. In cases where the character styles aren&#8217;t defined, it will write entries for them  in the local layout. These entries will include basic LaTeX font commands, created from the font properties.</li>
<li>Importing Word tables, including those with merged rows or columns. it will also do its best with table borders.</li>
<li>Enumerated and itemized lists</li>
<li>Importing images from the Word document. Word image objects, such as Excel charts and graphs are skipped.</li>
<li>The use of custom templates, which allow you to finely describe how you would like for your documents to be translated. There are two templates included with the script and supporting libraries: article.w2l and book.w2l. These can be found in the lyx/templates folder. (For more about templates, please see below.)</li>
</ul>
<p>For best conversion, please make use of paragraph and character styles. These tags are  converted directly. Per word formatting is removed. This makes it easier to create  clean markup for LyX.</p>
<h3>Usage</h3>
<p>To use the script, use a variation of the command below:</p>
<blockquote><p>python word2lyx.py &#8220;InputFile.docx&#8221; &#8220;OutputFile.lyx&#8221;</p></blockquote>
<p>You can also specify a template you would like for it to use:</p>
<blockquote><p>python word2lyx.py &#8220;InputFile.docx&#8221; &#8220;OutputFile.lyx&#8221; -t book</p></blockquote>
<p>Right now, word2lyx includes two templates: one for articles and another for book chapters. These can serve as a base for importing your work into LyX. After you’ve got it loaded, you can then change the document class and begin to customize it from inside of LyX.</p>
<h3>Downloads and Installation</h3>
<p>If you think word2lyx sounds interesting, you can download it <a href="http://oak-tree.us/stuff/LyX/word2lyx-01.zip">here</a>. The download includes the script and two supporting libraries, one for reading docx files and one for writing LyX files. Additionally, it has a sample document which will show off most of the script features. To install word2lyx, put the files somewhere inside of your python path. (Or, when you run it, you can just type the full path to the script.)</p>
<h3>Automating Document Conversion</h3>
<p>Though using the script from the command line is pretty easy, a better way is to automate the conversion process. To do this, you need to create a new LyX document converter. Step-by-step instructions for adding additional file types and converters to LyX can be found in the <a href="http://blog.oak-tree.us/index.php/2010/05/14/msword-lyx-import">older post</a> I wrote on converting Word to LyX. Here, I’ll repeat the most important information.</p>
<p>First, go to the File Handling preferences (Tools &gt; Preferences &gt; File Handling &gt; File Types), and add a new type called Word 2010. Set the file ending to be “docx.”</p>
<p align="center"><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Word 2010 File Format Settings for LyX" src="http://www.oak-tree.us/wp-content/uploads/2012/03/image.png" alt="Word 2010 File Format Settings for LyX" width="507" height="277" border="0" /></p>
<p>Next, go to Converters dialog and create a new “MS Word 2010” to “LyX” converter.</p>
<p align="center"><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="word2lyx Converter Settings" src="http://www.oak-tree.us/wp-content/uploads/2012/03/image1.png" alt="word2lyx Converter Settings" width="518" height="170" border="0" /></p>
<p>From format = “MS Word 2010”, To Format = “LyX”. Converter setting:<br />
python “/path/to/word2lyx.py” $$I $$o –t article</p>
<p>Once you’ve added these settings, you can then import a document by going to File &gt; Import &gt; MS Word 2010.</p>
<p align="center"><img style="background-image: none; margin: 15px 0px 5px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="To import a Word document, go to File &gt; Import &gt; MS Word 2010..." src="http://www.oak-tree.us/wp-content/uploads/2012/03/image2.png" alt="To import a Word document, go to File &gt; Import &gt; MS Word 2010..." width="445" height="163" border="0" /></p>
<h2>word2lyx Templates</h2>
<p>word2lyx templates are files which tell word2lyx how a particular type of document should be translated. They include lists of paragraph, character, and table styles and their LyX  equivalents. Consider the example below, which is taken from the article template:</p>
<p>ImageDir = &#8216;Images&#8217;<br />
IgnoreStyles = FootnoteReference, EndnoteReference</p>
<p>[ParagraphStyles]<br />
Title = Title<br />
Author = Author<br />
Part = Part<br />
Heading1 = Chapter<br />
&#8230;</p>
<p>The template file contains settings and sections. The example above includes two settings, ImageDir and IgnoreStyles, and a group of paragraph styles. The paragraph styles specify how Word styles (on the left), such as Heading1, should be translated into LyX styles, such as Chapter, Section, etc.</p>
<p>When you create a new template (or extend one of the existing options), you add additional styles so that word2lyx knows how you want those particular pieces of information to be processed.</p>
<p>Each word2lyx template includes several sections. These include:</p>
<ul>
<li>ParagraphStyles: Matched pairs that convert Word styles (on the left) to LyX styles (on the right).</li>
<li>CharacterStyles: Matched pairs that convert Word charstyles (again, on the left) to LyX charstyles (again, specified on the right).</li>
<li>TableStyles: Similar to paragraph and character styles, but used in the conversion of tables.</li>
</ul>
<p>Sections are defined by a section tag, enclosed with square brackets. Values in the section are entered as matching pairs, offset by an equal sign.</p>
<p>If you choose, you can add an additional section called [DocOptions], where you specify information such as the document class, which types of fonts you would like the document to use, and so forth. (Please refer to the LyX documentation for avaialble options.)</p>
<p>If you create new templates, you should place them in the lyx/templates folder for word2lyx to be able to find them. They should have a &#8216;w2l&#8217; file extension.</p>
<h2>Conclusion</h2>
<p>I’m posting this utility in the hope that people will find it useful. Please, download it and take it for a test drive on your documents. Let me know about any successes or failures that you might have. (Especially the failures, those are important to fix.) If there’s a feature you would like to see included, please leave a comment here. I’m looking forward to hearing if word2lyx helps make collaboration a little easier for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2012/03/07/word2lyx01-2/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>An Elegant (Book) Template</title>
		<link>http://www.oak-tree.us/2011/12/28/elegant-book/</link>
		<comments>http://www.oak-tree.us/2011/12/28/elegant-book/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 01:54:02 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[Scribus]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/?p=642</guid>
		<description><![CDATA[One of the most difficult (and, subsequently, rewarding) publications to create is that of a photographic or fine arts book. Unlike a novel, or a book with a sane number of images, fine arts books have a lot of variables. These include a written narrative, photographs and the artwork, and the typography. Additional page decoration [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most difficult (and, subsequently, rewarding) publications to create is that of a photographic or fine arts book. Unlike a novel, or a book with a sane number of images, fine arts books have a lot of variables. These include a written narrative, photographs and the artwork, and the typography. Additional page decoration add to the complexity. Things can get really sticky because all of the different elements rebound against one another, but it’s essential that they all sing harmony to the melody.</p>
<p>The photography needs to match the timbre of the text, and the typography should cause the whole to resonate. When everything comes together well, a carefully crafted volume will draw readers like famished revelers to a feast. They’ll linger on the artwork, study the captions, dwell on the text, and ponder the message.</p>
<p>About a year ago, I played around with different layouts for such a publication. Initially, I wanted to experiment with a style known as “<a href="http://blog.oak-tree.us/index.php/2010/10/06/formalism">formalism</a>”, which combines some of the best aspects of <a href="http://blog.oak-tree.us/index.php/2010/08/21/modern-templates">Swiss/Modern school</a> with a slightly more relaxed attitude toward using decoration and embellishment. I had planned on developing a template for a side project.</p>
<p style="text-align: left;" align="center"><img style="background-image: none; margin: 10px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="An Elegant Book - Page Spread 1" src="http://www.oak-tree.us/wp-content/uploads/2011/12/Elegant-Book-page2-3.png" alt="An Elegant Book - Page Spread 1" width="600" height="285" border="0" /></p>
<p>Unfortunately, I never got much further than the layouts that you see here. Life and circumstances prevented me from completing the side project, and the typography didn’t have the right tone for other things I was working on. So, the template I was going to create languished.</p>
<p>Until last week, that is.</p>
<p style="text-align: left;" align="center"><img style="background-image: none; margin: 10px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="An Elegant Book - Page Spread 2" src="http://www.oak-tree.us/wp-content/uploads/2011/12/Elegant-Book-page4-5.png" alt="An Elegant Book - Page Spread 2" width="600" height="285" border="0" /></p>
<p>A little under six months ago, I got married. As part of the celebrations (which are still ongoing), I created a wedding album for my wife. Instead of working from scratch on the album, I chose to use the “Elegant Book” template. This means, that I’ve finally cleaned it up enough that I feel comfortable releasing it into the wild. I hope that someone is able to enjoy and make use of it! (Merry Christmas, belatedly.)</p>
<h2>Downloads</h2>
<p><a href="http://oak-tree.us/stuff/Scribus/Elegant-Book.zip">An Elegant Book</a>. This archive includes all of the files and fonts needed to install the template. A PDF example can be found <a href="http://oak-tree.us/stuff/Scribus/Elegant-Book.pdf">here</a>.</p>
<h2>Installation</h2>
<p>To install, download the <a href="http://oak-tree.us/stuff/Scribus/Elegant-Book.zip">.zip archive</a>. Then, extract it and open up the main document file, which ends in the .sla extension. Once the file finishes loading, select the “Save as Template” option from the “File” menu. Be sure to place a checkmark in the “Include Font” and “Include Color Profile” boxes. Select the directory where you would like to save the template (you will probably want to make a new one). Finally, click on the “Save” button.</p>
<p>When you save a template into the Scribus Templates folder, it will copy the template file, photos, and fonts to the directory you specify. It will also add the template to the template gallery.</p>
<h2>Template Use</h2>
<p>Once you have downloaded and installed the template, you can create a new document by clicking on the “New From Template” link in the “File” menu. When the template file first loads, it will provide you with several example pages that can be used in your layout. Simply delete the sample text/images and replace them with your own.</p>
<p>To adjust the appearance of a particular block of text, you can apply character and paragraph styles from the “Text” section of the “Properties” dialog. To modify the appearance of a whole page, you can make use of the “Apply Master Page” option under the “Page” menu.</p>
<h2>Examples</h2>
<p>Below, you can find a few of the page layouts I used in the wedding album. The template contains additional examples.</p>
<p style="text-align: left;"><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image.png" alt="image" width="600" height="238" border="0" /></p>
<p style="text-align: left;" align="center"><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image1.png" alt="image" width="600" height="238" border="0" /></p>
<p style="text-align: left;" align="center"><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image2.png" alt="image" width="600" height="238" border="0" /></p>
<p><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image3.png" alt="image" width="600" height="238" border="0" /></p>
<p><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image4.png" alt="image" width="600" height="238" border="0" /></p>
<p><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image5.png" alt="image" width="600" height="238" border="0" /></p>
<p><img style="background-image: none; margin: 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image6.png" alt="image" width="600" height="238" border="0" /></p>
<p><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2011/12/image7.png" alt="image" width="600" height="238" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/12/28/elegant-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the Subject of Notes</title>
		<link>http://www.oak-tree.us/2011/11/29/latex02-footnotes/</link>
		<comments>http://www.oak-tree.us/2011/11/29/latex02-footnotes/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 20:37:25 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[Footnotes]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[LyX]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/11/29/latex02-footnotes/</guid>
		<description><![CDATA[Sometimes it’s important to be extremely fussy about otherwise inconsequential things. There’s a reason why people fight over the proper pronunciation of már &#8216;habitation in Quenya (the m takes on an mb sound), pirates versus ninjas, and the proper placement of footnotes. It’s not that any of these particularly matter, but when pronounced, understood, or [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it’s important to be extremely fussy about otherwise inconsequential things. There’s a reason why people fight over the proper pronunciation of <em>már</em> &#8216;habitation in <a href="http://en.wikipedia.org/wiki/Quenya">Quenya</a> (the m takes on an <em>mb </em>sound), <a href="http://en.wikipedia.org/wiki/Pirates_versus_Ninjas">pirates versus ninjas</a>, and the proper placement of footnotes. It’s not that any of these particularly matter, but when pronounced, understood, or typeset correctly, such miscellanea greatly enrich the world. And it just-so happens that I’ve spent a good deal of time obsessing about footnotes.</p>
<p>For months, I’ve been distressed about how LaTeX handles footnotes. (Which, to be clear, is <em>much</em> better than how Word handles them.) Notes are used for subordinate details, which provide additional information, insight, and wit. In that role, they provide an important supplement to the main text.</p>
<p>Depending on which type of note you choose to use – foot, end, or side – there are certain rules which govern how they should be typeset. Robert Bringhurst, author of “The Elements of Typographic Style” and <em>the authority </em>on book typography lays it out pretty well:</p>
<blockquote><p>Footnotes are the very emblem of fussiness, but they have their uses. If they are short and infrequent, they can be made economical of space, easy to find when wanted, and, when not wanted, easy to ignore …</p>
<p>In the main text, superscript numbers are used to indicate notes because superscript numbers minimize interruption. They are typographic asides: small because that is an expression of relative importance, and raised for two reasons: to keep them out of the flow of the main text, and to make them easier to find. In the note itself, the number is not an aside, but a target. Therefore, the number in the note should be full size.<sup>1</sup></p></blockquote>
<p>&nbsp;</p>
<p>Unfortunately, this isn’t how LaTeX does it. Instead of having a superscript in the text and a full sized numeral in the notes, it uses superscript for both.<sup>2 </sup>Not only is it wrong (as far as anything can be wrong in a war of opinions), but it’s <em>really</em> hard to change. Most of the document classes only give you one or two options for the footnotes, and they’re not generally any better than the default. Nor does the heavy of all footnote packages, footmisc, provide a fix. Which means, if you want to adjust the way that the number appears, you have to hack the class at a lower level. (Sigh.)</p>
<p>Unless, you’re using <a href="http://blog.oak-tree.us/index.php/2011/03/26/latex01-raggedmarginalia">memoir</a>, that is.</p>
<p>It turns out that memoir provides hooks to customize everything about the footnotes. This includes the style, the size of the font, and … the numerical label. (If you’d like, you can even use symbols.) The code below will give you <em>properly</em> formatted references:</p>
<ul>
<li>superscript in the text</li>
<li>full sized numeral in the note</li>
<li>numeral out-dented into the margin by 1 em</li>
<li>note text typeset left flush</li>
</ul>
<blockquote><p>\footmarkstyle{#1}<br />
\setlength{\footmarkwidth}{-1.0em}<br />
\setlength{\footmarksep}{1.0em}</p></blockquote>
<p>The <code>\footmarkstyle</code> macro is used to remove the superscript, <code>\footmarkwidth</code> is the size of the box containing the note label, <code>\footmarksep</code> is how much to offset the numeral from the text.</p>
<h2>Notes</h2>
<ol>
<li>The footnote is flagged by a superscript in the text, but the note itself is introduced by an outdented figure of the same size for the text of the note. (Taken from “The Elements of Style,” page 69.)</li>
</ol>
<p><sup>2</sup> Which is, frankly, unsightly and distracting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/11/29/latex02-footnotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LibreGraphics Magazine &#8211; Issue 1.3</title>
		<link>http://www.oak-tree.us/2011/10/05/libregraphics1-3/</link>
		<comments>http://www.oak-tree.us/2011/10/05/libregraphics1-3/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 19:51:49 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[LibreGraphics Magazine]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/10/05/libregraphics1-3/</guid>
		<description><![CDATA[LibreGraphics magazine is one of those bold things that the open source world needs more of. It’s designed as a catalyst for discussion and, more importantly, a showcase of what can be accomplished with open source software. In the graphic arts world, a sizable number of graphic design users have this idea that the only [...]]]></description>
			<content:encoded><![CDATA[<p>LibreGraphics magazine is one of those bold things that the open source world needs more of. It’s designed as a catalyst for discussion and, more importantly, a showcase of what can be accomplished with open source software.</p>
<p>In the graphic arts world, a sizable number of graphic design users have this idea that the only software worth using is a suite of proprietary (and extremely expensive) tools. For that reason, one of the stated goals of LibreGraphics magazine (part of their manifesto, in fact) is a desire to shatter this idea.</p>
<p>They want people to know:</p>
<blockquote><p>As users of [free software], we know that our work, when executed well, is indistinguishable from work produced by more traditional means. Thus, ehre we will unite all our previously disparate successes. We will elevate the discourse around LibreGraphics as a professionally viable option, raise awareness, and show that it is the vision of the artist (and not the cost of the tool) that is important.</p></blockquote>
<p>They do an excellent job.</p>
<p>Issue 1.3 of the magazine was just released. It takes a look at what it means to work collaboratively. It is available for <a href="http://libregraphicsmag.com/download.html">download</a> on the LibreGraphics website or for <a href="http://libregraphicsmag.com/buy.html">purchase</a>. (If you have trouble downloading from the main site, there are <a href="http://www.oak-tree.us/libregraphicsmag/">mirrors</a> available.)</p>
<p align="center"><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="The Voice in the Shell - Page Spread" src="http://www.oak-tree.us/wp-content/uploads/2011/10/image1.png" alt="The Voice in the Shell - Page Spread" width="620" height="440" border="0" /></p>
<p align="center"><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="LibreGraphics - In Print" src="http://www.oak-tree.us/wp-content/uploads/2011/10/Graphics1.3-2.png" alt="LibreGraphics - In Print" width="600" height="359" border="0" /></p>
<p align="center"><img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Graphics1.3-3" src="http://www.oak-tree.us/wp-content/uploads/2011/10/Graphics1.3-3.png" alt="Graphics1.3-3" width="600" height="359" border="0" /></p>
<p align="center"><img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Colored Extravagence" src="http://www.oak-tree.us/wp-content/uploads/2011/10/image2.png" alt="Colored Extravagence" width="620" height="439" border="0" /></p>
<p align="center"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Breaking into Floss" src="http://www.oak-tree.us/wp-content/uploads/2011/10/image3.png" alt="Breaking Into Floss" width="620" height="439" border="0" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/10/05/libregraphics1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Thinking, Explained</title>
		<link>http://www.oak-tree.us/2011/03/31/ted-visual2008/</link>
		<comments>http://www.oak-tree.us/2011/03/31/ted-visual2008/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 19:51:17 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[Cognitive Models]]></category>
		<category><![CDATA[Scientific Communication]]></category>
		<category><![CDATA[Visual Explanations]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/03/31/ted-visual2008/</guid>
		<description><![CDATA[In the Open Source Writing book, I’ve got a section of Visual Thinking. While I’m hardly an expert, the way we perceive and understand the world is a serious interest of mine an I read everything I can find on the subject. This morning, while I was fact checking a few things for the book, [...]]]></description>
			<content:encoded><![CDATA[<p>In the Open Source Writing book, I’ve got a section of Visual Thinking. While I’m hardly an expert, the way we perceive and understand the world is a serious interest of mine an I read everything I can find on the subject.</p>
<p>This morning, while I was fact checking a few things for the book, I came across this video by Tom Wujek. In it, he talks about the neuroscience of understanding and how the brain understands the world of ideas. Though a bit dated (from the 2009 TED conference), it’s still excellent.</p>
<p align="center"><object width="446" height="326" style="padding-top: 15px; padding-bottom: 15px;"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/TomWujec_2009U-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/TomWujec-2009U.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=591&lang;=eng&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=tom_wujec_on_3_ways_the_brain_creates_meaning;year=2009;theme=presentation_innovation;theme=how_the_mind_works;theme=speaking_at_tedglobal2009;theme=speaking_at_ted2009;event=TED2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/TomWujec_2009U-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/TomWujec-2009U.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=591&#038;lang=eng&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=tom_wujec_on_3_ways_the_brain_creates_meaning;year=2009;theme=presentation_innovation;theme=how_the_mind_works;theme=speaking_at_tedglobal2009;theme=speaking_at_ted2009;event=TED2009;"></embed></object></p>
<p>Of related interest, you may want to take a look at the TED project he references, <a href="http://usa.autodesk.com/adsk/servlet/item?id=10851538&amp;siteID=123112">TED Big Viz</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/03/31/ted-visual2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LibreGraphics Magazine and Conference</title>
		<link>http://www.oak-tree.us/2011/03/28/libregraphics/</link>
		<comments>http://www.oak-tree.us/2011/03/28/libregraphics/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 22:06:03 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[LibreGraphics]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/03/28/libregraphics/</guid>
		<description><![CDATA[You know that obsession I’ve got with awesome stuff and the compulsion to share it? Well, it seems to have taken hold this morning. There are two things in the RSS feed today that simply must be shared. For these, everything – looming deadlines, familiar responsibilities, and miscellaneous addictions – can wait. The first item [...]]]></description>
			<content:encoded><![CDATA[<p>You know that <a href="http://blog.oak-tree.us/index.php/2011/01/21/stuff-201101">obsession</a> I’ve got <a href="http://blog.oak-tree.us/index.php/2011/02/01/venetian-printing">with</a> <a href="http://blog.oak-tree.us/index.php/2011/01/25/scratchboard-art">awesome</a> <a href="http://blog.oak-tree.us/index.php/2011/01/31/face-within">stuff</a> and the compulsion to share it? Well, it seems to have taken hold this morning. There are two things in the RSS feed today that <em>simply must be shared</em>. For these, everything – looming deadlines, familiar responsibilities, and miscellaneous addictions – can wait. The first item is a link to LibreGraphics magazine. The second is a call for proposals from a conference of the same name.</p>
<h2>LibreGraphics Magazine</h2>
<p>First, the magazine:</p>
<blockquote><p>LibreGraphics magazine is designed to serve as a catalyst for discussion; to build a home for the users of Libre Graphics software, standards, and methods. As users of these tools, we know that our work, when executed well, is indistinguishable from work produced by more traditional means. Thus, here we will unite all our previously disparate successes. We will elevate the discourse around Libre Graphics as a professionally viable option, raise awareness, and show that it is the vision of the artist (not the cost of the tool) that is important.</p></blockquote>
<p><img class="alignnone" title="LibreGraphics Magazine - Issue 1.1" src="http://www.oak-tree.us/wp-content/uploads/2011/03/cover.jpg" border="0" alt="LibreGraphics Magazine - Issue 1.1" width="292" height="415" /><img class="alignright" title="LibreGraphics Magazine - Issue 1.2" src="http://www.oak-tree.us/wp-content/uploads/2011/03/cover1.jpg" border="0" alt="LibreGraphics Magazine - Issue 1.2" width="295" height="416" /></p>
<p>There are two issues currently available. Both are great examples of what a LibreGraphics and open design magazine should be. They provide tutorials, opinion, perspective, and healthy doses of ideology. (Not too different from the publications written for open source code jockeys, actually.)</p>
<p>You can download both issues from the <a href="http://libregraphicsmag.com">project’s website</a>, or from <a href="http://www.oak-tree.us/libregraphicsmag/">one of the handy mirrors</a>.</p>
<h2>LibreGraphics Conference</h2>
<p>Like LibreGraphics Magazine, the LIbreGraphics Meeting exists to “unite and accelerate the efforts behind Free, Libre, and Open Source creative software It’s the premiere conference for developers, users, and supporters of porjects such as GIMP, Inkscape, Blender, Krita, Scribus, Hugin, the Open Clipart Library, and the Open Font Library to gather and work.” In short, a meeting of magic and liquid awesomeness.<img style="background-image: none; margin: 15px 0px 15px 40px; padding-left: 0px; padding-right: 0px; display: inline; float: right; padding-top: 0px; border-width: 0px;" title="LGM" src="http://www.oak-tree.us/wp-content/uploads/2011/03/LGM.png" border="0" alt="LGM" width="250" height="278" align="right" /></p>
<p>The conference organizers are currently looking for help on two fronts:</p>
<ol>
<li>They need money. Since there are many open source developers and volunteers who would dearly love to attend and might not be able to afford the travel costs, they are trying to raise money for travel grants. They estimate that they need about $12,000. Please <a href="http://pledgie.com/campaigns/14610">donate</a>.</li>
<li>They are also in need of presenters. If you are doing amazingly creative things with open source, consider <a href="http://create.freedesktop.org/wiki/Conference_2011/Submit_Talk">submitting a proposal</a>. The submission deadline is April 20th.<!--adsensestart--></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/03/28/libregraphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camp KDE and Writing Tools</title>
		<link>http://www.oak-tree.us/2011/03/28/kdesf-2011/</link>
		<comments>http://www.oak-tree.us/2011/03/28/kdesf-2011/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 16:56:58 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[Camp KDE 2011]]></category>
		<category><![CDATA[LyX]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Typesetting]]></category>
		<category><![CDATA[Writing Tools]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/03/28/kdesf-2011/</guid>
		<description><![CDATA[Next Monday, I’m going to be giving a talk entitled “Writing and Publishing With Open Source Tools” at Camp KDE, the annual KDE conference for North America. For those interested in attending, the talk happens at 12:15 pm at the Hotel Kabuki, in San Francisco. I’m really excited about the talk and I think it’s [...]]]></description>
			<content:encoded><![CDATA[<p>Next Monday, I’m going to be giving a talk entitled “Writing and Publishing With Open Source Tools” at <a href="http://camp.kde.org/">Camp KDE</a>, the annual KDE conference for North America. For those interested in attending, the talk happens at 12:15 pm at the <a href="http://www.jdvhotels.com/hotels/kabuki">Hotel Kabuki</a>, in San Francisco.</p>
<p>I’m really excited about the talk and I think it’s going to be excellent. (I know, having high expectations for your own performance is the route to obscurity, disappointment, and insanity.) If you live in the bay area, or are going to be near San Francisco next Monday and Tuesday, please consider coming.</p>
<p>While I think you should come to hear me, you might also be interested in the conference as a whole. There are going to be a number of interesting talks that covering KDE developments and core technologies.</p>
<p>(I’m particularly excited to hear about what <a href="http://camp.kde.org/#speakermarijnk">KOffice/Calligra</a> is up to. The abstract talks about “Office Engines” and how KOffice/Caligra can be used to build custom applications. I’m wondering if the technology might be adapted for a mobile project I’m working on. The talks on QtWebKit and the Qt Graphics tools also look neat.)</p>
<p>One of the reasons why I’m so excited about my talk is that it brings developments with the book full circle. I first started writing “Writing With Open Source Tools” due to a request for proposals  launched by KDE nearly two years ago. Now, I’m going back to KDE to talk about the (nearly) finished project.</p>
<p>I’m also going talk on other developments I consider timely. For example:</p>
<ul>
<li>How open source publishing tools can be used to target print, web, and eBook platforms from a single source file.</li>
<li>How editors, writers, designers, and production people can work together in a seamless, collaborative manner.</li>
<li>The strengths of an open approach and where things stand to improve. (Especially for writers and designers.)</li>
</ul>
<p>While there will be motifs common to the <a href="http://blog.oak-tree.us/index.php/2010/08/19/linux-typography">Salt Lake Linux User’s group presentation</a>, most of it is exciting and new. (Which also means untried and untested. So, if it goes well, you expect to be enlightened. If it goes poorly, expect to be entertained. Either way, it should be a good time.) Since I haven’t quite finished the presentation, it’s also adaptable. If there is anything specific you’d like to see covered, let me know in the comments and I will try to oblige.</p>
<h2>Other Cool Stuff</h2>
<p>On a somewhat related note, I just came across the work the people at <a href="http://www.youtube.com/user/theRSAorg">RSA animate</a>.  In their videos, a talented ilustrator draws images as a speaker presents a topic. They are absolutely riveting. (I also know that they’ve been around a while, but this is the first time I’ve really come across their work.)</p>
<p>This video, for example, features Ken Robinson and his thoughts about education. Specifically, about it destroys children’s ability to create.</p>
<p><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/zDZFcDGpL4U?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>And this one examines where good ideas come from. (I think it was part of the promotional efforts for Steven Johnson’s <a href="http://www.amazon.com/gp/product/1594487715/ref=as_li_ss_tl?ie=UTF8&amp;tag=apolitiincorr-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1594487715">fantastic book of the same title</a>. If it wasn’t, it should have been.)</p>
<p><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/NugRZGDbPFU?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>I love the quality of both videos, and I&#8217;m trying to figure out how I could capture a similar feel for my presentation on Monday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/03/28/kdesf-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touching the Face of God</title>
		<link>http://www.oak-tree.us/2011/01/28/challenger/</link>
		<comments>http://www.oak-tree.us/2011/01/28/challenger/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 16:36:00 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Science and Medicine]]></category>
		<category><![CDATA[Challenger]]></category>
		<category><![CDATA[Space Exploration]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2011/01/28/touching-the-face-of-god/</guid>
		<description><![CDATA[Today was the 25th anniversary of the Space Shuttle Challenger disaster. Considering that it is a major anniversary of a catastrophic event, I’ve been somewhat surprised at the response. Or, I guess I should clarify, the lack of one. A quick search on Google News shows that it is being covered, but the world seems [...]]]></description>
			<content:encoded><![CDATA[<p>Today was the 25th anniversary of the Space Shuttle <em>Challenger</em> disaster.</p>
<p>Considering that it is a major anniversary of a catastrophic event, I’ve been somewhat surprised at the response. Or, I guess I should clarify, the lack of one.</p>
<p>A quick search on Google News shows that it is being covered, but the world seems far more focused on the happenings in Egypt and the upcoming launch of Verizon’s iPhone. While the norm for most sites was thundering silence, I found one major exception in my RSS feed this morning, a <a href="http://thefoxisblack.com/2011/01/28/space-suit-of-the-week-36/">photo essay</a> posted on the <a href="http://www.thefoxisblack.com">Fox is Black</a>.</p>
<p>Compiled by Alex Dent, it includes the footage of the explosion and is accompanied by a haunting model of the smoke plume. In closing Dent says, “Today is the 25th anniversary of the <em>Challenger </em>disaster. There are no words.”</p>
<p>When I first saw the images, I wasn’t quite sure what to make of them. At first, I wasn’t sure what they were, and I was puzzled. Then, after I reviewed a few more in the series, I recognized them, which triggered a reaction very similar to the first time I saw them.</p>
<p><span id="more-474"></span></p>
<h2 style="text-align: center;"><em>1.</em></h2>
<p>When <em>Challenger</em> exploded, I was six years old. I was a first grade student in Ms. Deacon’s class.</p>
<p>I don’t remember if we were watching the launch live, or if it was a rebroadcast. But I remember seeing the footage and being very confused. I worshiped astronauts. I wanted to be an astronaut.</p>
<p>They were the people who walked in space, soared amongst angels, and saw the wondrous whole of creation. A type of demigod that routinely accomplished the impossible and most assuredly did not die. Or at least it seemed to the mind of a six year old.</p>
<p style="text-align: center;"><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Space Shuttle Challenger - Crew" src="http://www.oak-tree.us/wp-content/uploads/2011/01/image1.png" border="0" alt="Space Shuttle Challenger - Crew" width="600" height="480" /></p>
<p>Yet, <em>Challenger</em> was gone. Because of a faulty design, the shuttle exploded only 73 seconds into the flight, blown into a twisted white cloud of debris. The impossible had happened. NASA, the same group which had safely returned Apollo 13 to earth after having a “problem”, had seen its first casualties in space.</p>
<p>Unless you were lived it, it is very difficult to describe the effect that <em>Challenger’s</em> explosion had on the mind of the country. It was shocking, traumatic, and no one knew how to respond to the news. We mourned the loss of the astronauts, but at the same time we also lost our innocence.</p>
<h2 style="text-align: center;"><em>2.</em></h2>
<p>Indeed, even though it’s been 25 years and much of the immediacy of the trauma has faded, I’m still not sure that America knows how to respond to <em>Challenger. </em>Certainly, in addresses and eulogies, we speak of hope and the dreams embodied by the astronauts, but we’ve done little to further the ambitions for which they gave their lives.</p>
<p>For, the moment that Challenger exploded, so did a generation’s hope for reliable and safe access to space. By showing their fallibility in such a catastrophic manner, NASA demonstrated that no manifest destiny propelled man toward the stars, or even that the efforts of Earth’s best and brightest could be good enough. Predictably, there was outrage and careful investigation. We demanded to know <em>why</em> our heroes had been taken for us.</p>
<p>The results from the commission were not encouraging. Instead of a NASA populated by super-heroes and immortals, it uncovered an organization pockmarked by humanity. And, predictably, oversight and scrutiny of the shuttle program increased enormously. At the same time, though, resources did not. There isn’t a more effective way to kill an audacious dream by demanding the impossible, delivered at a budget price.</p>
<h2 style="text-align: center;"><em>3.</em></h2>
<p>Which may be why I had such a mixed reaction to Dent’s photo essay.</p>
<p>I know that he is trying to restore humanity and understand how such a disaster could become abstract; but when I see the photos of <em>Challenger</em>, I don’t see an abstract event lost in the mists of time.</p>
<p>I think of the loss of the astronauts, a traumatized six year old, and the moment that a dream died. These are powerful and distressing emotions, which is why they should be balanced by the bravery of the astronaut’s lives. The people onboard Challenger embodied a powerful and inspiring vision, yet, evidence of that vision is absent from Dent’s essay.</p>
<p>Unfortunately, it is also absent form other public commemorations of the tragedy.</p>
<p>There is little hope that Americans will soon walk amongst the stars again, or that we even dare to propose bold things. In February of 2010, Obama killed the last vestiges of America’s manned space flight programs. Nothing has been yet taken its place. Instead, NASA has been transformed into yet another advanced research lab of the government; from an agency that does great things, to one that thinks about doing them. That is a tragedy, and a wholly unfitting memorial to the fallen.</p>
<p>Which, I suppose, is why I’m writing this essay. Michael Smith, Dick Scobee, Judith Resnik, Ronald McNair, Ellison Onizuka, Gregory Jarvis and Christa McAuliffe sacrificed their lives in pursuit of discovery, and yet, that very sacrifice seems partially responsible for stifling American greatness.</p>
<p>Who are the great heroes of science and exploration now? Do names leap to mind? What titans of industry, art, science, and engineering propel us forward?</p>
<p>Or, do we tell today’s children that they can’t be astronauts, because astronauts don’t exist anymore? Have we let the fear of risk overshadow our ability to accomplish noble, great, or beautiful things?</p>
<p><a href="http://www.oak-tree.us/wp-content/uploads/2011/01/image.png"><img class="size-full wp-image-471 alignnone" title="image.png" src="http://www.oak-tree.us/wp-content/uploads/2011/01/image.png" alt="" width="417" height="418" /></a></p>
<h2 style="text-align: center;"><em>4.</em></h2>
<p>I don’t know the answers to these questions, which scares me. What I do know, however, is that the questions <em>need</em> to be answered. Humanity requires explorers and adventurers. We rely on such to drag us, often kicking and screaming, into the future.</p>
<p>I think Reagan summarized it well:</p>
<blockquote><p>I know it is hard to understand, but sometimes painful things like this happen. It’s all part of the process of exploration and discovery. It’s all part of taking a chance and expanding man’s horizons. The future doesn’t belong to the fainthearted; it belongs to the brave. The Challenger crew was pulling us into the future, and we’ll continue to follow them …</p>
<p>The crew of the space shuttle Challenger honored us by the manner in which they lived their lives. We will never forget them, nor the last time we saw them, this morning, as they prepared for the journey and waved goodbye and “slipped the surly bonds of earth” to “touch the face of God.”</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2011/01/28/challenger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 Calendar Scribus Template</title>
		<link>http://www.oak-tree.us/2010/12/29/calendar-2011/</link>
		<comments>http://www.oak-tree.us/2010/12/29/calendar-2011/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 18:26:30 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Document Templates]]></category>
		<category><![CDATA[Scribus]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2010/12/29/calendar-2011/</guid>
		<description><![CDATA[Over the past week, I’ve been helping a non-profit put together a yearly thank-you calendar.  I’ve been using Scribus, and so far, it’s been going very smoothly. Scribus includes a nifty “Calendar Wizard” that lets you generate date grids for any month or year.  But though the Calendar Wizard works well, I found that it [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past week, I’ve been helping a non-profit put together a yearly thank-you calendar.  I’ve been using Scribus, and so far, it’s been going very smoothly.</p>
<p>Scribus includes a nifty “Calendar Wizard” that lets you generate date grids for any month or year.  But though the Calendar Wizard works well, I found that it didn’t support all of the features that I would like.  Therefore, I spent a little bit of time and put together my own template.</p>
<p>In addition to a date grid, the template includes modified styles for the weeks, days and months (set to use the Linux Libertine typeface); the lunar phases; common North American Holidays; and miniature calendars for the preceding and following months.  I’ve also added image placeholders for all of the different pages.</p>
<p>Using this template, you should be able to create a  handsome, interesting calendar in almost no-time.  Though I had a “fine arts” feel in mind, it seems to work well with funny cat-pictures.  The sample pages shown here were all created from the template.</p>
<p>(The images in the examples were taken from <a href="http://commons.wikimedia.org">Wikimedia Commons</a> and from the <a href="http://creativecommons.org/">Creative Commons</a> photos posted on <a href="http://www.flickr.com">Flickr</a>,   though I converted them to black/white.  You can probably tell that I’ve been pretty influenced by <a href="http://blog.oak-tree.us/index.php/2010/12/24/brandt">Nick Brandt</a>.  These are not the images that will be used in the thank-you calendar.  Just pictures I’ve been practicing photo-manipulation techniques on with GIMP.)</p>
<p>Because it might be of interest/benefit to other people, I thought that I would post the template here.  The download file below includes everything required to make the template work.</p>
<p>To install, copy it to your Scribus Templates folder.  (The templates folder is included in your Scribus user folder.  For Linux users, this is usually a folder called “.scribus” in your home directory.  If you wish, you can change it from the “Preferences” dialog.)  Because the template was created with Scribus 1.3.9, you will need that version to make it work (or, alternatively, you will need to use the SVN version).</p>
<h2>Downloads</h2>
<p><a href="http://oak-tree.us/stuff/Scribus/Calendar-2011.zip">2011 Scribus Calendar Template (Formal)</a>.  A formal calendar template for users of Scribus covering January to December 2011.  The template includes a calendar grid, the lunar phases, miniature calendars for the preceding and following months, and common holidays.  By default, it uses Linux Libertine as the typeface, though this can be adjusted using the available styles.  (Typeface bundled with the template.)</p>
<p>The template is released under a creative commons, attribution, <a href="http://creativecommons.org/licenses/by-sa/2.5/">share and share-a-like license</a>.  If you make any changes or enhancements to the layut, please be kind enough to provide a link in the <a href="http://www.oak-tree.us/mingle-forum/?mingleforumaction=viewtopic&amp;t=7.0#postid-8">forum</a>.  That way, everyone can benefit.</p>
<h2>Example Layouts</h2>
<p><img style="background-image: none; margin: 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="2011 Calendar - page006" src="http://www.oak-tree.us/wp-content/uploads/2010/12/2011-Calendar-page006.png" border="0" alt="2011 Calendar - page006" width="524" height="812" /><img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="2011 Calendar - page005" src="http://www.oak-tree.us/wp-content/uploads/2010/12/2011-Calendar-page005.png" border="0" alt="2011 Calendar - page005" width="524" height="812" /></p>
<p><img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="2011 Calendar - page009" src="http://www.oak-tree.us/wp-content/uploads/2010/12/2011-Calendar-page009.png" border="0" alt="2011 Calendar - page009" width="524" height="812" /></p>
<p><img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="2011 Calendar - page011" src="http://www.oak-tree.us/wp-content/uploads/2010/12/2011-Calendar-page011.png" border="0" alt="2011 Calendar - page011" width="524" height="812" /></p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="2011 Calendar - page013" src="http://www.oak-tree.us/wp-content/uploads/2010/12/2011-Calendar-page013.png" border="0" alt="2011 Calendar - page013" width="524" height="812" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2010/12/29/calendar-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miscellaneous Stuff: Layouts, Spam, Poster PDFs, etc.</title>
		<link>http://www.oak-tree.us/2010/11/17/miscellaneous/</link>
		<comments>http://www.oak-tree.us/2010/11/17/miscellaneous/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 23:12:51 +0000</pubDate>
		<dc:creator>Rob Oakes</dc:creator>
				<category><![CDATA[Advertising and Business]]></category>
		<category><![CDATA[Making Money]]></category>
		<category><![CDATA[Open Source Writing]]></category>
		<category><![CDATA[Schemes]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.oak-tree.us/2010/11/17/miscellaneous/</guid>
		<description><![CDATA[Note: Still working on the book. Hope to be done soon.  More information will be posted when I actually finish. To the many kind people who have asked, I am still alive. Yes, I am still working on the book.  Large projects have minds of their own, and I am having a very hard time [...]]]></description>
			<content:encoded><![CDATA[<p><em>Note: Still working on the book. Hope to be done soon.  More information will be posted when I actually finish.</em></p>
<p>To the many kind people who have asked, I am still alive. Yes, I am still working on the book.  Large projects have minds of their own, and I am having a very hard time convincing this one that she should be “finished.”</p>
<p>Every time I think I&#8217;m nearing the gate, I discover something else that needs to be done.  Writing a book is amazingly like writing software, at least in that respect.  They are the only two activities I&#8217;ve ever done where the inside usually ends up being bigger than the outside.  (Well, that and horse training.  But for different reasons.)</p>
<p>You look at the size of the job and think, that won&#8217;t be so bad.  Then, once you get inside it, not only is it worse, but worse on an unimagined scale.  Things take ten times as long and you realize that you need to produce about twice as much material as you thought, only to kill half of it.</p>
<p>Then, you hit every bump in the road, and realize you need another illustration, but there&#8217;s no budget. So if you <em>really</em> want it, you&#8217;ll have to produce it yourself &#8230; which takes a long time, and further destroys your objectivity about the project … To say nothing of image licensing …  You get the picture.</p>
<p>Writing books is hard.</p>
<p>(To the million or so souls who are participating in NanoWriMo this month, I wish you my best.  May you meet your word counts and find inspiration.  And I sincerely hope you are spared from murdering your ideas.  It&#8217;s painful.)</p>
<p>But before I get lost in the, &#8220;Writing books is hard&#8221;, rant, there is actually a purpose to this post.  I have favors to request and a couple of things to announce.  So &#8230; to the meat.</p>
<h2>Layouts</h2>
<p>First things up, I need to put out a request.  One of the chapters in the book is on layout and design using Scribus.  For this chapter, I would like to include nice examples of different document types.  <a href="http://blog.oak-tree.us/index.php/2010/09/01/awesome-examples">(I’ve written on this before.)</a></p>
<p>Here is what I’m looking for, specifically:</p>
<ol>
<li>Double Page Spreads</li>
<li>Flyers</li>
<li>Posters</li>
<li>Research Related Posters</li>
</ol>
<p>I&#8217;ve created several layouts on my own, but for this chapter to work, I would love to have examples from others.  If there is anyone who wouldn&#8217;t mind having their layout work included, please contact me at:</p>
<p style="text-align: center;">lyx-devel@oak-tree.us</p>
<h2>Scientific Content</h2>
<p style="text-align: left;">There is also a second part to this request.</p>
<p style="text-align: left;">I <em>really </em>want to include one or two examples of Research Symposium posters.  The book is skewed toward an academic audience and research posters are the most visually oriented document that students/researchers produce with regularity.  Moreover, few layout/type books talk about their design, nor do they include examples.</p>
<p style="text-align: left;">(Or if they do, they&#8217;re utterly ghastly.  Not just bad, mind you, ghastly.)</p>
<p style="text-align: left;">Thus, if there are any research scientists who wouldn&#8217;t mind contributing examples, I would be tremendously appreciative.  Or, alternatively, if you wouldn&#8217;t mind contributing text and images toward an example, I would be happy to help you put one together.  You keep the copyright, a copy of all the template files, and everything else that gets generated. The only thing I need is a right to include a version in the chapter on layout and design.  Consider it free design work, even if the &#8220;designer&#8221; is mostly just an enthusiast.</p>
<p style="text-align: left;">(After checking multiple conference websites, AHA Scientific Sessions, HRS, and others, I don&#8217;t believe this type of use will cause problems with submissions or &#8220;prior publication.&#8221;   The purpose of the chapter is to show layout, not release scientific content.  Moreover, it will be printed at a size which renders the type mostly illegible.  If you are think this might interest you and you are concerned about your work being accepted due to previous publication, please check the specific conference guidelines.)</p>
<p><img style="background-image: none; margin: 0px 25px 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border-width: 0px;" title="image" src="http://www.oak-tree.us/wp-content/uploads/2010/11/image1.png" border="0" alt="image" width="205" height="205" align="left" /></p>
<p>If interested, please send me an email.</p>
<h2>Spam</h2>
<p>For the past month or so, I’ve been fighting a losing battle against comment spam.  I’m not sure why, but it seems that Akismet has mostly stopped working.  Yesterday was particularly bad and I had more than 35 variants of:</p>
<blockquote><p>Great post man.  Love the blog!  (Click here for penis enlargement!)</p></blockquote>
<p>I’ve already <a href="http://blog.oak-tree.us/index.php/2010/10/01/commenting-policy">talked about why spam bothers me</a>, so I won’t get into it a second time.  This note is mostly to talk about a couple of things I’ve done, or rather the filters I’ve installed:</p>
<ol>
<li><a href="http://tantannoodles.com/toolkit/spam-filter/">TanTan Noodles’ Simple Spam Filter</a>.  This plugin comes highly recommended as a way to catch spam.  I installed it this morning.  It appears to be working.  Since installing, I haven’t seen a single spam comment.  But then, I haven’t seen a single real comment either.</li>
<li><a href="http://wordpress.org/extend/plugins/anti-captcha/">Anti-Captcha</a>.  This is a technological solution meant to kill spam-bots.  It uses a bit of random trickery and nonce key to prevent automated spam submission.  Again, it comes highly recommended.</li>
</ol>
<p>The reason I am talking about this is because, with new filters in place, I’m worried that real comments might be marked as spam.  And, what is a blog without comments?  I’m an attention whore and this website gives me a (relatively) healthy outlet for those tendencies.  (It also makes me less obnoxious in family, professional, and social gatherings.)</p>
<p>Comments matter to me.  If your comment gets marked as spam, please send me an email.  I’ll try and fix it.  Also, if you wouldn’t mind leaving a comment on this page to say hi, that would also be appreciated.  (I’d like to test the filters and see if they work.)</p>
<h2>Poster PDFs</h2>
<p>As the last piece of miscellanea, I’ve had a couple of people ask about PDF copies of my <a href="http://www.oak-tree.us/posters/">posters</a>.  (Not just the maps, which you can find <a href="http://blog.oak-tree.us/index.php/2010/02/22/minard-maps">here</a>, but the actual posters.)  There have been enough requests, that I have decided to post them.  Download options can be found on the poster page:</p>
<p><a href="http://www.oak-tree.us/posters">http://www.oak-tree.us/posters</a></p>
<p><em>Note: Because those particular posters actually have a specific purpose – to fund the development of <a href="http://blog.oak-tree.us/index.php/science-and-technology/lyx-outline">LyX-Outline</a> and <a href="http://blog.oak-tree.us/index.php/science-and-technology/time-drive">Time Drive</a> – I am charging for them. The PDF proofs of the maps are still available, and always will be.  If you would like to support Time Drive development, please consider downloading a copy.  Or, you can donate directly from the <a href="http://www.oak-tree.us/software-development/">software development</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oak-tree.us/2010/11/17/miscellaneous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

