<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>How To's</title>
	<atom:link href="http://howtos.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://howtos.wordpress.com</link>
	<description></description>
	<pubDate>Mon, 24 Jul 2006 06:13:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language></language>
			<item>
		<title>LaTeX: from beginner to TeXPert</title>
		<link>http://howtos.wordpress.com/2006/07/23/latex-from-beginner-to-texpert/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/latex-from-beginner-to-texpert/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:17:22 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/23/latex-from-beginner-to-texpert/</guid>
		<description><![CDATA[This post introduces the LaTeX typesetting system. After digesting the information below, you&#8217;ll be able to:

Download and install LaTeX on your PC or Mac
	Create basic documents using LaTeX
	Install new LaTeX packages
	Insert tables and figures into a LaTeX document
	Use LaTeX&#8217;s cross-referencing, footnote and basic bibliography features
	Insert equations into a LaTeX document

These topics cover the majority of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This post introduces the LaTeX typesetting system. After digesting the information below, you&#8217;ll be able to:</p>
<ul>
<li>Download and install LaTeX on your PC or Mac</li>
<li>	Create basic documents using LaTeX</li>
<li>	Install new LaTeX packages</li>
<li>	Insert tables and figures into a LaTeX document</li>
<li>	Use LaTeX&#8217;s cross-referencing, footnote and basic bibliography features</li>
<li>	Insert equations into a LaTeX document</li>
</ul>
<p>These topics cover the majority of tasks that most people need to do when writing a document. However, please note that while the LaTeX system makes it very easy to create professional-looking documents, it is both comprehensive and extensible. There are many topics that are not covered by this basic tutorial. Fortunately, LaTeX is very well documented. If you come across something that you can&#8217;t figure out how to do, ask your old friend Google for help.</p>
<p><strong>What is LaTeX?</strong></p>
<p>At its core, LaTeX is a typesetting system that allows authors to create highly polished documents without having to worry about formatting, page breaks, object positioning, or any other style concerns that distract authors from focusing on writing. LaTeX is pronounced &#8220;lay-tech,&#8221; as it is an extension of TeX (&#8221;tech&#8221;), the original typesetting system. You can read all about the history of <a href="http://en.wikipedia.org/wiki/TeX">TeX</a> and <a href="http://en.wikipedia.org/wiki/LaTeX">LaTeX</a> on Wikipedia.</p>
<p>LaTeX is used widely in a variety of professions. Mathematicians, physicists, economists, statisticians and other academics and professionals that regularly use mathematical notation in their documents often use LaTeX because of the ease with which it handles such notation. Many publishers use TeX-based systems for typesetting documents.</p>
<p><strong>How does LaTeX work?</strong></p>
<p>LaTeX differs from traditional word processors in two fundamental ways:</p>
<ol>
<li>Gnerally, LaTeX documents are written using the easy-to-learn LaTeX markup language, rather than by using a graphical interface to apply styles[1].</li>
<li>LaTeX works with your document aft<em>er yo</em>u have entered your text. So unlike word processors, it can use information about the total length of your document, number of tables, etc. to find the optimal places for tables, figures, page breaks, etc.</li>
</ol>
<p>The following is an example of a very basic LaTeX document:</p>
<blockquote><p>\documentclass{article}<br />
\author{Your Name}<br />
\title{Test Document}<br />
\begin{document}<br />
\maketitle<br />
This is a test document<br />
\end{document}</p></blockquote>
<p>With any LaTeX distribution, saving the above text as a .tex file and running LaTeX on that file would produce the following:</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/TestDocCropped.png"><img src="http://generaldisarray.files.wordpress.com/2006/04/TestDocCropped-tm.jpg?w=268&h=100" alt="Testdoccropped" border="1" height="100" hspace="4" vspace="4" width="268" /></a></p>
<p>LaTeX is designed to create the same output on any system. So if you distributed the above text to anyone with a working LaTeX distribution, regardless of their particular system, they would get the exact same result. LaTeX outputs files in several formats, but the most popular is PDF.</p>
<p><strong>Getting LaTeX</strong></p>
<p>All you technically need to create LaTeX documents is a LaTeX engine &#8212; the binary files and libraries that will convert plain text tex files to polished pdf files. LaTeX can be run from the command line, so *nix and DOS aficionados will feel right at home. However, using a frontend for LaTeX can make things much easier. Most frontends are essentially text editors with functions to</p>
<ul>
<li>Compile documents with LaTeX without using the command line</li>
<li>	Facilitate writing in the LaTeX language (wizards for table creation, code completion, etc.)</li>
</ul>
<p>In this document, I assume that you&#8217;ll need both a LaTeX engine and a frontend. There are many engines and frontends to choose from on every operating system. I&#8217;m going to describe how to install the most popular (and easy to install) open-source tools for OS X and Windows. The only difference between using the distributions that I describe and others is configuration and practical difference between applications, so feel free to try out other distributions.</p>
<p><em>On Mac OS X</em></p>
<p><strong>Engine. </strong><a href="http://ii2.sourceforge.net/tex-index.html">gwTeX</a> is a free and open-source LaTeX distribution for OS X that comes with a graphical installer.  To install, you download the i-Installer application, select a mirror, then select the TeX package. Additional installation instructions are available on the download page. Once installation is complete, all you need is a frontend.</p>
<p><strong>Frontend.</strong> <a href="http://www.uoregon.edu/~koch/texshop/">TeXShop</a> is a very popular LaTeX frontend for OS X. Installation requires a simple drag and drop to the /Applications folder. TeXShop is automatically configured to work with gwTeX, so if that&#8217;s the engine that you&#8217;re using, you&#8217;re set.</p>
<p>To test out your distribution, try saving the sample document above as a .tex file and running LaTeX on your document by pressing command-t. If everything is configured properly, a window will appear similar to the example output above, and a new PDF file (as well as a log file) will appear in the directory where your file is saved.</p>
<p><em>On Windows</em></p>
<p><strong>Engine.</strong> MikTeX is a popular open-source distribution. To install, <a href="http://miktex.org/Setup.aspx">visit this page</a>, download the executable, and follow the dialog. Additional installation instructions are on the download page.</p>
<p><strong>Frontend. </strong><a href="http://toolscenter.org/front_content.php?idcat=50">TeXnic Center</a> is an open-source frontend with many helpful features. Installation is standard, just download and open the executable, which opens a wizard.</p>
<p>TeXnic center is automatically configured to work with MikTeX. To test out your setup, save the sample document above as a .tex file using TeXnic Center and select <em>Build &gt; Current file</em>. If everything is set up properly, a new PDF file (along with a log file) will be created in the directory where your document is saved.</p>
<p><em>On Linux</em></p>
<p>Linux systems have their own application management utilities (apt-get or rpm, for example), and installation will depend on your particular Linux distribution. Ubuntu users can use the Synaptic Package Manager. Kile is a popular and easy-to-use frontend that works with both KDE and Gnome.</p>
<p><em>A note about file types</em></p>
<p>LaTeX can make several types of output files, including PDF and DVI (device independent) files. The type of output depends on whether PDFLaTeX is used to process the file, or another program. The default for the frontends defined above is to create PDF files, but be aware that changing these settings might affect the type of output created.</p>
<p><strong>LaTeX basics</strong></p>
<p><em>LaTeX commands</em></p>
<p>LaTeX commands generally begin with a backslash and take the form \command[options]{argument}. For example,</p>
<blockquote><p>\section{Introduction}</p></blockquote>
<p>would define a new section, named &#8220;Introduction.&#8221; The &#8220;%&#8221; character defines a comment, and everything from that character to the end of the line is commented out and will be ignored by LaTeX. To insert the &#8220;%&#8221; character into a document, escape it with a backslash: \%.</p>
<p>Quotes work a bit differently in LaTeX. To insert quote marks, use the form &#8220;text&#8221;. That is, the ` character (top left of the keyboard) twice, followed by the single quote character, &#8216;, twice.</p>
<p><em>The preamble</em></p>
<p>Everything before the line &#8220;\begin{document}&#8221; is part of the preamble. A typical preamble might look like this:</p>
<blockquote><p>\documentclass{article}<br />
\usepackage{graphicx}<br />
\title{Test}<br />
\author{Test}<br />
\date{}</p></blockquote>
<p>In the example above:</p>
<ul>
<li>	\documentclass{article} tells LaTeX that the document is an article. Other classes include book, letter and slides</li>
<li>	\usepackage{graphicx} tells LaTeX to use the graphicx package, which allows users to include many types of graphics in their documents. Packages are covered later on</li>
<li>	\title{} and \author{} obviously define the title and author</li>
<li>	\date{} tells LaTeX to leave the date blank. \date{April 2006} would print &#8220;April 2006&#8243; as the date. Leaving the \date{} line out would cause LaTeX to use today&#8217;s date.</li>
</ul>
<p>The \documentclass{} command has options. For example, \documentclass[11pt,twocolumn]{article} would organize body of the document into two columns. Note that options are separated by a comma. Other options include:</p>
<ul>
<li>	oneside or twoside - change margins for a one or two-sided document</li>
<li>	landscape - change the document from portrait to landscape</li>
<li>	titlepage or notitlepage - define whether there is a separate title page, or if the title, author and date info are presented at the top of the article</li>
</ul>
<p><em>The document body</em></p>
<p>Everything after the preamble and between \begin{document} and \end{document} is part of the document body. Most of a LaTeX document is simply plain text. To start a new paragraph, insert two carriage returns (blank lines). LaTeX will ignore one blank line. To force a line break, use \\.</p>
<p><em>Document structure</em></p>
<p>A document&#8217;s structure is defined using \section{} commands. LaTeX is strongly based on well-structured documents. The structure tags include:</p>
<ul>
<li>	\section{Name}</li>
<li>	\subsection{Name}</li>
<li>	\subsubsection{Name}</li>
<li>	\paragraph{Name}</li>
</ul>
<p>To insert an unnumbered section, use the command \section*{Name}. The section numbering will continue as normal with the next section, subsection, etc.</p>
<p>The \paragraph{} command doesn&#8217;t need to be included unless you want to insert a heading for a paragraph. The image below shows the different structure commands in use:</p>
<p><img src="http://generaldisarray.files.wordpress.com/2006/04/sections-1.png?w=290&h=236" alt="Sections-1" border="1" height="236" hspace="4" vspace="4" width="290" /></p>
<p><em>Environments</em></p>
<p>Environments are special blocks of text. For example, the <em>itemize</em> and <em>enumerate</em> environments create bulleted and numbered lists, respectively. The following markup:</p>
<blockquote><p>\begin{itemize}<br />
\item First thing<br />
\item Second thing<br />
\item Third thing<br />
\end{itemize}</p>
<p>\begin{enumerate}<br />
\item First numbered thing<br />
\item Second numbered thing<br />
\end{enumerate}</p></blockquote>
<p>Would produce a bulleted list followed by a numbered list.</p>
<p>Note that environments always begin with \begin{environmentname} and end with \end{environmentname}. They can be nested, so one item of a bulleted list might contain another bulleted list, or a numbered list, etc.</p>
<p>Other frequently used environments include:</p>
<ul>
<li>	Quote: \begin{quote}&#8230;\end{quote} creates a section of indented, quoted text</li>
<li>	Verbatim: \begin{verbatim} &#8230; \end{verbatim} is similar to <em>pre</em> in HTML. In the verbatim environment, text is printed in a monospace font and special characters are ignored. Verbatim is useful for typing code tips</li>
<li>	Description: \begin{description} \item[First item] text \end{description} creates a list or items with bolded names and hanging-indented text after the item name</li>
</ul>
<p><em>Modifying text styles</em></p>
<p>The basic idea behind LaTeX is to absolve the author of formatting duties. Nevertheless, it&#8217;s still occasionally necessary to manually format certain text styles.</p>
<ul>
<li>	To insert bold text, use \textbf{text here}</li>
<li>	To insert italic text, use \emph{text here}</li>
<li>	To insert monospace text, use \texttt{text here} (the tt stands for teletype)</li>
<li>	To use verbatim text within a sentence, use \verb|your text here|. Note that any delimiter can be used, for example \verb+your text here+ will produce the same results</li>
</ul>
<p><strong>Packages</strong></p>
<p>Packages extend LaTeX&#8217;s functionality. Package installation essentially consists of two steps:</p>
<ol>
<li>	Running LaTeX on the .ins file to produce .sty or .cls files</li>
<li>	Copying the newly created files to an appropriate directory and updating the LaTeX database</li>
</ol>
<p>However, there are exceptions. The filetypes .sty and .cls stand for style and class, respectively. If a package does not come as a .ins file, but rather a sty or cls file, it does not need to be processed with LaTeX, and you can skip directly to step two. Also, running LaTeX on a .ins file usually produces a .dtx file. This file can be processed with LaTeX to create a manual for the package.<br />
Note: To process a package file (ins or dtx) with LaTeX, just open that file with your frontend and process it like you would a normal tex file.<br />
<strong><br />
OS X. </strong>To install a new package on your Mac using gwTeX, process the files as described above, and move the sty, cls and other files to ~/Library/texmf. If this directory does not exist, create it.</p>
<p><strong>Windows. </strong>The easiest way to install a package on a PC using MikTeX is to use the MikTeX package manager, which is available through the Start Menu. Just open the package manager, select a mirror, and navigate to the package that you want to install. MikTeX will take care of the rest. Another nice feature of MikTeX is that if you are processing a .tex file that requires a package that isn&#8217;t installed on your machine, it will prompt you to download it.</p>
<p>Next, I discuss two popular packages: graphicx and geometry. These packages are already installed with gwTeX and MikTeX, so there is no need to download and install them.<br />
<em>The graphicx package</em></p>
<p>The graphicx package allows you to insert images into a LaTeX document. To use it, first use the command \usepackage{graphicx} in your document preamble. Then, to insert a graphic, use the command:</p>
<blockquote><p>\includegraphics[options]{filename.png}</p></blockquote>
<p>graphicx supports many filetypes, including PDF, PNG and JPG. The options include:</p>
<ul>
<li>	width=Xin</li>
<li>	height=Xin</li>
<li>	scale=X (where x is between 0 and 1)</li>
</ul>
<p><em>The geometry package</em></p>
<p>While formatting documents using LaTeX is easy, changing those default formats can be fairly difficult. The geometry package can make changing certain aspects of your document, including the margins, much easier. To change the margins to 1&#8243; all around, for example, use</p>
<blockquote><p>\usepackage[margin=1in]{geometry}</p></blockquote>
<p><em>Other packages</em></p>
<p>For just about every modification that you might want to make to a standard LaTeX document, there is a premade package to help you do so. To learn more about the packages described, or to download new packages, visit the Comprehensive TeX Archive Network (<a href="http://www.ctan.org/">CTAN</a>).</p>
<p><strong>Figures and tables</strong></p>
<p>Figures and tables are LaTeX environments, however they have special attributes, such as the \caption{} command, which gives tables and figures names. They are called float elements, because their position in the final compiled document depends on LaTeX&#8217;s style algorithm.</p>
<p><em>Figures</em></p>
<p>To insert a figure, use</p>
<blockquote><p>\begin{figure}[hbtp]<br />
\caption{Figure name}<br />
\begin{center}<br />
\includegraphics{filename.pdf}<br />
\end{center}<br />
\label{your-reference-key}<br />
\end{figure}</p></blockquote>
<p>In the above markup,</p>
<ul>
<li>	\begin{figure} simply tells LaTeX that there is a figure environment</li>
<li>	[hbtp] determines how LaTeX will place the figure (here (h), bottom (b), top(t), page(p)). LaTeX will first attempt to insert the figure at its insertion point in the tex file. If this is not possible due to space or other aesthetic considerations, it will try to place it at the bottom of the page, then at the top of the page, then on a special page reserved just for float elements. The order in which h,b,t and p are specified determines where LaTeX tries to place the float first. To force the graphic to appear in its original place, for example, you could put \begin{figure}[h], omitting b, p and t</li>
<li>	\caption{Figure name} specifies the name of the figure</li>
<li>	\begin{center} simply tells LaTeX to center the figure on the page. Don&#8217;t forget to end the centering environment before you end the figure environment</li>
<li>	\includegraphics{&#8230;} specifies the location of the file that is being inserted as a figure</li>
<li>	\label{your-reference-key} is a label that you can use to refer to the figure in the text. For example, if you label your figure &#8220;fig1&#8243; then you can reference it later on by typing \ref{fig1}</li>
</ul>
<p><em>Tables</em></p>
<p>A floated table in LaTeX consists of two environments: table, the actual floated entity in the text, and tabular, the data contained in the table. For example,</p>
<blockquote><p>\begin{table}[hbtp]<br />
\caption{This table is an example}<br />
\begin{center}<br />
\begin{tabular}{c|cc}<br />
First row, first column &#38; First row second column &#38; First row, third column \\ \hline<br />
Second row, first column &#38; Second row, second column &#38; Second row, third column \\<br />
Third row, first column &#38; Third row, second column &#38; Third row, third column \\<br />
\multicolumn{3}{c}{&#8230;}<br />
\end{tabular}<br />
\end{center}<br />
\label{exampletable}<br />
\end{table}</p></blockquote>
<p>would produce</p>
<p><img src="http://generaldisarray.files.wordpress.com/2006/04/table.png?w=390&h=91" alt="Table" border="1" height="91" hspace="4" vspace="4" width="390" /></p>
<p>Everything except the code between \begin{tabular} &#8230; \end{tabular} is the same as the figure environment described above. Here&#8217; s how the tabular environment works:</p>
<ul>
<li>	\begin{tabular}{c|cc} tells LaTeX to start a new tabular environment with three centered columns. The bar (&#8221;|&#8221;) after the first &#8220;c&#8221;, tells LaTeX that the first column has a vertical border. Using {lcrr} would create for columns, the first left aligned, the second centered, and the third and fourth right aligned</li>
<li>	Table cells are separated by &#8220;&#38;&#8221; and table rows are separated by &#8220;\\&#8221;</li>
<li>	\hline creates a horizontal line</li>
<li>	\multicolumn{3}{c}{Text here} creates a row that spans all three columns, is centered, and contains the text &#8220;Text here&#8221;</li>
</ul>
<p>There are more complicated options for creating and inserting tables, but the rules above cover about 90% of all table needs.[2]</p>
<p><strong>Annotations</strong></p>
<p>LaTeX is capable of automatically creating important annotations, such as footnotes, cross references, tables of contents and bibliographies. Note that, since the following commands require LaTeX to automatically number text elements, LaTeX must be run on your document twice for proper display.<br />
<em><br />
Footnotes</em></p>
<p>To insert a footnote, simply type \footnote{Footnote text here}. LaTeX will automatically insert the footnote number and text.[3]<br />
<em><br />
Cross references</em></p>
<p>To reference a labeled Table or Figure, use \ref{your-reference-key} where &#8220;your-reference-key&#8221; is the argument to the \label{your-reference-key} command in the table or figure environments.<br />
<em><br />
Table of contents</em></p>
<p>To insert a table of contents, simply put \tableofcontents at the beginning of your document. (You must run LaTeX twice to get the table of contents and references to work correctly.)<br />
<em>Bibliography</em></p>
<p>To create a bibliography, insert a list of the citations at the end of your document, using the form:</p>
<blockquote><p>\begin{thebibliography}{99}<br />
&#8230;.<br />
\bibitem{key1} Disarray, General. 2006. &#8220;\LaTeX{}: from beginner to \TeX pert.&#8221; \emph{General Disarray Blog}. Available online at \textt{http://generaldisarray.wordpress.com}. &#8230;.<br />
\end{thebibliography}</p></blockquote>
<p>You must manually type the bibliography entries. To refer to an item within the text, use \cite{key}. The {99} tells LaTeX that there a maximum of 99 entries in the bibliography. LaTeX needs to know this so it can correctly justify the bibliography entries with their numbering on the left.</p>
<p>A more efficient way to create bibliographies is to use BibTeX, which allows you to maintain a database of citations and call them as needed in your bibliography. There are also graphical tools for managing your reference databases, so you don&#8217;t have to hard code the citations, and can easily change them to different formats. However, BibTeX is too complicated to explain in this document. For an introduction, see <a href="http://dataninja.wordpress.com/2006/01/01/introduction-to-bibtex/">this</a> page.</p>
<p><strong>Inserting mathematics</strong></p>
<p>There are several ways to include mathematical notation in LaTeX documents. The most common are inline notation and the displaymath environment.</p>
<p><em>Inline</em></p>
<p>To include some mathematical notation within a paragraph, without offsetting from the rest of the text, enclose the notation between dollar signs. For example, $a^2+b^2=c^2$ is our favorite theorem.</p>
<p><em>Display math</em></p>
<p>The displaymath environment lets you offset some mathematical notation from the rest of the document. The code</p>
<blockquote><p>\[<br />
a^2+b^2=c^2<br />
\]</p></blockquote>
<p>would create a paragraph break and center the equation on the page.</p>
<p><em>Equation</em></p>
<p>The equation environment can be used to place numbered equations in the text. For example,</p>
<blockquote><p>\begin{equation}<br />
a^2+b^2=c^2<br />
\label{pythag}<br />
\end{equation}</p></blockquote>
<p>would offset the equation just like the displaymath version did, but it would have a number in parenthesis on the right, and you would by able to call it in the text by typing, for example,  &#8220;as we see in equation \ref{pythag}&#8230;&#8221;</p>
<p><em>Equation array</em></p>
<p>The eqnarray environment allows you to align parts of equations at the equal sign. For example,</p>
<blockquote><p>\begin{eqnarray}<br />
a&#38;=&#38;b+c\\<br />
d&#38;=&#38;e+f<br />
\end{eqnarray}</p></blockquote>
<p>would produce</p>
<p><img src="http://generaldisarray.files.wordpress.com/2006/04/array.png?w=245&h=49" alt="Array" border="1" height="49" hspace="4" vspace="4" width="245" /></p>
<p><em>Mathematical notation</em></p>
<p>There are many commands for inserting specific mathematical operators and symbols into equations. They can all be found online, and as always, use Google if you can&#8217;t figure out a specific command. The following are some common operators and commands:</p>
<p>Greek letters: Generally, just use the spelled-out letter. For example, \beta, \gamma and \epsilon. For upper case, use \Gamma.</p>
<p>Misc symbols: \leftarrow (use \Leftarrow for a double arrow), \rightarrow, etc., \leftrightarrow (&lt;==&gt;, if and only if), &lt;, &gt;, \leq (less than or equal to), \geq (greater than or equal to)</p>
<p>Indexing and exponents: Subscripts are denoted using the underscore (x_i) and superscripts use the &#8220;^&#8221; key (a^2). To type &#8220;i sub j comma k&#8221; you need to write &#8220;i_{j,k}&#8221; to tell LaTeX that the &#8220;j,k&#8221; comprises the entire subscript. The bracket characters are generic grouping operators in LaTeX, and they won&#8217;t appear in your document.</p>
<p>Some operators: \sum{1/x} or \sum_{i=1}^{\infty}{x_i}, \prod (the product), \coprod (the coproduct), \sin, \log, \max, etc.<em><br />
</em><br />
Decorations: \hat{x}, \tilde{x} , \overline{x}, \underline{x}, \overrightarrow{x}, \overbrace{x}, \underbrace{x}, \vec{x}</p>
<p>Fractions: \frac{a}{b} puts a over b.</p>
<p>Brackets: For brackets use &#8220;(&#8221;, &#8220;[" or \lbrace and \rbrace for "{" and "}". However, if the notation that your typing is not inline, use \left( &lt;math here&gt; \right) or \left\lbrace &lt;math here&gt; \right\rbrace.</p>
<p>Matrices: To insert a matrix in either the display math or equation environments, use</p>
<blockquote><p>\left[ \begin{array}{ccc}<br />
a &#38; b &#38; c \\<br />
d &#38; e &#38; f<br />
\end{array}\right]</p></blockquote>
<p>Note that the array environment is similar to the tabular environment described above. The code shown above would produce:</p>
<p><img src="http://generaldisarray.files.wordpress.com/2006/04/matrix.png?w=94&h=49" alt="Matrix" border="1" height="49" hspace="4" vspace="4" width="94" /></p>
<p>For help with other symbols and operators, see <a href="http://www.fi.uib.no/Fysisk/Teori/KURS/WRK/TeX/symALL.html">this page</a>.</p>
<p><strong>For further reference</strong></p>
<p>The instructions above cover many of the basic functions of LaTeX, but there are many more. A good, thorough introduction is <a href="http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf">The Not-So-Short Introduction to LaTeX</a> (pdf).</p>
<p><strong>Download<br />
</strong><br />
This tutorial is available as a <a href="http://disinterested.googlepages.com/TeXpert.pdf">PDF file</a>.<br />
<strong><br />
Notes</strong></p>
<p>[1] Although commercial implementations of LaTeX, such as Scientific Word, do offer a graphical interface, and <a href="http://www.lyx.org/">LyX</a> is an open-source, LaTeX-based what-you-see-is-what-you-mean typesetting system that essentially uses a graphical interface to apply LaTeX markup to text.<br />
[2] OpenOffice users can use Calc2LaTeX to convert between Calc spreadsheets and LaTeX tables. MS Office users can try <a href="http://www.jam-software.com/freeware/index.shtml">Excel2LaTeX</a>, which does the same thing, using Excel spreadsheets. Both utilities are cross-platform.<br />
[3] To create an &#8220;attribution&#8221; footnote, where the first footnote is marked by an asterisk, use the \thanks{text here} command.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=8&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/latex-from-beginner-to-texpert/feed/</wfw:commentRss>
	
		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/TestDocCropped-tm.jpg" medium="image">
			<media:title type="html">Testdoccropped</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/sections-1.png" medium="image">
			<media:title type="html">Sections-1</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/table.png" medium="image">
			<media:title type="html">Table</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/array.png" medium="image">
			<media:title type="html">Array</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/matrix.png" medium="image">
			<media:title type="html">Matrix</media:title>
		</media:content>
	</item>
		<item>
		<title>Ten things every Microsoft Word user should know</title>
		<link>http://howtos.wordpress.com/2006/07/23/ten-things-every-microsoft-word-user-should-know/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/ten-things-every-microsoft-word-user-should-know/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:16:44 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/23/ten-things-every-microsoft-word-user-should-know/</guid>
		<description><![CDATA[[Update: You can download this tutorial as a pdf file.]
Most people use word processors like MS Word as they would a typewriter &#8212; manually making section headers bold and centered, inserting hard breaks between paragraphs, etc. This formatting method is fine for short documents, but for long documents that include multiple sections, figures, tables and [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>[Update: You can <a href="http://disinterested.googlepages.com/10ThingsWord.pdf">download</a> this tutorial as a pdf file.]</p>
<p>Most people use word processors like MS Word as they would a typewriter &#8212; manually making section headers bold and centered, inserting hard breaks between paragraphs, etc. This formatting method is fine for short documents, but for long documents that include multiple sections, figures, tables and other elements that need to be styled consistently throughout the text, it pays to learn Word&#8217;s advanced features.</p>
<p>These features are easy-to-use, but poorly documented and, in my experience, underused &#8212; even by professionals that frequently write long documents. This tutorial presents ten tips to help you start using Word the smart way.</p>
<p><strong>1. Styles</strong></p>
<p>The first five tips introduce and explain the use of styles in Word. Styles are user-defined formats that control the look and feel of paragraphs, characters, tables and lists. By creating styles and assigning them to the elements of your document, you can more easily control your document&#8217;s formatting.</p>
<p>In Windows, the Styles pane can be turned on by clicking on the &#8220;AA&#8221; button on the <em>Formatting </em>toolbar:</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/StylesWin1.png" title="StylesWin1.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/StylesWin1.png" alt="StylesWin1.png" align="middle" /></a><br />
On the Mac, the Styles pane is one of the modules on the <em>Formatting </em>palette. On either OS, the pane looks something like this:</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/Mac1.png" title="Mac1.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/Mac1.png" alt="Mac1.png" /></a></p>
<p>The functions of the different parts of the pane are obvious. Current style of selected text shows either the style currently in use, or a summary of the formatting if the selected text doesn&#8217;t use a style. The options under <em>Pick style to apply</em> are either default or user-defined styles. Using the <em>List</em> dropdown, you can change which styles are shown in the <em>Pick style</em> list.</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/Mac2.png" title="Mac2.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/Mac2.png" alt="Mac2.png" /></a></p>
<p>Clicking on a style name applies that style to the selected text. Clicking on the <em>Style type</em> icon allows you to modify the style. The <em>Modify Style</em> dialog allows you to change every aspect of that style (font, paragraph formatting, and more, depending on the type of style selected).</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/Mac3.png" title="Mac3.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/Mac3.png" alt="Mac3.png" /></a></p>
<p>For example, the next two images show the same text. The first has indented paragraphs; the second has unindented paragraphs with a 12pt space between them. Rather than creating this formatting manually, the entire page was changed from the 1st to the 2nd style by editing the <em>Normal </em>style from <em>Paragraph: Indentation: First Line: .5in</em> to no paragraph indentation, but <em>Paragraph: Spacing: After: 12pt</em>. Note that on the second example, while it looks like there is a blank line between the paragraphs, there isn&#8217;t &#8212; the cursor automatically goes from one paragraph to another, leaving a blank space that is the same height as a line of text between.</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacIndent.png" title="MacIndent.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacIndent.png" alt="MacIndent.png" width="400" /></a></p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacSkip.png" title="MacSkip.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacSkip.png" alt="MacSkip.png" width="400" /></a></p>
<p>Okay, that introduces styles. Now on to the good stuff.<br />
<strong><br />
2. Header styles and the Table of Contents</strong></p>
<p>If you wanted the first-level header for your document to be Times New Roman, 16pt, bold and centered, you could easily create a new style with that formatting. However, Word has 9 built-in heading styles. They may not look the way you want them to out of the box, but you can easily change them to reflect your preferred formatting.</p>
<p>Why use these styles? If you use the built-in header styles, Word will recognize the <em>structure</em> of your document. This means that Word will know that you are typing a header, a subheader, a subsubheader, etc. It also means that, when you&#8217;re done typing your document, you can create an automatic table of contents by selecting <em>Insert &gt; Field &gt; Index and Tables &gt; TOC</em>. You can even have Word automatically number your headings by editing the numbering styles from the <em>Modify Styles</em> dialog.</p>
<p><strong>3. Table styles</strong></p>
<p>If you produce documents that contain many tables, you&#8217;re probably familiar with the tedium of formatting table after table after table. Using table styles can make this process substantially easier.</p>
<p>To create a default table style, modify the <em>Table Grid</em> style. When you edit a table style, you can define separate styles for the header row, even and odd rows, the left and right columns, etc. So if you want the header row to be bold with a double border, and the rest of the table to be normally weighted with no border, you can edit the <em>Table Grid</em> style so that any table inserted into the document will automatically have that form.</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacTable.png" title="MacTable.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacTable.png" alt="MacTable.png" /></a></p>
<p>You can make additional modifications to the table after the general <em>Table Grid</em> style has been applied.<br />
<strong><br />
4. Character styles</strong></p>
<p>Say, for example, you are creating a document that uses code examples (like HTML). You may want to set any code examples in a monotype font when referencing them within a sentence. The old-fashioned way to do this is to select <em>Font &gt; Courier New</em>, type your code, then revert back to the old font. This can become tedious, and if you wanted to change the code tips to another font, you&#8217;d have to manually edit every instance of Courier New in your document.</p>
<p>Instead, you could create a new character style by selecting <em>New Style</em> from the <em>Formatting</em> pane and setting <em>Style type</em> to <em>character</em>. Change the font to Courier and now, anytime you want to refer to a piece of code within a paragraph, you can type the code fragment, select it, and select the style that you just created. Only the selected text will be changed.</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacCharacter.png" title="MacCharacter.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacCharacter.png" alt="MacCharacter.png" /></a></p>
<p>The difference between a character style and a paragraph style is that choosing a character style only affects the selected text, while  choosing a paragraph style changes all of the text in the paragraph containing the selection to that style.</p>
<p><strong>5.</strong> <strong>Line and page breaks</strong></p>
<p>Have you ever inserted a table or a graphic into a Word document only to find that a new page starts right after the heading but before the table or graphic? The natural thing to do in this situation is to insert an extra carriage return or a page break right before the heading to ensure that both the heading and the table/graphic appear on the same page, right? But what happens when, later on, you&#8217;re making changes and add a new paragraph before the table heading? Now there is too much space between the table header and the paragraph that precedes it. And before you can finalize your document, you have to visually inspect and manually edit every page of your document to make sure that there are no other instances of the same problem.</p>
<p>There is an easy, styles-based solution to this problem. First, define a new style for table/graphic headers (or use the automatic style, described in part 6). Then, in the <em>Modify Style</em> dialog, select <em>Format &gt; Paragraph</em> and click on the <em>Line and Page Breaks</em> tab. Check the box marked <em>keep with next</em>. Now, if Word encounters a situation where the paragraph/table/image/etc. after the header is going to start on a new page, it will make sure that the header is also on the new page. This also works for section headers.</p>
<p>Also, in the <em>Line and Page Breaks</em> tab, note the <em>Page break before </em>option. Selecting this option will ensure that elements of the current style will begin a new page. This is useful if, for example, you want new Heading 1 elements to always start a new page.</p>
<p><strong>6. Captions and cross references</strong></p>
<p>Once again, imagine that you are creating a document with many tables. The low-tech way to number your tables is to hard-code the table numbers into their headers (&#8221;Table 1: Blah&#8230;&#8221;) and refer to tables using those manually assigned numbers (&#8221;Table 1 shows that&#8230;&#8221;). But what happens if, halfway through your document, you realize that you need a new table between Table 14 and Table 15. Now you have to renumber every table after Table 15. This could take a long time if you have, say, 50 tables, and the likelihood that you&#8217;ll miss an in-text reference is fairly high.</p>
<p>Word has an automatic table/figure numbering feature, however. Instead of manually creating a table header with a number, you could select the entire table, right click, and choose <em>Caption</em>. This will open a dialog that allows you to automatically insert a &#8220;Label-Number&#8221; caption, with control over the numbering format (&#8221;Table 1.3.4,&#8221; or &#8220;Figure 5&#8243;). The caption will automatically have Word&#8217;s built Caption style, which you can edit using the standard <em>Modify Style</em> dialog from the <em>Styles </em>pane. You can also choose whether the caption will be placed above or below the table or figure.</p>
<p>But what about those in-text references to tables and figures. Easy. Choose I<em>nsert &gt; Cross reference</em> and select the table or figure that you want to refer to. Word will automatically insert the text &#8220;Table X&#8221; (or &#8220;Figure X&#8221;) where X is the automatically generated number of the table or figure. You can even have Word insert the entire caption, if desired. The cross reference feature also works for numbered items, footnotes, endnotes, etc., and can save a lot of time for writers creating long documents.</p>
<p>Tip: Sometimes the fields that display the automatic references become incorrect when new tables, figures, footnotes, etc. are inserted. Although the document will print correctly, the on-screen display will be off. To force Word to update all of these cross-reference fields, click on <em>Print Preview</em>, then close preview to view your document.</p>
<p><strong>7. Turn off auto formatting</strong></p>
<p>A common complaint about Word is its tendency to automatically create numbered and bulleted lists. Sometimes users want to manually make a numbered list, or begin a sentence with the &#8220;-&#8221; character without beginning a new bulleted list that uses that character. Such formatting is very easy to turn off. Select <em>Tools &gt; AutoCorrect &gt; AutoFormat  </em>to turn off/on automatic lists, smart quotes, character-based formatting, fractions, etc.</p>
<p><strong>8. Character-based formatting</strong></p>
<p>But before you go rushing to the Tools menu to turn off all of the automatic formatting, consider taking a moment to learn how such formatting works. If you understand it, it could save you a lot of time. For example, by typing text surrounded by asterisks (*like this*), you can have Word make your text bold. Or, by surrounding text with the underscore character, you can have work make the selected text italic. When you don&#8217;t have to take your fingers off the keyboard to apply formatting changes, you can work quite a bit faster.</p>
<p><strong>9. Continue previous list</strong></p>
<p>The main reason why people want to turn off automatic numbered lists is to insert indented or other text between list items:</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacList.png" title="MacList.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacList.png" alt="MacList.png" /></a></p>
<p>This can be difficult using the automatic numbered (or bulleted) list feature because Word&#8217;s default behavior is to start item number 9 after you hit return, or to begin item 8a after you hit tab. However, by creating a list using the automatic numbering function, turning the list off after the desired list item, inserting whatever needs to go before the next item, then inserting a new list, and choosing <em>Format &gt; Bullets and numbering</em>:</p>
<p><a href="http://generaldisarray.files.wordpress.com/2006/04/MacContinue.png" title="MacContinue.png" class="imagelink"><img src="http://generaldisarray.files.wordpress.com/2006/04/MacContinue.png" alt="MacContinue.png" width="400" /></a></p>
<p>and selecting  <em>Continue previous list</em>, you can force the list to start at the number of the item that you left off, +1.</p>
<p><strong>10. Keyboard shortcuts</strong></p>
<p>Finally, a few keyboard shortcuts that might save you some time:</p>
<ul>
<li>	Cmd+T: Hanging indent (hit Cmd+T again to increase the hanging indent; hit Cmd+Shift+T to decrease/remove the hanging indent)</li>
<li>	Cmd+=: Subscript (hit Cmd+= again to revert to the normal font)</li>
<li>	Cmd+Shift+=: Superscript</li>
<li>	Cmd+Shift+L: Start a bulleted list (this can also be accomplished by starting the sentence with an asterisk, assuming that this hasn&#8217;t been turned off using the AutoCorrect menu)</li>
</ul>
<p>Note: Replace Cmd with Cntrl for Windows.</p>
<p><strong>Notes<br />
</strong></p>
<ul>
<li>Most of these screenshots show Word running on Mac OS X, but the interfaces are very similar for recent versions of Word for Windows.</li>
<li>	I know, this is long, but it had to be written. I&#8217;m tired of having to collaborate with other authors that are still in the word processing Stone Age. These tips take about 5 minutes to learn, and they&#8217;ll save hours over the years.</li>
<li>	Word is far from the only system that offers these features. Similar functionality can be found in most word processing systems, including <a href="http://www.openoffice.org">OpenOffice.org</a>. If you really like logical markup and automatic formatting, consider learning <a href="http://tug.org">LaTeX</a>. I chose to write about word because (a) Word is the most common word-processing application and (b) it&#8217;s actually a pretty polished product.</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=7&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/ten-things-every-microsoft-word-user-should-know/feed/</wfw:commentRss>
	
		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/StylesWin1.png" medium="image">
			<media:title type="html">StylesWin1.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/Mac1.png" medium="image">
			<media:title type="html">Mac1.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/Mac2.png" medium="image">
			<media:title type="html">Mac2.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/Mac3.png" medium="image">
			<media:title type="html">Mac3.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacIndent.png" medium="image">
			<media:title type="html">MacIndent.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacSkip.png" medium="image">
			<media:title type="html">MacSkip.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacTable.png" medium="image">
			<media:title type="html">MacTable.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacCharacter.png" medium="image">
			<media:title type="html">MacCharacter.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacList.png" medium="image">
			<media:title type="html">MacList.png</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/04/MacContinue.png" medium="image">
			<media:title type="html">MacContinue.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with i-Packages locally</title>
		<link>http://howtos.wordpress.com/2006/07/23/working-with-i-packages-locally/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/working-with-i-packages-locally/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:16:32 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/24/working-with-i-packages-locally/</guid>
		<description><![CDATA[i-Packages are compressed sets of files and instructions used by i-Installer, the open-source package management utility used by many to install, update and remove gwTeX (the standard LaTeX distribution for OS X) and related programs, such as fondu, ghostscript, etc. It&#8217;s a good system, since the files that must be downloaded are very large, and [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>i-Packages are compressed sets of files and instructions used by <a href="http://ii2.sourceforge.net/">i-Installer</a>, the open-source package management utility used by many to install, update and remove gwTeX (the standard LaTeX distribution for OS X) and related programs, such as fondu, ghostscript, etc. It&#8217;s a good system, since the files that must be downloaded are very large, and a nontrivial amount of configuration is necessary to get things working correctly.</p>
<p>But something always bothered me about i-Installer: it mostly requires an internet connection for it to work. Obviously you need the connection in order to download the software, but for removal too? What if, when WWIII starts and all of the ISPs go dark, I decide I don&#8217;t want LaTeX on my system anymore?</p>
<p>I finally figured out how to work around this annoyance (at least for most i-Packages). Normally when you install an i-Package, a few basic files are installed on your computer, and the rest are left on the server, since they&#8217;re not all necessary. This is efficient: you spend less time downloading, and the mirrors spend less time serving up data that you don&#8217;t really need. But by opening i-Installer, selecting an i-Directory, then opening the desired i-Package, you can choose to download the entire archive, including the configuration and installation instructions.</p>
<p>To do this, select <em>Make Fat</em> from the <em>i-Package menu</em>:</p>
<p><img src="http://generaldisarray.files.wordpress.com/2006/07/makefat.jpg?w=453&h=385" height="385" width="453" border="1" hspace="4" vspace="4" alt="Makefat" /></p>
<p>Then the entire i-Package will be downloaded[*]. If you want to modify the package, even with no internet connection, you can double click on the ii2 file (the i-Package itself) which will open i-Installer and allow you to perform any of the actions for which scripts have been written for that package.</p>
<p>The reason why I think this is important is that, because of their Linux roots, most of the LaTeX-related programs for OS X are installed directly in the BSD subsystem (/usr/local, to be exact), so uninstalling them is most definitely <em>not</em> a matter of dragging the application to the trash.</p>
<p>Anyway, with this new-found knowledge, I have become a born-again gwTeX/TeXShop user[**].</p>
<p>[*] i-Packages are stored in <em>~/Documents/i-Packages</em>.<br />
[**] As an aside, I have also discovered TeXShell, a frontend for gwTeX and teTeX on OS X that works just like CMacTeX &#8212; drag files onto the icon and they are processed by LaTeX (or send them to TeXShell from within TextWrangler using an AppleScript). Very convenient.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=14&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/working-with-i-packages-locally/feed/</wfw:commentRss>
	
		<media:content url="http://generaldisarray.files.wordpress.com/2006/07/makefat.jpg" medium="image">
			<media:title type="html">Makefat</media:title>
		</media:content>
	</item>
		<item>
		<title>OS X tip: Use file comments</title>
		<link>http://howtos.wordpress.com/2006/07/23/os-x-tip-use-file-comments/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/os-x-tip-use-file-comments/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:16:08 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/24/os-x-tip-use-file-comments/</guid>
		<description><![CDATA[This is my first real contribution to the GTD world, hope it helps some people out. I frequently work with directories containing hundreds of files. For example, I might have a directory with ten consecutive versions of the same doc file, all with very similar names, as well as ten consecutive versions of ten different [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is my first real contribution to the <a href="http://en.wikipedia.org/wiki/Gtd">GTD</a> world, hope it helps some people out. I frequently work with directories containing hundreds of files. For example, I might have a directory with ten consecutive versions of the same doc file, all with very similar names, as well as ten consecutive versions of ten different spreadsheets. Sometimes it can be difficult to keep all the files straight &#8212; which one is the current one? Which has that <em>one</em> piece of critical information?</p>
<p>To make matters worse, I often leave a big project for a month or more before coming back to work on it again. While I may have had an accurate mental map of all of the files when I was working with them actively, after a long break, it can be almost impossible to find a particular version of a particular document without opening each version and scanning it. And that is exactly the kind of mind-numbing work that leads me to procrastinate.</p>
<p>Enter file comments. On OS X, every file in the finder can have comments appended to it by accessing <em>File &gt; Get info</em>, or by hitting <em>command+i</em>. This is what the dialog looks like:<br />
<a href="http://generaldisarray.files.wordpress.com/2006/07/info.jpg"><img src="http://generaldisarray.files.wordpress.com/2006/07/info-tm.jpg?w=200&h=350" height="350" width="200" border="1" hspace="4" vspace="4" alt="Info" /></a><br />
Notes written in the <em>Comments</em> field can be viewed from within Finder by:</p>
<ol>
<li>Setting the Finder to <em>View as list</em> (shortcut: <em>command+2</em>)</li>
<li>Selecting <em>View &gt; Show view options</em> (shortcut: <em>command+j</em>) and checking the <em>Comments</em> box</li>
</ol>
<p>Once the view is set properly, you will see something like this:<br />
<a href="http://generaldisarray.files.wordpress.com/2006/07/comments.jpg"><img src="http://generaldisarray.files.wordpress.com/2006/07/comments-tm.jpg?w=400&h=164" height="164" width="400" border="1" hspace="4" vspace="4" alt="Comments" /></a><br />
The  comments are in the far-right column. They can be used to quickly identify the contents or status of a particular file or folder (or for a million other things, I&#8217;m sure).</p>
<p>Of course, you have to remember to keep the comments current, but I can&#8217;t help you (or myself) with that.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=13&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/os-x-tip-use-file-comments/feed/</wfw:commentRss>
	
		<media:content url="http://generaldisarray.files.wordpress.com/2006/07/info-tm.jpg" medium="image">
			<media:title type="html">Info</media:title>
		</media:content>

		<media:content url="http://generaldisarray.files.wordpress.com/2006/07/comments-tm.jpg" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
	</item>
		<item>
		<title>Making a disk image</title>
		<link>http://howtos.wordpress.com/2006/07/23/making-a-disk-image/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/making-a-disk-image/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:15:48 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/24/making-a-disk-image/</guid>
		<description><![CDATA[After reinstalling my most beloved applications on my iBook, I decided to make a CD containing them all in case I ever needed to load them all at once again. Some of the applications are large, so they needed to be compressed in order to fit on one CD. In the process I learned that [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After reinstalling my most beloved applications on my iBook, I decided to make a CD containing them all in case I ever needed to load them all at once again. Some of the applications are large, so they needed to be compressed in order to fit on one CD. In the process I learned that zipping or tarring and then gzipping certain OS X binary files renders them unreadable by OS X (I think this only applies to Carbon applications, but I&#8217;m not sure what the underlying reason is).</p>
<p>So, in order to get everything on one disk, I had to create a new disk image, which I had never done before. Here&#8217;s the basic process:</p>
<ol>
<li>Copy them all to a folder</li>
<li>Open Disk Utility and create a new custom-sized disk image</li>
<li>Copy the entire folder to the disk image</li>
<li>Eject the disk image then zip the entire thing using DropCompress to get it to fit on one CD</li>
</ol>
<p>The last step was only necessary because I couldn&#8217;t fit all of my files onto a CD-sized disk image.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=12&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/making-a-disk-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cool OS X tip</title>
		<link>http://howtos.wordpress.com/2006/07/23/cool-os-x-tip/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/cool-os-x-tip/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:15:28 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/24/cool-os-x-tip/</guid>
		<description><![CDATA[If you copy a bunch of files in the Finder, the file names are stored in the clipboard as a text-based, carriage return-delimited list. Useful for programming &#8212; you can copy a bunch of files, fire up your text editor, and paste the file names right in.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you copy a bunch of files in the Finder, the file names are stored in the clipboard as a text-based, carriage return-delimited list. Useful for programming &#8212; you can copy a bunch of files, fire up your text editor, and paste the file names right in.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=11&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/cool-os-x-tip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free software toolkit</title>
		<link>http://howtos.wordpress.com/2006/07/23/free-software-toolkit/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/free-software-toolkit/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:15:18 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/24/free-software-toolkit/</guid>
		<description><![CDATA[Open-source or just plain free applications to cover 95% of your computing needs. For Mac OS X and Windows users. Disclaimer: These are the applications that I use and prefer, but alternatives exist.
Basics
Browser: Firefox
Office: NeoOffice (Mac), OpenOffice (Win)
Text editing: TextWrangler (Mac), Crimson Editor (Win)
HTML Editing: Nvu
Image Editing: Seashore (Mac), Gimp (Win)
FTP: Cyberduck (Mac), CoreFTP (Win)
Antivirus: [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Open-source or just plain free applications to cover 95% of your computing needs. For Mac OS X and Windows users. Disclaimer: These are the applications that I use and prefer, but alternatives exist.</p>
<p><strong>Basics</strong><br />
Browser: <a href="http://mozilla.com">Firefox</a><br />
Office: <a href="http://www.neooffice.org">NeoOffice</a> (Mac), <a href="http://www.openoffice.org">OpenOffice</a> (Win)<br />
Text editing: <a href="http://www.barebones.com/products/textwrangler/index.shtml">TextWrangler</a> (Mac), <a href="http://crimsoneditor.com">Crimson Editor</a> (Win)<br />
HTML Editing: <a href="http://www.nvu.com">Nvu</a><br />
Image Editing: <a href="http://seashore.sourceforge.net/">Seashore</a> (Mac), <a href="http://www.gimp.org/windows/">Gimp</a> (Win)<br />
FTP: <a href="http://cyberduck.ch">Cyberduck</a> (Mac), <a href="http://coreftp.com">CoreFTP</a> (Win)<br />
Antivirus: <a href="http://www.clamxav.com/">ClamXav</a> (Mac), <a href="http://www.avast.com/eng/free_software.html">Avast</a> (Win)<br />
Compression: <a href="http://homepage.mac.com/fahrenba/dropCompress/dropCompress.html">DropCompress</a> (Mac), <a href="http://7-zip.org/">7-Zip</a> (Win)</p>
<p><strong>OS-Specific</strong><br />
OS X system optimizer: <a href="http://www.macupdate.com/info.php/id/11582">OnyX</a><br />
OS X app and file launcher: <a href="http://quicksilver.blacktree.com/">Quicksilver</a><br />
Windows PDF creation: <a href="http://sourceforge.net/projects/pdfcreator/">PDF Creator</a><br />
Windows spyware remover: <a href="http://www.lavasoftusa.com/software/adaware/">AdAware</a></p>
<p><strong>Academic and research</strong><br />
Statistics:  <a href="http://www.r-project.org">R<br />
</a>LaTeX engine and frontend: <a href="http://tug.org/mactex/">MacTeX</a> (Mac), <a href="http://tug.org/protext/">ProTeXt</a> (Win)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=10&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/free-software-toolkit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nifty OS X apps list</title>
		<link>http://howtos.wordpress.com/2006/07/23/nifty-os-x-apps-list/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/nifty-os-x-apps-list/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:15:00 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/23/nifty-os-x-apps-list/</guid>
		<description><![CDATA[These are free applications that I have tried and liked. This list is updated as needed.
Last update: 19 June 06
Key:
X11: requires Apple&#8217;s X11
OSS: Open Source Software
Ltd: Limited version of a commercial app
Word processors and text editors

	NeoOffice - Native OS X version of OpenOffice.org (word   processor, spreadsheet program, drawing program, presentation program and  [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>These are free applications that I have tried and liked. This list is updated as needed.</p>
<p><em>Last update: 19 June 06</em></p>
<p><strong>Key:</strong></p>
<p>X11: requires <a href="http://www.apple.com/downloads/macosx/apple/x11formacosx.html">Apple&#8217;s X11</a><br />
OSS: <a href="http://generaldisarray.wordpress.com/2006/02/02/computer-geekiness-and-open-source/">Open Source Software</a><br />
Ltd: Limited version of a commercial app</p>
<p><strong>Word processors and text editors</strong></p>
<ul>
<li>	<a href="http://www.neooffice.org">NeoOffice</a> - Native OS X version of OpenOffice.org (word   processor, spreadsheet program, drawing program, presentation program and   equation editor) [OSS]</li>
<li>	<a href="http://porting.openoffice.org/mac/">OpenOffice.org</a> - OpenOffice.org for OS X (not a native   OS X application) [OSS, X11]</li>
<li>	<a href="http://www.flyingmeat.com/voodoopad/voodoopadlite.html">VooDooPad Lite</a> - A notepad application that supports multiple linked pages within a document and has outlining feautres. Exports to DOC and RTFD [Ltd]</li>
<li>	<a href="http://www.barebones.com/products/textwrangler/index.shtml">TextWrangler</a> - The lite version of BBEdit, a very   advanced editor [Ltd]</li>
<li>	<a href="http://smultron.sourceforge.net/">Smultron</a> - A simple, powerful editor [OSS]</li>
<li>	<a href="http://aquamacs.org/">Aquamacs</a> - An Aqua version of the classic and extensible Emacs text editor [OSS]</li>
</ul>
<p><strong>Utilities</strong></p>
<ul>
<li>	<a href="http://www.clamxav.com/">ClamXav</a> - A free virus scanner [OSS]</li>
<li>	<a href="http://www.monkeybreadsoftware.info/Freeware/CombinePDFs.shtml">CominePDFs</a> - Merge pdf files into one large document [OSS]</li>
<li>	<a href="http://www.iconus.ch/fabien/pdflab/">PDFLab</a> - Merge and combine pdf files</li>
<li>	<a href="http://krugazor.free.fr/software/desinstaller/DesInstaller.php">DesInstaller</a> - Reads package receipts and removes every   file installed by a pkg file</li>
<li>	<a href="http://homepage.mac.com/fahrenba/dropCompress/dropCompress.html">DropCompress</a> - Drag and drop to zip or tar.gz files [OSS]</li>
<li>	<a href="http://www.yellowmug.com/yemuzip/">YemuZip</a> - Create zip files</li>
<li>	<a href="http://unrarx.sourceforge.net/">UnRarX</a> - Rar extractor</li>
<li>	<a href="http://www.titanium.free.fr/pgs/english.html">OnyX</a> - An OS X system preferences adjustor and system   optimizer</li>
<li>	<a href="http://quicksilver.blacktree.com">Quicksilver</a> - An advanced file and application launcher   with many plugins</li>
<li>	<a href="http://www.petermaurer.de/nasi.php?section=butler&amp;id=butlerabout">Butler</a> - A file, application, etc. launcher</li>
<li>	<a href="http://fink.sourceforge.net/">Fink</a> - Tools for installing Linux applications (apt-get   style) [OSS, some require x11]</li>
<li>	<a href="http://softbend.free.fr/himmelbar/">Himmelbar</a> - An application launcher</li>
<li>	<a href="http://ranchero.com/tigerlaunch/">Tigerlaunch</a> - An application launcher</li>
<li>	<a href="http://www-users.kawo2.rwth-aachen.de/~razzfazz/iscroll2/">iScroll</a> - Adds two-finger scrolling to pre-2005 iBooks and PowerBooks [OSS]</li>
</ul>
<p><strong>Web and graphics<br />
</strong></p>
<ul>
<li>	<a href="http://mozilla.com">Firefox and Thunderbird</a> - Duh [OSS]</li>
<li>	<a href="http://caminobrowser.com">Camino</a> - The OS X native browser from Mozilla with   slightly better OS X integration [OSS]</li>
<li>	<a href="//www.opera.com">Opera</a> - Another browser with advanced   features</li>
<li>	<a href="http://hmdt-web.net/shiira/en">Shiira</a> - A native browser based on Web Kit, has an integrated RSS reader [OSS]</li>
<li>	<a href="http://www.utsire.com/shrook/">Shrook</a> - A feature-packed RSS reader</li>
<li>	<a href="http://ranchero.com/netnewswire/">NetNewsWire Lite</a> - An RSS reader [Ltd]</li>
<li>	<a href="http://vienna-rss.sourceforge.net/vienna2.php">Vienna</a> - An open-source RSS reader [OSS]</li>
<li>	<a href="http://www.nvu.com">Nvu</a>   - Graphical XHTML and CSS editor (creates standards-compliant XHTML, based on   Mozilla composer) [OSS]</li>
<li>	<a href="http://tacosw.com/main.php">Taco</a> - An XHTML editor</li>
<li>	<a href="http://larryborsato.com/bleezer/">Bleezer</a> - Desktop blog editor</li>
<li>	<a href="http://www.qumana.com">Qumana </a>- Desktop blog editor</li>
<li>	<a href="http://cyberduck.ch/">Cyberduck</a> - Graphical FTP client [OSS]</li>
<li>	<a href="http://www.onebutton.org/index.php">OneButton FTP</a> - FTP client [OSS]</li>
<li>	<a href="http://seashore.sourceforge.net/">Seashore</a> - A native Mac OS X image editor, based on   Gimp [OSS]</li>
<li>	<a href="http://gimp-app.sourceforge.net/">Gimp.app</a> - Gnu Image Manipulation Program for OS X [OSS, X11]. Also see: <a href="http://plasticbugs.com/index.php?p=241">GIMPshop</a>, the same code, but with Photoshop style   menues [OSS, X11]</li>
<li>	<a href="http://xtralean.com/IW.html">ImageWell</a> - Basic image editor</li>
<li>	<a href="http://www.inkscape.org/">Inkscape</a> - A vector drawing app [OSS, X11]</li>
<li>	<a href="http://earth.google.com/download-earth.html">Google Earth</a> - Satellite imaging tool</li>
</ul>
<p><strong>Academic and research</strong></p>
<ul>
<li>	<a href="http://www.r-project.og">R</a> - The statistical programming environment based on   the S language [OSS]</li>
<li>	<a href="http://gretl.sourceforge.net/osx.html">Gretl</a> - Gnu Regression, Econometrics and Time Series   Library, a graphical econometrics and statistics application [OSS, X11]</li>
<li>	<a href="http://tug.org/mactex/">MacTeX</a> - A packaged LaTeX distribution for OS X that   includes gwTeX, TeXShop, BibDesk, i-Installer, additional fonts and other   utilities [OSS]</li>
<li>	<a href="http://ii2.sourceforge.net/">i-Installer/gwTeX</a> - The i-Installer application, which   allows easily downloading and installing gwTeX and other LaTeX utilities   for the Mac [OSS]</li>
<li>	<a href="http://www.uoregon.edu/~koch/texshop/texshop.html">TeXShop</a> - Frontend for LaTeX on OS X [OSS]</li>
<li>	<a href="http://itexmac.sourceforge.net/">iTeXMac</a> - Another LaTeX frontend for OX S [OSS]</li>
<li>	<a href="http://www.xm1math.net/texmaker/download.html">TeXMaker</a> - Another LaTeX frontend for OS X [OSS]</li>
<li>	<a href="http://wiki.lyx.org/LyX/LyXOnMac">LyX</a> - A graphical (what you see is what you mean) frontend to LaTeX (works with gwTeX/MacTeX or teTeX via Fink) [OSS]</li>
<li>	<a href="http://bibdesk.sourceforge.net">BibDesk</a> - A graphical BibTeX database manager [OSS]</li>
<li>	<a href="http://plot.micw.eu/">Plot</a> - A native 2D plotting utility</li>
</ul>
<p><strong>Music</strong></p>
<ul>
<li>	<a href="http://finalemusic.com/notepad/">Finale Notepad</a> - Simple sheet music composition [Ltd]</li>
<li>	<a href="http://wbyoung.ambitiouslemon.com/senuti/">Senuti</a> - An application that allows you to download music from your iPod to your Mac [OSS]</li>
<li>	<a href="http://audacity.sourceforge.net/">Audacity</a> - An audio recording/editing tool [OSS]</li>
</ul>
<p><strong>Resources for more</strong></p>
<ul>
<li>	<a href="http://del.icio.us/tag/osx">del.icio.us/tag/osx</a></li>
<li>	<a href="http://menu.jeweledplatypus.org/">Super OS X menubar items</a></li>
<li>	<a href="http://chip.cuccio.us/must-have-mac-software/">Must have software for OS X</a></li>
<li>	<a href="http://osx.hyperjeff.net/Apps/">Native OS X Applications</a> (Hyperjeff)</li>
<li>	<a href="http://www.opensourcemac.org/">OpenSourceMac.org</a></li>
<li>	<a href="http://www.freesmug.org/">Free OpenSource Software Mac Users Group</a></li>
<li>	<a href="http://nothickmanuals.info/doku.php?id=opensourcemac">opensourcemac</a> [nothickmanuals]</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=9&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/nifty-os-x-apps-list/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu, iBook and ethernet</title>
		<link>http://howtos.wordpress.com/2006/07/23/ubuntu-ibook-and-ethernet/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/ubuntu-ibook-and-ethernet/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:14:51 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/23/ubuntu-ibook-and-ethernet/</guid>
		<description><![CDATA[When I first installed Ubuntu Dapper on my iBook, I couldn&#8217;t get the ethernet connection to work. Searching the forums gave this pearl: add the lines
genrtc
bmac
to the top of &#8220;/etc/modules.&#8221; Beautiful, it worked. I&#8217;m not sure what it all means, but it worked.&#38;nbsp;
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I first installed Ubuntu Dapper on my iBook, I couldn&#8217;t get the ethernet connection to work. Searching the forums gave this pearl: add the lines</p>
<blockquote><p>genrtc</p>
<p>bmac</p></blockquote>
<p>to the top of &#8220;/etc/modules.&#8221; Beautiful, it worked. I&#8217;m not sure what it all means, but it worked.&#38;nbsp;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=5&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/ubuntu-ibook-and-ethernet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Turn off number format autorecognition in OpenOffice</title>
		<link>http://howtos.wordpress.com/2006/07/23/turn-off-number-format-autorecognition-in-openoffice/</link>
		<comments>http://howtos.wordpress.com/2006/07/23/turn-off-number-format-autorecognition-in-openoffice/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 04:10:55 +0000</pubDate>
		<dc:creator>J</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howtos.wordpress.com/2006/07/23/turn-off-number-format-autorecognition-in-openoffice/</guid>
		<description><![CDATA[Wow, that&#8217;s a long title. And inversely proportional to title length, as always, is the number of people that will find this useful. But I did:
Word and OpenOffice/NeoOffice and probably other word processors have this nice feature that converts text into tables, based on the placement of tabs, periods, or user-selected characters. So I could [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Wow, that&#8217;s a long title. And inversely proportional to title length, as always, is the number of people that will find this useful. But I did:</p>
<p>Word and OpenOffice/NeoOffice and probably other word processors have this nice feature that converts text into tables, based on the placement of tabs, periods, or user-selected characters. So I could easily turn:</p>
<blockquote><p>1;2<br />
3;4</p></blockquote>
<p>Into the appropriate table by, in NeoOffice for example, selecting the text then choosing [Tools] : [Text &lt;-&gt; Table]. The problem is that OpenOffice is too smart. It automatically recognizes whether it&#8217;s looking at text or numbers &#8212; at least it tries to.</p>
<p>Unfortunately, I&#8217;m creating tables made using the <a href="http://ideas.repec.org/c/boc/bocode/s375201.html">Outreg</a> module for Stata. This nice little ado file takes multiple regressions and turns them into fancy tab delimited text files that can be used to make journal style tables. But it reports standard errors in parentheses under coefficient estimates, like so:</p>
<blockquote><p>6.7<br />
(2.34)</p></blockquote>
<p>But NeoOffice (and I assume, OpenOffice), thinks that the parenthesis represent negative numbers, like in accounting. So when I tableize my text, I get a bunch of negative numbers that should be in parenthesis.</p>
<p>Ah, but as always, there&#8217;s a fix: Go to [Tools] [Options] [Text Document] [Tables] and uncheck the box that says [Number format recognition] under the &#8220;Input in tables&#8221; heading. Problem solved.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/howtos.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/howtos.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/howtos.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/howtos.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/howtos.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/howtos.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/howtos.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/howtos.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/howtos.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/howtos.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/howtos.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/howtos.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=howtos.wordpress.com&blog=319526&post=6&subd=howtos&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtos.wordpress.com/2006/07/23/turn-off-number-format-autorecognition-in-openoffice/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>