1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tex-template-builder/test/main.md

74 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2018-04-03 12:32:40 +01:00
---
title: Tex-Template
date: 2018-01-01
subtitle: Test Document
---
2018-03-28 21:27:33 +01:00
# Hello world
2018-04-30 09:42:38 +01:00
\lipsum[3-10]
Foo is equal to \$foo\$.
Input directory is at \$inputDir\$.
\includegraphics[width=\textwidth]{test-image}
2018-04-30 09:42:38 +01:00
# Test 1
test 1
## Test 1a
test 1a
### Test 1ai
test 1ai
### Test 1aii
test 1aii
#### Test 1aii inner
test 1aii inner
##### Test 1aii inner inner
test 1aii inner inner
### Test 1aiii
test 1aiii
## Test 1b
test 1b
## Test 1c
test 1c
# Test 2
test 2
# Test 3
test 3
# Test 4
test 4
# Test code
```java
public class Test {
static Set<Thread> updateThreads = new HashSet<Thread>();
public static void main(String[] args) {
ConcurrentMap<Integer, String> concurrentMap = new ConcurrentHashMap<Integer, String>();
for (int i = 0; i < 1000; i++) {
startUpdateThread(i, concurrentMap);
}
for (Map.Entry<Integer, String> entry : concurrentMap.entrySet()) {
System.out.println("Key :" + entry.getKey() + " Value:" + entry.getValue());
}
for (Thread thread : updateThreads) {
thread.interrupt();
}
}
}
```
## Test Inline Code
Some `inline` code.