Difference between revisions of "Help:Editing"

From HaskellWiki
Jump to navigation Jump to search
m (clarify)
m (clarify)
Line 50: Line 50:
 
Multiple-embedded underbracings
 
Multiple-embedded underbracings
 
:<math>\begin{matrix}1+\underbrace{2+3}\\\underbrace{\;\;\;\;\;\;\;\;\;5\;\;\;}\\6\end{matrix}</math>
 
:<math>\begin{matrix}1+\underbrace{2+3}\\\underbrace{\;\;\;\;\;\;\;\;\;5\;\;\;}\\6\end{matrix}</math>
can be achieved with the new Wikipedia syntax in a straightforward way -- embedding the parts in each other in a hierarchical way.
+
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 of the former Wikipedia and recent Haskell Wiki, a similar idea may work too, because also the <nowiki>\begin{matrix}...\end{matrix}</nowiki> environments can be embedded 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 <nowiki>\begin{matrix}...\end{matrix}</nowiki> environments can be embedded in a hierarchical way:
 
:<nowiki><math>\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]</math></nowiki>
 
:<nowiki><math>\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]</math></nowiki>
 
:<math>\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]</math>
 
:<math>\left[ \begin{matrix}1 & 2 \\ 3 & \left[ \begin{matrix} 4 & 5 \\ 6 & 7\end{matrix} \right] \end{matrix} \right]</math>

Revision as of 17:13, 15 July 2007


Style

Please adhere to the style guide:

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.


Differences from old wiki

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

  • Numbered lists: Old wiki used 1. for numbered lists, new wiki uses the hash mark #.
  • List levels: Old wiki used spaces (AFAICT) to indent lists. New one uses multiple hashes or asterisks. e.g. #** would prefix a third level bullet item under a top level numbered, second level bulleted list.
  • Code: Old wiki used three braces to surround code. For this new wiki, delete the braces and then:
    • In a list environment, use html (<code></code>) pairs. This also usually requires <br /> tags for line breaking.
    • If you are at the main level, you can simply put a space in front of each line.
    • And even better - Use <hask></hask> pairs for inline Haskell code and <haskell></haskell> for Haskell code blocks.
  • General formatting: The old wiki seemed to be somewhat looser in its treatment of spaces and new lines. In the new wiki, a space at the start of a line means to do as is or code type formatting. Extra blank lines between list items will restart lists.
  • Indentation: Old wiki used leading spaces. New wiki uses leading colons :. The entire indented paragraph should be entered on a single line.

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

Differences from recent Wikipedia

Math

Under/overbrace

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

Multiple-embedded underbracings

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>

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

The same visual result can be achieved by a nasty trick

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

it is almost good

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

Thus, this is a rather nasty trick, operating at a low level and failing to grasp the logical structure.

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.

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.

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.