parent
fb959f6738
commit
793e38d579
5 changed files with 35 additions and 23 deletions
|
@ -1,13 +0,0 @@
|
|||
set -e
|
||||
echo "Building document"
|
||||
make pdf
|
||||
mkdir public
|
||||
mv build/2025_Algebra_I.pdf public
|
||||
mv build/2025_Algebra_I.log public
|
||||
cd public/
|
||||
if ! command -v tree &> /dev/null
|
||||
then
|
||||
echo "No tree utility found, skipping making tree"
|
||||
else
|
||||
tree -H '.' -I "index.html" -D --charset utf-8 -T "Algebra I" > index.html
|
||||
fi
|
21
.gitea/workflows/compile.yaml
Normal file
21
.gitea/workflows/compile.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: Compile LaTeX
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: latex-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Compile document
|
||||
run: |
|
||||
make pdf
|
||||
mkdir public
|
||||
mv build/2025_Algebra_I.pdf public/
|
||||
mv build/2025_Algebra_I.log public/
|
||||
- name: Deploy to Pages
|
||||
uses: actions/pages@v1
|
||||
with:
|
||||
index-title: "Summer Term 2025: Algebra I"
|
8
Makefile
8
Makefile
|
@ -21,10 +21,10 @@ init: .init-submodule-cert .init-git-hooks-cert
|
|||
.init-git-hooks-cert:
|
||||
@echo "[Make] Setting up git hooks for package gitinfo2"
|
||||
@mkdir -p .git/hooks
|
||||
@cp .ci/git-info-2.sh .git/hooks/post-merge
|
||||
@cp .ci/git-info-2.sh .git/hooks/post-checkout
|
||||
@cp .ci/git-info-2.sh .git/hooks/post-commit
|
||||
@.ci/git-info-2.sh
|
||||
@cp .git-info-2.sh .git/hooks/post-merge
|
||||
@cp .git-info-2.sh .git/hooks/post-checkout
|
||||
@cp .git-info-2.sh .git/hooks/post-commit
|
||||
@./.git-info-2.sh
|
||||
@touch .init-git-hooks-cert
|
||||
|
||||
|
||||
|
|
16
README.md
16
README.md
|
@ -1,11 +1,15 @@
|
|||
# Algebra I
|
||||
|
||||
These are the lecture notes for the 'Algebra I', taught in summer term 2025 at the University of Bonn.
|
||||
These are the lecture notes for the 'Algebra I' course, taught in summer term 2025 at the University of Bonn by Dr. Gebhard Martin.
|
||||
|
||||
The [latest version][1] is availabe as a pdf download via GitLab runner.
|
||||
These are our personal notes and do not represent any official script by the lecturer.
|
||||
You are of course welcome to use these notes, but we cannot take responsibility for completeness or correctness of these notes.
|
||||
Feel free to point out any typos/errors/suggestions to us or if you notice them, or help us contribute to these notes.
|
||||
|
||||
The [latest version][1] is availabe as a pdf download (automatically compiled from the sources via act runner).
|
||||
You can also have a look at the generated [log files][2] or visit the
|
||||
[gl pages][3] index directly.
|
||||
[webpage][3] index directly.
|
||||
|
||||
[1]: https://.//2025_Algebra_I.pdf
|
||||
[2]: https://.//2025_Algebra_I.log
|
||||
[3]: https://.//
|
||||
[1]: https://max-notes.users.abstractnonsen.se/algebra-1/2025_Algebra_I.pdf
|
||||
[2]: https://max-notes.users.abstractnonsen.se/algebra-1/2025_Algebra_I.log
|
||||
[3]: https://max-notes.users.abstractnonsen.se/algebra-1/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue