|
|
(14 intermediate revisions by one other user not shown) |
Line 1: |
Line 1: |
| [https://tgstation13.org/wiki/Paper_Markdown Credit to TG Station for the original article, of which large portions of this guide is derived from.]
| | #REDIRECT [[Guide to Paperwork]] |
| | |
| ==Writing Tools==
| |
| | |
| ===[[File:Pen.png]]Pen===
| |
| Pens are widely available around the station. Paper bins often have pens on them, every crew member starts with a pen in their PDA.
| |
| There are numerous types of pens you can get.
| |
| • Pen - A standard black ink pen. You write in the Verdana font.
| |
| • Blue Pen - <span style="color:blue">It's just blue ink.</span>
| |
| • Red Pen - <span style="color:red">It's just red ink.</span>
| |
| • Four Colour - You can change between black, <span style="color:blue">blue</span>, <span style="color:red">red</span> and <span style="color:green">green</span> ink. Available in the loadout menu.
| |
| • Fountain Pen - You write in the Segoe Script font.
| |
| • Captain Pen - It's a fountain pen with an oak body. You write in <span style="color:#DC143C">crimson ink</span>. The nib is sharp. So sharp it can... actually butcher corpses? You also write in Segoe Script.
| |
| | |
| ===[[File:Crayon.png]]Crayon===
| |
| Crayons work much like pens, except that they are always bold, and lack the list, horizontal rule, and small tags. You write in Comis Sans MS.
| |
| | |
| ==Formatting==
| |
| Writing is performed by using any writing tool on paper, with any standard writing utensil.<br>
| |
| | |
| {| class="wikitable"
| |
| ! style="background: #ABE" | Description
| |
| ! style="background: #ABE" width=40% | You type
| |
| ! style="background: #ABE" width=40% | You get
| |
| |-
| |
| | Bold text
| |
| | <pre>
| |
| **Bold text.**
| |
| __Bold text.__
| |
| </pre>
| |
| |
| |
| '''Bold text.'''<br>
| |
| '''Bold text.'''
| |
| |-
| |
| | Italic text
| |
| | <pre>
| |
| *Italics text.*
| |
| _Italics text._
| |
| </pre>
| |
| |
| |
| ''Italics text.''<br>
| |
| ''Italics text.''
| |
| |-
| |
| | Centering text
| |
| | <pre>
| |
| |Centered text.|
| |
| </pre>
| |
| |
| |
| <div class="center" style="width:auto; margin-left:auto; margin-right:auto;">Centered text.</div>
| |
| |-
| |
| | Lists
| |
| | <pre>
| |
| * Item one
| |
| * Item two
| |
| * Subitem one
| |
| </pre>
| |
| |
| |
| * Item one
| |
| * Item two
| |
| ** Subitem one
| |
| |-
| |
| | Horizontal rules
| |
| | <pre>
| |
| Before line.
| |
| ---
| |
| After line.
| |
| </pre>
| |
| |
| |
| Before line.
| |
| ----
| |
| After line.
| |
| |-
| |
| | Large text
| |
| | <pre>
| |
| ^Large text.^
| |
| </pre>
| |
| |
| |
| <font size="3">Large text.</font size>
| |
| |-
| |
| | Small text
| |
| | <pre>
| |
| ((Small text.))
| |
| </pre>
| |
| |
| |
| <font size="1">Small text.</font size>
| |
| |-
| |
| | Signature
| |
| | <pre>
| |
| %s
| |
| </pre>
| |
| |
| |
| ''John Smith''<br>
| |
| Note: Signatures can't be faked since they use a different font.
| |
| |-
| |
| | Field
| |
| | <pre>
| |
| %f
| |
| </pre>
| |
| |
| |
| '''%f''' tags are not visible when reading a [[paper]],<br>
| |
| but when writing on said paper a <span style="color:Blue"><u><nowiki>[Write]</nowiki></u></span> button will be visible, <br>
| |
| similar to the button at the bottom of the paper.<br>
| |
| |-
| |
| | Headers
| |
| | <pre>
| |
| # H1
| |
| ## H2
| |
| </pre>
| |
| |
| |
| <font size="6"><u>H1</u></font size><br>
| |
| <br>
| |
| <font size="5">H2</font size>
| |
| |}
| |