Add basic quarto render structure
This commit is contained in:
parent
696755caf0
commit
c6e98ba6ca
3 changed files with 25 additions and 10 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
out/
|
||||
|
||||
/.quarto/
|
||||
/_output/
|
||||
|
|
14
_quarto.yml
14
_quarto.yml
|
@ -1,5 +1,15 @@
|
|||
project:
|
||||
title: "resume"
|
||||
|
||||
output-dir: _output
|
||||
|
||||
format:
|
||||
html: default
|
||||
pdf:
|
||||
latex-auto-mk: false
|
||||
pdf-engine: tectonic
|
||||
template: templates/jb2resume.latex
|
||||
include-in-header:
|
||||
- text: |
|
||||
\usepackage{xcolor}
|
||||
|
||||
execute:
|
||||
echo: false
|
||||
|
|
18
resume.qmd
18
resume.qmd
|
@ -1,12 +1,18 @@
|
|||
---
|
||||
title: "resume"
|
||||
jupyter: python3
|
||||
title: Marty Oehme
|
||||
name: Marty Oehme
|
||||
left-column:
|
||||
- 'Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)'
|
||||
- 'Mobile: +49 177 377 4949'
|
||||
right-column:
|
||||
- 'Homepage: [http://martyoeh.me/](http://martyoeh.me/)'
|
||||
- 'GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)'
|
||||
- 'Last Updated: \today'
|
||||
---
|
||||
|
||||
## Quarto
|
||||
## Summary
|
||||
|
||||
## Berufserfahrung
|
||||
|
||||
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
|
||||
|
||||
```{python}
|
||||
1 + 1
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue