1 of 7

Text formats

Data Formats tutorial

2 of 7

Initial information - tools

2

3 of 7

Task 1 - Markdown

In Dillinger, write a sample Markdown file containing

  • Headings of at least 3 levels
  • At least 3 reference-style links
  • A fenced code block
  • A numbered list with three items and an unnumbered sub-list in the second item

Observe the generated HTML in the web browser’s console.

In GitHub, create an empty repository and use the Markdown as its README.md

3

4 of 7

Task 1 - Markdown - solution

Test document

=============

## Heading 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. [Duis aute] irure [dolor] in reprehenderit in voluptate velit esse cillum [dolore][3] eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

### Heading 3

1. asdasdadsadasd

2. dsasad

- aaa

- bbb

- ccc

3. asdsadasdas

```sh

grep -v "test"

```

[Duis aute]: http://test.cz "Test"

[dolor]: http://test.cz "Test"

[3]: http://test.cz "Test 3"

4

5 of 7

Task 2 - LaTeX

In Overleaf, create a Blank project. Use Lorem Ipsum as a text generator.

  • Write 2 sections
    • each with 2 subsections
  • Each section and subsection will contain 2 paragraphs of text
  • Cross-reference from one subsection to another using \autoref

5

6 of 7

Task 3 - LaTeX

Import the official MFF CUNI template for bachelor thesis into Overleaf. Use Lorem Ipsum as a text generator.

  1. Fill in your own metadata
  2. Observe the \input command usage in thesis.tex for splitting the text into multiple .tex files
  3. Add some text to the chapters
  4. Use dblp: computer science bibliography to find an arbitrary BibTeX record (example)
  5. Add the record to the BibTeX bibliography
    1. bibliography.bib
  6. Cite the record from the text
  7. Verify it is correctly generated in the Bibliography section

6

7 of 7

Task 4 - DBpedia Spotlight

Try out the demo of DBpedia Spotlight

7