Difference between revisions of "Thompson-Wheeler logo"

From HaskellWiki
Jump to navigation Jump to search
(Fix broken links to PSD files)
(Added font)
 
Line 70: Line 70:
 
| [[Image:HaskellLogoStyPreview-8.png]]
 
| [[Image:HaskellLogoStyPreview-8.png]]
 
|}
 
|}
  +
  +
== Font format ==
  +
  +
The Haskell logo as a font can be found [http://tryhaskell.org/haskell-font/ here].
   
 
== Vector format ==
 
== Vector format ==

Latest revision as of 16:11, 3 August 2013

The 2009 Haskell Logo Competition winner

The logo thought up by Darrin Thompson and produced by Jeff Wheeler is the winning logo of the 2009 logo competition. On this page you can find multiple formats in which the logo has now produced.

Editable formats

Here, you will find the "editor-friendly" file formats. Ready-made formats should become available shortly.

PhotoShop

The original files produced by Jeff Wheeler can be found on this server.

MetaPost

Based on a trace of Jeff Wheeler's PNG file, Brian Sniffen made a MetaPost implementation.

LaTeX (TikZ)

Philip Hölzenspies made a LaTeX style file that provides the command \haskelllogo[<options>], which produces the logo right there. This example file illustrates some of the options provided by the style.

It has been tested for TeXLive 2007 and TeXLive 2008. It requires a version of TikZ that includes the file pgfkeys.sty (unfortunately, the version number for this increment is unknown). To find out whether the haskell logo style will work out-of-the-box, do something like: kpsewhich pgfkeys.sty If you get an answer from kpsewhich, you should be good to go.

For those unfamiliar with TikZ, it stands for "TikZ ist kein Zeichenprogramm" and it allows one to make drawing (like these) directly in LaTeX. As shown in the example file, many TikZ options can also be used in \haskelllogo. TikZ even allows you to create SVG files from all individual images in a LaTeX document (by using tex4ht).

A few examples are given here:

Code Result
\haskelllogo HaskellLogoStyPreview-1.png
\haskelllogo[seventies] HaskellLogoStyPreview-2.png
\haskelllogo[commodore] HaskellLogoStyPreview-3.png
\haskelllogo[lambdabehind] HaskellLogoStyPreview-4.png
\haskelllogo[seventies,lambdainfront] HaskellLogoStyPreview-5.png
\haskelllogo[rounded corners=2pt] HaskellLogoStyPreview-6.png
\haskelllogo[rounded corners=4pt] HaskellLogoStyPreview-7.png

\begin{tikzpicture}[x=1ex,y=1ex]
\coordinate(hasklogoref) at (5,8);
\foreach \i in {4,...,1} {
  \pgfmathparse{(\i)^(-1.2)}
  \edef\opac{\pgfmathresult}
  \pgfmathparse{40 * \i}
  \edef\angl{\pgfmathresult}
  \haskelltikzlogo[rotate=\angl,opacity=\opac];
  \haskelltikzlogo[rotate=-\angl,opacity=\opac];
}
\haskelltikzlogo[commodore];
\end{tikzpicture}

HaskellLogoStyPreview-8.png

Font format

The Haskell logo as a font can be found here.

Vector format

Variant in SVG

OmniGraffle version, with careful attention to placement in icon boxes, and accurate resizing.

Download from here: File:Haskell Logo.graffle, the image at right is just a sample render of part of it.

Haskell Logo-variations.png

Haskell code that generates SVG variations

TW-Logo-Haskell