This site is a drupal based site.
The text layout can be done with html but can also just include simple html tags similar as it is done in wikis.
For people that not at all familiar with html, here you find help for some commonly used text layout:
How can I write a text in bold?
Below you find the command <b>. b stands for bold. If I want to highlight something in my text by making it bold, this is the command I use. One example:
A Workshop takes place in Bremen.
In order to make my text look like that I would have to write in my text:
A Workshop takes place in <b>Bremen</b>
This means that I start with <b> to write the bold text and I end with </b>. The sign "/" and the resp. HTML tag is always ending the formatting that you have just been using. The following examples are working in a similiar way.
How can I make a text look italically?
Below you find the command <i>. i stands for italic. One example:
A Workshop takes place in Bremen in the Paradox.
Again I wrap the words I want to be displayed italically in the associated html tag: <i>Paradox </i>.
How can I underline a text?
Below you find the command <u>. u stands for underline. One example:
A Workshop takes place in Bremen in the Paradox at 10 am.
If I want my text to be displayed like that I have to wrap the words I want to be displayed underlined in the associated html tag. <u>10 am</u>. But be carefull using underlining as a layout tool, since it may get confusing since usually on websites links are underlined. So people might get the impression you're linking in this examples "10 am".
How can I insert a line break in my text?
In order to insert a line break in my text I just need the command <br> at the spot where I want the line to break. br stands for break. If I use <br> twice I will automatically get a blank line. This command is different from the ones described so far, since it doesn't have to be ended. It can just stand alone.
How can I add a paragraph in my tex?
Inorder to insert a paragraph into my text I just insert the command <p> at the beginning of my paragraph and </p> at the end of the paragraph. (p stands for paragraph.) After each paragraph there will auomativally be a blank line inserted.
How can I delete an aticle?
If my article is already published I have to click on the button "edit this article". Then the editing mode will be opened. In order to delete articles you have to scroll down to the very bottom of the page. There you will find the option "delete article". If you click this button the article will be deleted. After that you have to confirm your decision in the following window.
If you confirm again, the article is deleted. you should in general only delete articles that you have written.
How can I add a link?
In order to insert a link I have to use <a href>. This tag will be closed with </a>. One example: If I want to link to the D-A-S-H site the complete command looks like this:
<a href="http://d-a-s-h.org">Linktext, z.B. Dies ist ein Link auf die D-A-S-H Seite </a>. In the beginning it is probably easiest to just copy this link and substitute the link test and the url, so you can make sure not to forget " or = and also not to mix up the order these commands are arranged in, because then the link is so called "broken" and will not work anymore.
How do I create a list?
There is two kinds of litst: an ordered and a unordered. The ordered list has to be started with the tag <ol> and ends with </ol>. In order to add single items to the list, I use <li>. li stands for list item.
A unordered list has to be started with <ul> and ends with </ul>. Here you also use <li> in order to add items to the list. The <li> Tag can be closed, but this is not mandatory.
Example ordered list:
<ol>
<li>birds
<li>dogs
<li>cats
</ol>
and this is what it looks like:
Example unordered list:
<ul>
<li>birds
<li>dogs
<li>cats
</ul>
and this is what it looks like: