HaskellWiki

Haskell | Wiki community | Recent changes
Random page | Special pages

 

Not logged in
Log in | Help

Help:Editing


1 Style

Please adhere to the style guide:

2 General editing help

Take a look at Wikipedia's help, which has all the details of how to format.

You may wish to try out editting in Sandbox or in your own user page before editting the wiki pages.


3 Differences from old wiki

If you are converting / copying a page from the old wiki, there are few differences in the formatting.

I'm sure there are others, feel free to add as you go :)

4 Differences from recent Wikipedia

4.1 Math

4.1.1 Under/overbrace

Wikipedia's new under/overbrace syntax <math>\underbrace{2+3}_5</math> \underbrace{2+3}_5 works here in a different way.
The former Wikipedia syntax <math>\begin{matrix} \underbrace{2+3} \\5 \end{matrix}</math> \begin{matrix}\underbrace{2+3}\\5\end{matrix} works here as expected

The former syntax uses matrix environment as an auxiliary tool — the same tool can be used to typeset matrices:

<math>\left[ \begin{matrix}1 & 2 \\ 3 & 4\end{matrix} \right]</math>
\left[ \begin{matrix}1 & 2 \\ 3 & 4\end{matrix} \right]

Multiple-embedded underbracings

\begin{matrix}1+\underbrace{2+3}\\\underbrace{\;\;\;\;\;\;\;\;\;5\;\;\;}\\6\end{matrix}

can be achieved with the subscript-using syntax of the new Wikipedia in a straightforward way — embedding the parts in a hierarchical way.

As for the matrix-using syntax of the former Wikipedia and recent Haskell Wiki, a similar idea may work too, because also the \begin{matrix}...\end{matrix} environments can be embedded in a hierarchical way:

<math>\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]</math>
\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]

thus, also underbracings can be embedded, but precise alignment must be achieved with care.

There is also an alternative way to achieve the same visual result, using a rather "nasty" (but easy) trick

<math>\begin{matrix}1+\underbrace{2+3}\\\underbrace{5}\\6\end{matrix}</math>

it is almost good

\begin{matrix}1+\underbrace{2+3}\\\underbrace{5}\\6\end{matrix}

but the precise alignment must be made by hand, e.g.

<math>\begin{matrix}1+\underbrace{2+3}\\\underbrace{\;\;\;\;\;\;\;\;\;5\;\;\;}\\6\end{matrix}</math>

resulting the expected

\begin{matrix}1+\underbrace{2+3}\\\underbrace{\;\;\;\;\;\;\;\;\;5\;\;\;}\\6\end{matrix}

Thus, this is a rather nasty trick, operating at a low level and failing to grasp the logical structure. But it has an easy (layered) structure.

4.1.2 Some new math symbols

Upper corner quotation marks are used often in mathematical logic to denote "quotation", stressing that the enclosed expression is meant as literal part of the object language. In LaTeX's mathematical mode environments, they can be typeset with \ulcorner and \urcorner. The recent Wikipedia knows this solution too. In the former Wikipedia and recent Haskell Wiki, this solution does not work, another notation must be chosen or the sign must be inserted as an image.

5 Syntax highlighting and vim

Wiki syntax highlighting with support for highlighted, embedded Haskell fragments, specifically for the Haskell wiki, is available for Vim. Save this .vim file to your ~/.vim/syntax directory, and enable syntax highlighting dynamically with ":setf haskellwiki".

You can configure your browser to invoke vim with the haskellwiki syntax highlighting enabled by default, by calling vim with: -c "setf haskellwiki". More details in this blog entry.

6 Reverting spam

If you find some spam - the easiest way to undo it is use the "diff" on the recent changes page (selecting the first spam change). Then, click on the "Revison as of yyyy-mm ..." link on the left side. This will show the page as it was before the spam edit.

Then, edit the page and save it as is (Please indicate you are reverting spam in the Summary). MediaWiki will warn you when you edit that this is an old version. But that is what you want - so go ahead and save it.

Retrieved from "http://haskell.org/haskellwiki/Help:Editing"

This page has been accessed 3,285 times. This page was last modified 11:56, 16 July 2007. Recent content is available under a simple permissive license.