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

1.1 KiB

title date subtitle
Tex-Template 2018-01-01 Test Document

Hello world

\lipsum[3-10]

Foo is equal to $foo$. Input directory is at $inputDir$.

\includegraphics[width=\textwidth]{test-image}

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

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.