Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
thesis-template
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
agse
thesis-template
Merge requests
!1
README: newer versions of the container image use the more sensible /workdir instead of /home
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
README: newer versions of the container image use the more sensible /workdir instead of /home
lgeorge/thesis-template:lgeorge-main-patch-72504
into
main
Overview
3
Commits
1
Pipelines
0
Changes
1
Merged
lgeorge
requested to merge
lgeorge/thesis-template:lgeorge-main-patch-72504
into
main
2 years ago
Overview
3
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
version 1
4b93011f
2 years ago
main (base)
and
latest version
latest version
49f402f9
1 commit,
2 years ago
version 1
4b93011f
1 commit,
2 years ago
1 file
+
3
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
README.md
+
3
−
3
Options
@@ -27,9 +27,9 @@ latexmk -pdf thesis
@@ -27,9 +27,9 @@ latexmk -pdf thesis
You can also use a Docker image to compile the LaTeX source:
You can also use a Docker image to compile the LaTeX source:
```
bash
```
bash
docker run
--rm
-it
-v
$(
pwd
)
:/
home
danteev/texlive latexmk
-pdf
thesis.tex
docker run
--rm
-it
-v
$(
pwd
)
:/
workdir
danteev/texlive latexmk
-pdf
thesis.tex
# For continuous builds
# For continuous builds
docker run
--rm
-it
-v
$(
pwd
)
:/
home
danteev/texlive latexmk
-pdf
-pvc
thesis.tex
docker run
--rm
-it
-v
$(
pwd
)
:/
workdir
danteev/texlive latexmk
-pdf
-pvc
thesis.tex
```
```
\ No newline at end of file
Loading