Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
markdown-cv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stefan Eirich
markdown-cv
Compare revisions
f4fd8034fbb9a6dcca9dc114ed146717b20cf847 to 42bfcbb1a292a81394bc1b97ee4f7dadf4c3796e
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
stefan3/markdown-cv
Select target project
No results found
42bfcbb1a292a81394bc1b97ee4f7dadf4c3796e
Select Git revision
Swap
Target
stefan3/markdown-cv
Select target project
stefan3/markdown-cv
1 result
f4fd8034fbb9a6dcca9dc114ed146717b20cf847
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Changed pdf-engine to correct latex-engine
· 37404a5e
Stefan Eirich
authored
5 years ago
37404a5e
Merge branch 'master' of
https://gitlab.informatik.uni-bremen.de/stefan3/markdown-cv
· 42bfcbb1
Stefan Eirich
authored
5 years ago
42bfcbb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+2
-18
2 additions, 18 deletions
Makefile
with
2 additions
and
18 deletions
Makefile
View file @
42bfcbb1
...
...
@@ -6,35 +6,19 @@ INPUTDIR+=$(BASEDIR)/cv
OUTPUTDIR
+=
$(
BASEDIR
)
/cv
STYLEDIR
=
$(
BASEDIR
)
/style
help
:
@
echo
' '
@
echo
'Makefile for the Markdown CV '
@
echo
' '
@
echo
'Usage: '
@
echo
' make html (re)generate the web site '
@
echo
' make pdf generate a PDF file '
@
echo
' make docx generate a Docx file '
@
echo
' make tex generate a tex file '
@
echo
' '
@
echo
'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html'
@
echo
' '
@
echo
'pandoc test.md -o test.pdf --bibliography=test_ref.bib --csl=plos.csl '
@
echo
' '
@
echo
'get templates from: https://github.com/jgm/pandoc-templates '
pdf
:
pandoc
-s
-f
markdown-auto_identifiers
\
"
$(
INPUTDIR
)
"
/
*
.md
\
-o
"
$(
OUTPUTDIR
)
/cv.pdf"
\
--template
=
"
$(
STYLEDIR
)
/template.tex"
\
--
pdf
-engine
=
xelatex
--
latex
-engine
=
xelatex
tex
:
pandoc
-s
\
"
$(
INPUTDIR
)
"
/
*
.md
\
-o
"
$(
OUTPUTDIR
)
/cv.tex"
\
--template
=
"
$(
STYLEDIR
)
/template.tex"
\
--
pdf
-engine
=
xelatex
--
latex
-engine
=
xelatex
docx
:
pandoc
"
$(
INPUTDIR
)
"
/
*
.md
\
...
...
This diff is collapsed.
Click to expand it.