Difference between revisions of "FAQ Editing"

From crtc.cs.odu.edu
Jump to: navigation, search
(How to insert citations ?)
(How to insert citations ?: div for code fragment)
Line 44: Line 44:
  
 
example:
 
example:
<span >  
+
<div style="border:1px solid #ccc>
<source style="color: red">
+
<source>
The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref> The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref>
+
The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref>  
 +
The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref>
  
 
<references />
 
<references />
 
</source>
 
</source>
 +
</div>
 +
The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref>
 +
The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref>
  
The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref> The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref>
 
</span>
 
 
=== References===
 
=== References===
 
<references />
 
<references />
  
 
For more see [https://www.mediawiki.org/wiki/Extension:Cite#Usage https://www.mediawiki.org/wiki/Extension:Cite#Usage]
 
For more see [https://www.mediawiki.org/wiki/Extension:Cite#Usage https://www.mediawiki.org/wiki/Extension:Cite#Usage]
<span style="bgcolor:red">hello world</span>
 
  
<syntaxhighlight lang="html4strict"  style="color:red" >
+
<syntaxhighlight lang="html"  style="color:red" >
 
HTML module goes here...
 
HTML module goes here...
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 15:35, 9 May 2018

How to create a new page

On the browser address bar type : cepm.cs.odu.edu/<name of page> or cepm.cs.odu.edu/<namespace> : <name of page>

How does formatting work ?

https://www.mediawiki.org/wiki/Help:Formatting

How to (easily) create tables ?

http://www.tablesgenerator.com/mediawiki_tables

How to insert code snippets with syntax highlight ?

Warp them in <syntaxhighlight> </syntaxhighlight> tags

example:

<syntaxhighlight lang="python" line='line'>
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
</syntaxhighlight>
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass

For more see https://www.mediawiki.org/wiki/Extension:SyntaxHighlight

How to insert citations ?

Wrap reference inside <ref> </ref>

example:

The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref> 
The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref>

<references />

The Sun is pretty big.[1] The Moon, however, is not so big.[2]

References

  1. E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.
  2. R. Smith, "Size of the Moon", Scientific American, 46 (April 1978): 44-6.

For more see https://www.mediawiki.org/wiki/Extension:Cite#Usage

HTML module goes here...