summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorrautenberg <rautenberg@in-silico.ch>2016-11-10 18:54:59 +0100
committerrautenberg <rautenberg@in-silico.ch>2016-11-10 18:54:59 +0100
commitaf041aa51ab38be2ca15e995f112828f03d13117 (patch)
tree1994824ad72359fb7ee12704cfb6745e6d89ac9d /README.md
parentea2607614d3a29b37f5039094be3fd4dd5a8a041 (diff)
add a few more things
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 16 insertions, 2 deletions
diff --git a/README.md b/README.md
index bd7ef66..1fee05d 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,8 @@ Edit title, author, institute/company and footer
### Textblocks
Add a textblock with markdown-content (link the file company in directory markdown_blocks) for the company description.
```
-\begin{textblock}{40.0}(1,6) % textblock, width 40, position x=1 y=6
-\input{./markdown_blocks/company} % insert textblock company.tex
+\begin{textblock}{40.0}(1,6) % textblock, width 40, position x,y
+ \input{./markdown_blocks/company} % insert textblock company.tex
\end{textblock}
```
@@ -27,9 +27,23 @@ e.G.: company.md
***my company***, Sometown, Everywhere – Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse commodo elit eget tellus posuere, eget blandit metus pretium. Mauris eu volutpat nisl. Praesent iaculis eros sit amet cursus fringilla. Morbi rhoncus bibendum odio, ut tincidunt sapien. Nam pellentesque nunc tellus, eu volutpat risus vehicula nec. Integer id volutpat mi.
```
+### Citations
+add ```\cite{ArticleName}``` in the markdown document. Articles are listed in the file references.bib. References will be added automatically during compilation.
+
### Add images
add images in the markdown files with standard markdown syntax
```
![Endpoints](./images/my_image.png){width=600px }
```
+### Add tables
+see ```man pandoc``` for all table formats. This example is made with the *pipe_tables* extension.
+```
+| Descriptor | Val1 | Val2 | Val3 |
+|----------------|-----:|---------|:------:|
+| Physchem A | 12 | 12 | 12 |
+| Physchem B | 123 | 123 | 123 |
+| Physchem C | 1 | 1 | 1 |
+
+: Here's the caption of the table.
+```