Initial commit of new flow

This commit is contained in:
Smaug123
2023-09-10 21:21:51 +01:00
commit a1072f203d
28 changed files with 701 additions and 0 deletions

9
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM pandoc/latex:2.14.0.1
RUN apk add --no-cache git=2.26.3-r0 texlive=20190410-r13 && \
tlmgr update --self && \
tlmgr install tikz-cd && \
tlmgr install mdframed && \
# Dependencies of mdframed \
tlmgr install zref && \
tlmgr install needspace

View File

@@ -0,0 +1,7 @@
{
"build": { "dockerfile": "Dockerfile" },
"extensions": ["james-yu.latex-workshop", "vscodevim.vim", "timonwong.shellcheck"],
"settings": {
}
}