diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..fe894ff --- /dev/null +++ b/compile.sh @@ -0,0 +1,677 @@ +#!/usr/bin/env bash + +# Default values +jobs=0 # 0 means auto-detect +output_dir="pdfs" +verbose=0 +quiet=0 +create_dirs=0 +dry_run=0 +skip_newer=0 +show_progress=1 +force=0 +select_mode=0 +compile_log="typst_compile_errors.log" +move_log="typst_move_errors.log" +declare -a exclude_patterns + +# Show usage/help information +show_help() { + cat << EOF +Usage: $(basename "$0") [OPTIONS] + +Compile Typst files and move generated PDFs to a designated directory. + +Options: + -j, --jobs NUM Number of parallel jobs (default: auto-detect) + -o, --output-dir DIR Output directory name (default: pdfs) + -v, --verbose Increase verbosity + -q, --quiet Suppress most output + -c, --create-dirs Create output directories if they don't exist + -d, --dry-run Show what would be done without doing it + -s, --skip-newer Skip compilation if PDF is newer than source + -S, --select Interactive selection mode using skim + -f, --force Force compilation even if PDF exists + --no-progress Disable progress bar + --compile-log FILE Custom location for compilation log (default: $compile_log) + --move-log FILE Custom location for move log (default: $move_log) + -e, --exclude PATTERN Exclude files matching pattern (can be used multiple times) + -h, --help Show this help message and exit + +Examples: + $(basename "$0") -j 4 -o output -c + $(basename "$0") --verbose --skip-newer + $(basename "$0") -S # Select files to compile interactively + $(basename "$0") -e "**/test/**" -e "**/draft/**" +EOF +} + +# Parse command line arguments +while [[ $# -gt 0 ]]; do + case $1 in + -j|--jobs) + jobs="$2" + shift 2 + ;; + -o|--output-dir) + output_dir="$2" + shift 2 + ;; + -v|--verbose) + verbose=1 + shift + ;; + -q|--quiet) + quiet=1 + shift + ;; + -c|--create-dirs) + create_dirs=1 + shift + ;; + -d|--dry-run) + dry_run=1 + shift + ;; + -s|--skip-newer) + skip_newer=1 + shift + ;; + -S|--select) + select_mode=1 + shift + ;; + -f|--force) + force=1 + shift + ;; + --no-progress) + show_progress=0 + shift + ;; + --compile-log) + compile_log="$2" + shift 2 + ;; + --move-log) + move_log="$2" + shift 2 + ;; + -e|--exclude) + exclude_patterns+=("$2") + shift 2 + ;; + -h|--help) + show_help + exit 0 + ;; + *) + echo "Unknown option: $1" + show_help + exit 1 + ;; + esac +done + +# Check for conflicting options +if [ "$verbose" -eq 1 ] && [ "$quiet" -eq 1 ]; then + echo "Error: Cannot use both --verbose and --quiet" + exit 1 +fi + +# Check if required tools are installed +check_tool() { + if ! command -v "$1" &> /dev/null; then + echo "$1 is not installed. Please install it first." + echo "On most systems: $2" + exit 1 + fi +} + +check_tool "fd" "cargo install fd-find or apt/brew install fd-find" +check_tool "rg" "cargo install ripgrep or apt/brew install ripgrep" +check_tool "parallel" "apt/brew install parallel" + +# Check for skim and bat if select mode is enabled +if [ "$select_mode" -eq 1 ]; then + check_tool "sk" "cargo install skim or apt/brew install skim" + check_tool "bat" "cargo install bat or apt/brew install bat" +fi + +# ANSI color codes +GREEN='\033[0;32m' +BLUE='\033[0;34m' +YELLOW='\033[0;33m' +RED='\033[0;31m' +CYAN='\033[0;36m' +PURPLE='\033[0;35m' +NC='\033[0m' # No Color +BOLD='\033[1m' + +# Nerd font icons +ICON_SUCCESS="󰄬 " +ICON_ERROR="󰅚 " +ICON_WORKING="󰄾 " +ICON_COMPILE="󰈙 " +ICON_MOVE="󰆐 " +ICON_COMPLETE="󰄲 " +ICON_SUMMARY="󰋽 " +ICON_INFO="󰋼 " +ICON_DEBUG="󰃤 " +ICON_SELECT="󰓾 " + +# Logging functions +log_debug() { + if [ "$verbose" -eq 1 ]; then + echo -e "${BLUE}$ICON_DEBUG${NC} $*" + fi +} + +log_info() { + if [ "$quiet" -eq 0 ]; then + echo -e "${CYAN}$ICON_INFO${NC} $*" + fi +} + +log_warning() { + if [ "$quiet" -eq 0 ]; then + echo -e "${YELLOW}⚠️ ${NC} $*" + fi +} + +log_error() { + echo -e "${RED}${BOLD}$ICON_ERROR${NC} $*" +} + +log_success() { + if [ "$quiet" -eq 0 ]; then + echo -e "${GREEN}${BOLD}$ICON_SUCCESS${NC} $*" + fi +} + +# Create a directory for temporary files +temp_dir=$(mktemp -d) +compile_failures_dir="$temp_dir/compile_failures" +move_failures_dir="$temp_dir/move_failures" +progress_dir="$temp_dir/progress" +mkdir -p "$compile_failures_dir" "$move_failures_dir" "$progress_dir" + +# Create a lock file for progress updates and a flag for final progress +progress_lock="/tmp/typst_progress_lock" +final_progress_file="$temp_dir/final_progress" +touch "$final_progress_file" + +# Initialize log files +> "$compile_log" +> "$move_log" + +# Store current working directory +CWD=$(pwd) + +log_info "Starting Typst compilation process..." + +# Build exclude arguments for fd +fd_exclude_args=() +for pattern in "${exclude_patterns[@]}"; do + fd_exclude_args+=("-E" "$pattern") +done + +# Create a list of files to process +typst_files_list="$temp_dir/typst_files.txt" + +# Create a custom bat configuration for Typst syntax +setup_bat_for_typst() { + bat_config_dir="$temp_dir/bat_config" + mkdir -p "$bat_config_dir/syntaxes" + + # Create a basic syntax mapping file for Typst + cat > "$bat_config_dir/syntaxes/typst.sublime-syntax" << 'TYPST_SYNTAX' +%YAML 1.2 +--- +name: Typst +file_extensions: + - typ +scope: source.typst + +contexts: + main: + # Comments + - match: /\* + scope: comment.block.typst + push: block_comment + + - match: // + scope: comment.line.double-slash.typst + push: line_comment + + # Strings + - match: '"' + scope: punctuation.definition.string.begin.typst + push: double_string + + # Math + - match: '\$' + scope: punctuation.definition.math.begin.typst + push: math + + # Functions + - match: '#([a-zA-Z][a-zA-Z0-9_]*)' + scope: entity.name.function.typst + + # Variables + - match: '\b([a-zA-Z][a-zA-Z0-9_]*)\s*:' + scope: variable.other.typst + + # Keywords + - match: '\b(let|set|show|if|else|for|in|while|return|import|include|at|do|not|and|or|none|auto)\b' + scope: keyword.control.typst + + block_comment: + - match: \*/ + scope: comment.block.typst + pop: true + - match: . + scope: comment.block.typst + + line_comment: + - match: $ + pop: true + - match: . + scope: comment.line.double-slash.typst + + double_string: + - match: '"' + scope: punctuation.definition.string.end.typst + pop: true + - match: \\. + scope: constant.character.escape.typst + - match: . + scope: string.quoted.double.typst + + math: + - match: '\$' + scope: punctuation.definition.math.end.typst + pop: true + - match: . + scope: markup.math.typst +TYPST_SYNTAX + + echo "$bat_config_dir" +} + +if [ "$select_mode" -eq 1 ]; then + log_info "${PURPLE}$ICON_SELECT${NC} Interactive selection mode enabled" + log_info "Use TAB to select multiple files, ENTER to confirm" + + # Set up bat configuration for Typst syntax highlighting + bat_config=$(setup_bat_for_typst) + export BAT_CONFIG_PATH="$bat_config" + + # Use skim with bat for preview to select files + selected_files="$temp_dir/selected_files.txt" + + # Find all eligible .typ files for selection + fd '\.typ$' --type f "${fd_exclude_args[@]}" . > "$typst_files_list.all" + + # Check if we found any files + if [ ! -s "$typst_files_list.all" ]; then + log_error "No .typ files found matching your criteria." + rm -rf "$temp_dir" + exit 0 + fi + + # Prepare preview command for skim: use bat with custom syntax for .typ files + preview_cmd="bat --color=always --style=numbers --map-syntax='*.typ:Markdown' {} 2>/dev/null || cat {}" + + # Use skim with bat preview to select files + cat "$typst_files_list.all" | sk --multi \ + --preview "$preview_cmd" \ + --preview-window "right:70%" \ + --height "80%" \ + --prompt "Select .typ files to compile: " \ + --header "TAB: Select multiple files, ENTER: Confirm, CTRL-C: Cancel" \ + --no-mouse > "$selected_files" + + # Check if user selected any files + if [ ! -s "$selected_files" ]; then + log_error "No files selected. Exiting." + rm -rf "$temp_dir" + exit 0 + fi + + # Use the selected files instead of all discovered files + cp "$selected_files" "$typst_files_list" + total_selected=$(wc -l < "$typst_files_list") + total_available=$(wc -l < "$typst_files_list.all") + + log_info "Selected ${BOLD}$total_selected${NC} out of ${BOLD}$total_available${NC} available files" + + # Display tip about better Typst syntax highlighting + cat << 'TYPST_TIP' + +📝 To get proper Typst syntax highlighting in bat: + +1. Create a custom Typst syntax file: + mkdir -p ~/.config/bat/syntaxes + curl -L https://raw.githubusercontent.com/typst/typst-vs-code/main/syntaxes/typst.tmLanguage.json \ + -o ~/.config/bat/syntaxes/typst.tmLanguage.json + +2. Build bat's syntax cache: + bat cache --build + +This will provide proper syntax highlighting for Typst files in future uses! + +TYPST_TIP +else + # Normal mode - process all files + fd '\.typ$' --type f "${fd_exclude_args[@]}" . > "$typst_files_list" + log_info "Found ${BOLD}$(wc -l < "$typst_files_list")${NC} Typst files to process" +fi + +total_files=$(wc -l < "$typst_files_list") + +# Function to update progress bar during processing +update_progress_during() { + # If progress is disabled, do nothing + if [ "$show_progress" -eq 0 ]; then + return 0 + fi + + ( + # Try to acquire lock, but don't wait if busy + flock -n 200 || return 0 + + completed=$(find "$progress_dir" -type f | wc -l) + percent=$((completed * 100 / total_files)) + bar_length=50 + filled_length=$((bar_length * completed / total_files)) + + # Create the progress bar + bar="" + for ((i=0; i"$progress_lock" +} + +# Function to show final progress (called only once at the end) +show_final_progress() { + # If progress is disabled, do nothing + if [ "$show_progress" -eq 0 ]; then + return 0 + fi + + ( + flock -w 1 200 + + # Only proceed if the final progress hasn't been shown yet + if [ -e "$final_progress_file.done" ]; then + return 0 + fi + + completed=$(find "$progress_dir" -type f | wc -l) + percent=$((completed * 100 / total_files)) + bar_length=50 + filled_length=$((bar_length * completed / total_files)) + + # Create the progress bar + bar="" + for ((i=0; i"$progress_lock" +} + +# Function to process a single .typ file +process_file() { + typfile="$1" + file_id=$(echo "$typfile" | md5sum | cut -d' ' -f1) + + # Get the directory containing the .typ file + typdir=$(dirname "$typfile") + # Get the filename without path + filename=$(basename "$typfile") + # Get the filename without extension + basename="${filename%.typ}" + + # Check if output directory exists or should be created + target_dir="$typdir/$output_dir" + if [ ! -d "$target_dir" ]; then + if [ "$create_dirs" -eq 1 ]; then + if [ "$dry_run" -eq 0 ]; then + mkdir -p "$target_dir" + log_debug "Created directory: $target_dir" + else + log_debug "[DRY RUN] Would create directory: $target_dir" + fi + else + # Skip this file if output directory doesn't exist and --create-dirs not specified + log_debug "Skipping $typfile (no $output_dir directory)" + touch "$progress_dir/$file_id" + update_progress_during + return 0 + fi + fi + + # Skip if PDF is newer than source and --skip-newer is specified + if [ "$skip_newer" -eq 1 ] && [ -f "$target_dir/$basename.pdf" ]; then + if [ "$typfile" -ot "$target_dir/$basename.pdf" ] && [ "$force" -eq 0 ]; then + log_debug "Skipping $typfile (PDF is newer)" + touch "$progress_dir/$file_id" + update_progress_during + return 0 + fi + fi + + # Create a temporary file for capturing compiler output + temp_output="$temp_dir/output_${file_id}.log" + + # Add a header to the log before compilation + { + echo -e "\n===== COMPILING: $typfile =====" + echo "$(date)" + } > "$temp_output.header" + + # In dry run mode, just log what would be done + if [ "$dry_run" -eq 1 ]; then + log_debug "[DRY RUN] Would compile: $typfile" + log_debug "[DRY RUN] Would move to: $target_dir/$basename.pdf" + touch "$progress_dir/$file_id" + update_progress_during + return 0 + fi + + # Compile the .typ file using typst with --root flag and capture all output + if ! typst compile --root "$CWD" "$typfile" > "$temp_output.stdout" 2> "$temp_output.stderr"; then + # Store the failure + echo "$typfile" > "$compile_failures_dir/$file_id" + log_debug "Compilation failed for $typfile" + + # Combine stdout and stderr + cat "$temp_output.stdout" "$temp_output.stderr" > "$temp_output.combined" + + # Filter the output to only include error messages using ripgrep + rg "error:" -A 20 "$temp_output.combined" > "$temp_output.errors" || true + + # Lock the log file to avoid concurrent writes corrupting it + ( + flock -w 1 201 + cat "$temp_output.header" "$temp_output.errors" >> "$compile_log" + echo -e "\n" >> "$compile_log" + ) 201>"$compile_log.lock" + else + # Check if the output PDF exists + if [ -f "$typdir/$basename.pdf" ]; then + # Try to move the output PDF to the output directory + move_header="$temp_dir/move_${file_id}.header" + { + echo -e "\n===== MOVING: $typfile =====" + echo "$(date)" + } > "$move_header" + + if ! mv "$typdir/$basename.pdf" "$target_dir/" 2> "$temp_output.move_err"; then + echo "$typfile -> $target_dir/$basename.pdf" > "$move_failures_dir/$file_id" + log_debug "Failed to move $basename.pdf to $target_dir/" + + # Lock the log file to avoid concurrent writes corrupting it + ( + flock -w 1 202 + cat "$move_header" "$temp_output.move_err" >> "$move_log" + echo "Failed to move $typdir/$basename.pdf to $target_dir/" >> "$move_log" + ) 202>"$move_log.lock" + else + log_debug "Moved $basename.pdf to $target_dir/" + fi + else + # This is a fallback check in case typst doesn't return error code + echo "$typfile" > "$compile_failures_dir/$file_id" + log_debug "Compilation completed without errors but no PDF was generated for $typfile" + + # Lock the log file to avoid concurrent writes corrupting it + ( + flock -w 1 201 + echo "Compilation completed without errors but no PDF was generated" >> "$compile_log" + ) 201>"$compile_log.lock" + fi + fi + + # Mark this file as processed (for progress tracking) + touch "$progress_dir/$file_id" + + # Update the progress bar + update_progress_during +} + +export -f process_file +export -f update_progress_during +export -f show_final_progress +export -f log_debug +export -f log_info +export -f log_warning +export -f log_error +export -f log_success +export CWD +export temp_dir +export compile_failures_dir +export move_failures_dir +export progress_dir +export final_progress_file +export progress_lock +export compile_log +export move_log +export total_files +export GREEN BLUE YELLOW RED CYAN PURPLE NC BOLD +export ICON_SUCCESS ICON_ERROR ICON_WORKING ICON_COMPILE ICON_MOVE ICON_COMPLETE ICON_SUMMARY ICON_INFO ICON_DEBUG +export verbose +export quiet +export output_dir +export create_dirs +export dry_run +export skip_newer +export show_progress +export force + +# Determine the number of CPU cores and use that many parallel jobs (if not specified) +if [ "$jobs" -eq 0 ]; then + jobs=$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 4) +fi +log_info "Using ${BOLD}$jobs${NC} parallel jobs for compilation" + +# Initialize progress bar if showing progress +if [ "$show_progress" -eq 1 ]; then + update_progress_during +fi + +# Process files in parallel with --will-cite to suppress citation notice +if [ "$total_files" -gt 0 ]; then + cat "$typst_files_list" | parallel --will-cite --jobs "$jobs" process_file + + # Wait a moment for any remaining progress updates to complete + sleep 0.5 + + # Show the final progress exactly once if showing progress + if [ "$show_progress" -eq 1 ]; then + show_final_progress + fi + + # Print summary of failures + if [ "$quiet" -eq 0 ]; then + echo -e "\n${BOLD}${PURPLE}$ICON_SUMMARY Processing Summary${NC}" + fi + + # Collect all failure files + compile_failures=$(find "$compile_failures_dir" -type f | wc -l) + move_failures=$(find "$move_failures_dir" -type f | wc -l) + + if [ "$compile_failures" -eq 0 ] && [ "$move_failures" -eq 0 ]; then + log_success "All files processed successfully." + else + if [ "$compile_failures" -gt 0 ]; then + echo -e "\n${RED}${BOLD}$ICON_ERROR Compilation failures:${NC}" + find "$compile_failures_dir" -type f -exec cat {} \; | sort | while read -r failure; do + echo -e "${RED}- $failure${NC}" + done + echo -e "${BLUE}See $compile_log for detailed error messages.${NC}" + fi + + if [ "$move_failures" -gt 0 ]; then + echo -e "\n${YELLOW}${BOLD}$ICON_ERROR Move failures:${NC}" + find "$move_failures_dir" -type f -exec cat {} \; | sort | while read -r failure; do + echo -e "${YELLOW}- $failure${NC}" + done + echo -e "${BLUE}See $move_log for detailed error messages.${NC}" + fi + fi +else + log_warning "No .typ files found to process." +fi + +# Clean up temporary directory and lock files +rm -rf "$temp_dir" +rm -f "$progress_lock" "$compile_log.lock" "$move_log.lock" + +log_success "Processing complete." diff --git a/schule/bio/bio_2024-10-28.typ b/schule/bio/bio_2024-10-28.typ index 8d3d9d5..909f58d 100644 --- a/schule/bio/bio_2024-10-28.typ +++ b/schule/bio/bio_2024-10-28.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-10-31.typ b/schule/bio/bio_2024-10-31.typ index b5c2174..b4fe668 100644 --- a/schule/bio/bio_2024-10-31.typ +++ b/schule/bio/bio_2024-10-31.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-11-04.typ b/schule/bio/bio_2024-11-04.typ index 68f1149..669054c 100644 --- a/schule/bio/bio_2024-11-04.typ +++ b/schule/bio/bio_2024-11-04.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-11-07.typ b/schule/bio/bio_2024-11-07.typ index 877f5b7..ef01062 100644 --- a/schule/bio/bio_2024-11-07.typ +++ b/schule/bio/bio_2024-11-07.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-11-14.typ b/schule/bio/bio_2024-11-14.typ index 8701944..462b438 100644 --- a/schule/bio/bio_2024-11-14.typ +++ b/schule/bio/bio_2024-11-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-11-21.typ b/schule/bio/bio_2024-11-21.typ index 71a0c45..5a1a6ae 100644 --- a/schule/bio/bio_2024-11-21.typ +++ b/schule/bio/bio_2024-11-21.typ @@ -1,7 +1,7 @@ -#import "@preview/genealotree:0.1.0": * -#import "@preview/cetz:0.2.2": canvas +#import "@preview/genealotree:0.2.0": * +#import "@preview/cetz:0.3.4": canvas -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -15,7 +15,7 @@ show-solutions: false, ) -#show math.equation: set text(font: "New Computer Modern") //Wird für Mathe bei Grape-Suite gebraucht +// #show math.equation: set text(font: "New Computer Modern") //Wird für Mathe bei Grape-Suite gebraucht #show "->": sym.arrow #show "=>": sym.arrow.double diff --git a/schule/bio/bio_2024-11-25.typ b/schule/bio/bio_2024-11-25.typ index 31af3d8..bdcfb44 100644 --- a/schule/bio/bio_2024-11-25.typ +++ b/schule/bio/bio_2024-11-25.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-11-29.typ b/schule/bio/bio_2024-11-29.typ index d80b67b..31fc1b3 100644 --- a/schule/bio/bio_2024-11-29.typ +++ b/schule/bio/bio_2024-11-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-02.typ b/schule/bio/bio_2024-12-02.typ index 808c74f..173ec8c 100644 --- a/schule/bio/bio_2024-12-02.typ +++ b/schule/bio/bio_2024-12-02.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-05.typ b/schule/bio/bio_2024-12-05.typ index 6594db3..3155aae 100644 --- a/schule/bio/bio_2024-12-05.typ +++ b/schule/bio/bio_2024-12-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-09.typ b/schule/bio/bio_2024-12-09.typ index 6ad2a7d..5f031f4 100644 --- a/schule/bio/bio_2024-12-09.typ +++ b/schule/bio/bio_2024-12-09.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-13.typ b/schule/bio/bio_2024-12-13.typ index 5155a21..f6afd96 100644 --- a/schule/bio/bio_2024-12-13.typ +++ b/schule/bio/bio_2024-12-13.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-16.typ b/schule/bio/bio_2024-12-16.typ index 1c2b000..d638cd4 100644 --- a/schule/bio/bio_2024-12-16.typ +++ b/schule/bio/bio_2024-12-16.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2024-12-19.typ b/schule/bio/bio_2024-12-19.typ index dd97029..4a71a55 100644 --- a/schule/bio/bio_2024-12-19.typ +++ b/schule/bio/bio_2024-12-19.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2025-01-09.typ b/schule/bio/bio_2025-01-09.typ index 88d243b..79f6d08 100644 --- a/schule/bio/bio_2025-01-09.typ +++ b/schule/bio/bio_2025-01-09.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2025-01-26.typ b/schule/bio/bio_2025-01-26.typ index cf7a237..f0f4f47 100644 --- a/schule/bio/bio_2025-01-26.typ +++ b/schule/bio/bio_2025-01-26.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -235,7 +235,7 @@ würden diese schneller Sterben und somit weniger Nachfahren zeugen.\ === Beispiel eines Fließdiagrams #v(1em) -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #figure( rect( diagram( diff --git a/schule/bio/bio_2025-02-17.typ b/schule/bio/bio_2025-02-17.typ index feb38de..712e06f 100644 --- a/schule/bio/bio_2025-02-17.typ +++ b/schule/bio/bio_2025-02-17.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/bio_2025-02-21.typ b/schule/bio/bio_2025-02-21.typ index e3ce206..045bd80 100644 --- a/schule/bio/bio_2025-02-21.typ +++ b/schule/bio/bio_2025-02-21.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/bio/pdfs/bio_2024-09-23.pdf b/schule/bio/pdfs/bio_2024-09-23.pdf index cb7ac0d..0636177 100644 --- a/schule/bio/pdfs/bio_2024-09-23.pdf +++ b/schule/bio/pdfs/bio_2024-09-23.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9207d6889d47ac73490dc6898cab0c3fccc1ad615da7df9ad3b78756806b27b -size 44522 +oid sha256:25462ab40aebe0bcee0bd051a3794bd71d52916d2721be4df466ae657ecf27e1 +size 41323 diff --git a/schule/bio/pdfs/bio_2024-09-27.pdf b/schule/bio/pdfs/bio_2024-09-27.pdf index 5be759e..861052e 100644 --- a/schule/bio/pdfs/bio_2024-09-27.pdf +++ b/schule/bio/pdfs/bio_2024-09-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbc2d86c2e7f6a94bf6439439c08834b02e30d07907c58982784264d49a1101f -size 21899 +oid sha256:dba688091680d2bad1cdd10996f4776c9d5dd5986292e995468f67d723d34671 +size 21891 diff --git a/schule/bio/pdfs/bio_2024-09-30.pdf b/schule/bio/pdfs/bio_2024-09-30.pdf index 2b3c6a7..baa8b83 100644 --- a/schule/bio/pdfs/bio_2024-09-30.pdf +++ b/schule/bio/pdfs/bio_2024-09-30.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:676eb259d751ae0c6af719c68a3e79830409be5976f51781f7deca2b66b2e88b -size 18831 +oid sha256:808e9ca321e5b9daba92edf659e5d2896840e4c123f42fd4578a18a387b0a92f +size 18200 diff --git a/schule/bio/pdfs/bio_2024-10-28.pdf b/schule/bio/pdfs/bio_2024-10-28.pdf index d0e5dc3..446e90b 100644 --- a/schule/bio/pdfs/bio_2024-10-28.pdf +++ b/schule/bio/pdfs/bio_2024-10-28.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a0700f442a864ee82b19d28c5a98ee39ed763850c3431c630d9289d5b307147 -size 25928 +oid sha256:65d68284e874c812fba8b46832d7f14684d296cd76f64f681666fdb4cfd9f757 +size 19279 diff --git a/schule/bio/pdfs/bio_2024-10-31.pdf b/schule/bio/pdfs/bio_2024-10-31.pdf index a3bfd8c..fa17273 100644 --- a/schule/bio/pdfs/bio_2024-10-31.pdf +++ b/schule/bio/pdfs/bio_2024-10-31.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:883019383bc2f5d361834d94a13510fa2458f4b2e7914e72de8495108fd0f657 -size 950586 +oid sha256:b6bfcf52b22e6042033bcf120cf144b294b66152f7be21e6f1ac47b6ae38def5 +size 954317 diff --git a/schule/bio/pdfs/bio_2024-11-04.pdf b/schule/bio/pdfs/bio_2024-11-04.pdf index de98960..ea6079b 100644 --- a/schule/bio/pdfs/bio_2024-11-04.pdf +++ b/schule/bio/pdfs/bio_2024-11-04.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6bee08183cd6241a03c307be5a0686270dd51a97a3b2d96f519bd3c76baa031 -size 32340 +oid sha256:0322df1c6e82b5b9a7145e39742c1bf5f37c50a1cb79e763d12169dc9071f2b3 +size 23442 diff --git a/schule/bio/pdfs/bio_2024-11-07.pdf b/schule/bio/pdfs/bio_2024-11-07.pdf index bfd2177..d358d4e 100644 --- a/schule/bio/pdfs/bio_2024-11-07.pdf +++ b/schule/bio/pdfs/bio_2024-11-07.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9b446b37f83d5cea3a93534844e3ed9faa032f86d5d4271390eed68c204088fe -size 34242 +oid sha256:57f9778ac9cf33da7ceceb8791e569d35805594194062093e97746db786fae18 +size 24686 diff --git a/schule/bio/pdfs/bio_2024-11-14.pdf b/schule/bio/pdfs/bio_2024-11-14.pdf index 42eb88e..f9bb2c5 100644 --- a/schule/bio/pdfs/bio_2024-11-14.pdf +++ b/schule/bio/pdfs/bio_2024-11-14.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed1dab2f6f8da28987fccd89e539596c44f563a20c18f58f98c8c39fadeedb4d -size 138097 +oid sha256:25b0dfa634582bed354b2c2b15613c428fa37329206ca811f69ebb323d8d6f14 +size 130225 diff --git a/schule/bio/pdfs/bio_2024-11-21.pdf b/schule/bio/pdfs/bio_2024-11-21.pdf new file mode 100644 index 0000000..3c52b28 --- /dev/null +++ b/schule/bio/pdfs/bio_2024-11-21.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c3a53700d6abdcf5033bf988c49b15495638f0ab78185c5b2055b788b43f1f +size 34975 diff --git a/schule/bio/pdfs/bio_2024-11-25.pdf b/schule/bio/pdfs/bio_2024-11-25.pdf index e6ba14b..7c0e287 100644 --- a/schule/bio/pdfs/bio_2024-11-25.pdf +++ b/schule/bio/pdfs/bio_2024-11-25.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:972909c3cb44e93497cacef672ea4e8d3151d088a1facaa64c325467312d6c33 -size 45870 +oid sha256:33e67762a451304b9e422a0be45906fbac7446859aaf9e5d37ba283ee0837238 +size 33541 diff --git a/schule/bio/pdfs/bio_2024-11-29.pdf b/schule/bio/pdfs/bio_2024-11-29.pdf index f813800..1ebec54 100644 --- a/schule/bio/pdfs/bio_2024-11-29.pdf +++ b/schule/bio/pdfs/bio_2024-11-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:465fb20477270ad4747015fc706dd4e254972b2fabf6a0a30cddd7ccb194c8b9 -size 13862 +oid sha256:96c284071497e68d86575e590cae4da74b94851c4b9227f3557cd634c8231429 +size 13214 diff --git a/schule/bio/pdfs/bio_2024-12-02.pdf b/schule/bio/pdfs/bio_2024-12-02.pdf index d5bc472..6296a66 100644 --- a/schule/bio/pdfs/bio_2024-12-02.pdf +++ b/schule/bio/pdfs/bio_2024-12-02.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd0fb894c269bd5b503dd969ab160e70f560d8a82ee4c6f4a5e8b79a8171f803 -size 77314 +oid sha256:0e2b914d8e07286c987e2e2e88147c0e252c9374e5dd2283fc5af358210409a8 +size 75315 diff --git a/schule/bio/pdfs/bio_2024-12-05.pdf b/schule/bio/pdfs/bio_2024-12-05.pdf index 6c0e89e..5ff5759 100644 --- a/schule/bio/pdfs/bio_2024-12-05.pdf +++ b/schule/bio/pdfs/bio_2024-12-05.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05a12ba4fec014d2b2bf918288a0cc4a2dbd204a890e09d2e78684c743f8ac68 -size 44464 +oid sha256:f99bcef9e3ca2ad58d5691005430d3f552cb143103b62a4f2914a74b5897d582 +size 41036 diff --git a/schule/bio/pdfs/bio_2024-12-09.pdf b/schule/bio/pdfs/bio_2024-12-09.pdf index 9d26bdb..a928e61 100644 --- a/schule/bio/pdfs/bio_2024-12-09.pdf +++ b/schule/bio/pdfs/bio_2024-12-09.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:edafd3f047e0c1cd4815e6b2b0228418ecf9417e6cf90ed184358fe34ae13b01 -size 13956 +oid sha256:4fa742f55172e24c6494bda15d1fdf534641b447501cb5dfc0bfb9514c35d367 +size 13231 diff --git a/schule/bio/pdfs/bio_2024-12-13.pdf b/schule/bio/pdfs/bio_2024-12-13.pdf index 7ee7f49..322490e 100644 --- a/schule/bio/pdfs/bio_2024-12-13.pdf +++ b/schule/bio/pdfs/bio_2024-12-13.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7502da7fb95d8b5ec9a02c909a8eaa018a11555ee39d4035ab331d858adbb0b7 -size 83740 +oid sha256:57a1addf02316ea3e3d74dd4172086cdb2a3284bb8ad03afe6585e34caa54b88 +size 83788 diff --git a/schule/bio/pdfs/bio_2024-12-16.pdf b/schule/bio/pdfs/bio_2024-12-16.pdf index 3df149d..be8a542 100644 --- a/schule/bio/pdfs/bio_2024-12-16.pdf +++ b/schule/bio/pdfs/bio_2024-12-16.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:399231c700eda6490f6f301dbe4d8458fb8a664893764b62efba5285b68cf4ce -size 85744 +oid sha256:4bda0a8fba680edcf52d9053f16dfaabacf7d61dba0bdb710a44a4fcf1913900 +size 82909 diff --git a/schule/bio/pdfs/bio_2024-12-19.pdf b/schule/bio/pdfs/bio_2024-12-19.pdf index de94d12..6b32023 100644 --- a/schule/bio/pdfs/bio_2024-12-19.pdf +++ b/schule/bio/pdfs/bio_2024-12-19.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:480538a61e732564863f5e1b513c9980f5e39f17dd652cb0d9d4f7b0ead0cb86 +oid sha256:3a11f13a8cca00d42c6ddeb03868fe0c2d709726e43a1fc5134a43bdbd25b7cc size 16102 diff --git a/schule/bio/pdfs/bio_2025-01-09.pdf b/schule/bio/pdfs/bio_2025-01-09.pdf index e190fb8..ec95bbd 100644 --- a/schule/bio/pdfs/bio_2025-01-09.pdf +++ b/schule/bio/pdfs/bio_2025-01-09.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31338a85e3ce4bc35a164cdad85f3742f99f803fb39cd7bee729ba2c6c1fc056 -size 96715 +oid sha256:b0933a686f74d74635e99c98c4807ba58803c683c178ce7753bc380a0a877b08 +size 96764 diff --git a/schule/bio/pdfs/bio_2025-01-26.pdf b/schule/bio/pdfs/bio_2025-01-26.pdf index 99c4ccb..45736b6 100644 --- a/schule/bio/pdfs/bio_2025-01-26.pdf +++ b/schule/bio/pdfs/bio_2025-01-26.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4966a61f9172246eb45a93eb48511c86eadb63a5dd52046f1634b42c0050038f -size 221650 +oid sha256:d7f836faa41ad38c845ab98793cef311fa9a2cbae6df8e226aa1d9d4fa02b5ec +size 209764 diff --git a/schule/bio/pdfs/bio_2025-02-17.pdf b/schule/bio/pdfs/bio_2025-02-17.pdf new file mode 100644 index 0000000..fdeb426 --- /dev/null +++ b/schule/bio/pdfs/bio_2025-02-17.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e7d1b5a970985ade74ef496db54c060d620cc73b4b6f56351b8da300085d10 +size 68816 diff --git a/schule/bio/pdfs/bio_2025-02-21.pdf b/schule/bio/pdfs/bio_2025-02-21.pdf index 7c099ae..5b0ced5 100644 --- a/schule/bio/pdfs/bio_2025-02-21.pdf +++ b/schule/bio/pdfs/bio_2025-02-21.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c529173b91ad87a26d5fa9943223388026195531f5691508bc3877279bcdad2 -size 15973 +oid sha256:95347057c498d8649c7d0ac05164c406dbb88fb4117a2e89c0384895410d3b41 +size 15975 diff --git a/schule/bio/pdfs/bio_2025-02-24.pdf b/schule/bio/pdfs/bio_2025-02-24.pdf index ee8e6c4..5d3845a 100644 --- a/schule/bio/pdfs/bio_2025-02-24.pdf +++ b/schule/bio/pdfs/bio_2025-02-24.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e3e9cc0a62950a4a58444f69e7a8820fd4964c366650acb33dbe1794babd936 -size 89039 +oid sha256:9dfbb59dcab7acde608a6186d3a0623f4400f4dd163b17897d057efe251cf93a +size 91175 diff --git a/schule/bio/pdfs/bio_2025-03-06.pdf b/schule/bio/pdfs/bio_2025-03-06.pdf index 452cf22..2b47eeb 100644 --- a/schule/bio/pdfs/bio_2025-03-06.pdf +++ b/schule/bio/pdfs/bio_2025-03-06.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82ac2eeb54e9cf025fe08d57118b9857112dd6afa8298f2930adfc103ccdf016 +oid sha256:6232f8bdf9b958708848cd1c8de3b79f2bc006b8fea23655550d12131086035c size 15264 diff --git a/schule/bio/pdfs/bio_2025-03-13.pdf b/schule/bio/pdfs/bio_2025-03-13.pdf index abcfc23..8bf1c6c 100644 --- a/schule/bio/pdfs/bio_2025-03-13.pdf +++ b/schule/bio/pdfs/bio_2025-03-13.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90fd10a46e916b345c68844a5ce02a942b52be76a597800e0f2b673ab0088f0f +oid sha256:89fe33eb46eb13c4f08045c5fb1b790997a8341157f0dc97d6bf00cd1c8b1186 size 16353 diff --git a/schule/deutsch/DE_2024-10-28.typ b/schule/deutsch/DE_2024-10-28.typ index 8750122..324bbc7 100644 --- a/schule/deutsch/DE_2024-10-28.typ +++ b/schule/deutsch/DE_2024-10-28.typ @@ -2,7 +2,7 @@ // #show: apply-template // #set page(header: [Deutsch am 28.10.2024]) -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #show: project.with( diff --git a/schule/deutsch/DE_2024-10-31.typ b/schule/deutsch/DE_2024-10-31.typ index 4a3b54b..aeeaac1 100644 --- a/schule/deutsch/DE_2024-10-31.typ +++ b/schule/deutsch/DE_2024-10-31.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-11-07.typ b/schule/deutsch/DE_2024-11-07.typ index 81cfd07..07473ff 100644 --- a/schule/deutsch/DE_2024-11-07.typ +++ b/schule/deutsch/DE_2024-11-07.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-11-11.typ b/schule/deutsch/DE_2024-11-11.typ index f35ee40..1869995 100644 --- a/schule/deutsch/DE_2024-11-11.typ +++ b/schule/deutsch/DE_2024-11-11.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-11-14.typ b/schule/deutsch/DE_2024-11-14.typ index c8a3f06..3a396f2 100644 --- a/schule/deutsch/DE_2024-11-14.typ +++ b/schule/deutsch/DE_2024-11-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-11-28.typ b/schule/deutsch/DE_2024-11-28.typ index e32cebf..cda97e5 100644 --- a/schule/deutsch/DE_2024-11-28.typ +++ b/schule/deutsch/DE_2024-11-28.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-12-05.typ b/schule/deutsch/DE_2024-12-05.typ index 1b6b41c..6a3cf35 100644 --- a/schule/deutsch/DE_2024-12-05.typ +++ b/schule/deutsch/DE_2024-12-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2024-12-12.typ b/schule/deutsch/DE_2024-12-12.typ index 7b7786a..b695e36 100644 --- a/schule/deutsch/DE_2024-12-12.typ +++ b/schule/deutsch/DE_2024-12-12.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2025-01-27.typ b/schule/deutsch/DE_2025-01-27.typ index e3ee3d4..0245fda 100644 --- a/schule/deutsch/DE_2025-01-27.typ +++ b/schule/deutsch/DE_2025-01-27.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/DE_2025-02-17.typ b/schule/deutsch/DE_2025-02-17.typ index 693e5e0..f70b5e2 100644 --- a/schule/deutsch/DE_2025-02-17.typ +++ b/schule/deutsch/DE_2025-02-17.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/deutsch/pdfs/DE_2024-09-30.pdf b/schule/deutsch/pdfs/DE_2024-09-30.pdf index d300890..efe5426 100644 --- a/schule/deutsch/pdfs/DE_2024-09-30.pdf +++ b/schule/deutsch/pdfs/DE_2024-09-30.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84042968d38fa422f36ebb44689f5e9bdea7b9eef0d9e14b77b78465c70e412f -size 162872 +oid sha256:a6e46e4680457404e1e5635761925c0a14691c894407e6011821848753d35899 +size 27600 diff --git a/schule/deutsch/pdfs/DE_2024-10-28.pdf b/schule/deutsch/pdfs/DE_2024-10-28.pdf index d240b64..f2df609 100644 --- a/schule/deutsch/pdfs/DE_2024-10-28.pdf +++ b/schule/deutsch/pdfs/DE_2024-10-28.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1219ff08157e90dc67932464ce3292ec23dbf09103ef90261fd01c8e7e62beaf -size 20836 +oid sha256:8aa0a97eafeb498b3df227f60c0bc2965827d46dbe7e4316bba2e2fcdfc6a636 +size 15894 diff --git a/schule/deutsch/pdfs/DE_2024-10-31.pdf b/schule/deutsch/pdfs/DE_2024-10-31.pdf index d450596..3b03a53 100644 --- a/schule/deutsch/pdfs/DE_2024-10-31.pdf +++ b/schule/deutsch/pdfs/DE_2024-10-31.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3113fc7789e6a52e14e3e53cff81648d0abc561168f817eb1d4345f89f31d732 -size 20241 +oid sha256:991d82a0b1356a800fbb6f1152c881c51bbb6747a8347c5bffb8800d7155dbc1 +size 15667 diff --git a/schule/deutsch/pdfs/DE_2024-11-07.pdf b/schule/deutsch/pdfs/DE_2024-11-07.pdf index 58f5d13..98b62af 100644 --- a/schule/deutsch/pdfs/DE_2024-11-07.pdf +++ b/schule/deutsch/pdfs/DE_2024-11-07.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:837e56daafb0b7d73e401b4bd2518878abbc009ac42ed1d9c0bca8acfa0313c2 -size 40565 +oid sha256:1d6260ea9c9ce9d1c3fc42ec916f1109d9ae1692df511bf34d6eee298294a369 +size 30683 diff --git a/schule/deutsch/pdfs/DE_2024-11-11.pdf b/schule/deutsch/pdfs/DE_2024-11-11.pdf index 9854558..4e9a6aa 100644 --- a/schule/deutsch/pdfs/DE_2024-11-11.pdf +++ b/schule/deutsch/pdfs/DE_2024-11-11.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9b5bbb9aae52233664b701f6d5719d9569aab668ffa5ea007c77f719476dd603 -size 45150 +oid sha256:87474dc07fcb7ba48ed33bd8d23cb20965e4534e48b813b86fd47dc7535d1226 +size 32494 diff --git a/schule/deutsch/pdfs/DE_2024-11-14.pdf b/schule/deutsch/pdfs/DE_2024-11-14.pdf new file mode 100644 index 0000000..f442b16 --- /dev/null +++ b/schule/deutsch/pdfs/DE_2024-11-14.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531c28257ea081a0d03531d707cdedaaca27f35f5678d158542e68fcf65554b3 +size 18989 diff --git a/schule/deutsch/pdfs/DE_2024-11-28.pdf b/schule/deutsch/pdfs/DE_2024-11-28.pdf index 2d00d91..1a6193c 100644 --- a/schule/deutsch/pdfs/DE_2024-11-28.pdf +++ b/schule/deutsch/pdfs/DE_2024-11-28.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1e0a25d87b2a673baed4bba3ae7cfe854bcf6afbd491a33c133b44f047e80dc -size 23241 +oid sha256:fec6331db0ca9a257f0be4805c23fc97dba49567c25eec797502cec3448447c6 +size 18039 diff --git a/schule/deutsch/pdfs/DE_2024-12-05.pdf b/schule/deutsch/pdfs/DE_2024-12-05.pdf index 8eb0331..19988cb 100644 --- a/schule/deutsch/pdfs/DE_2024-12-05.pdf +++ b/schule/deutsch/pdfs/DE_2024-12-05.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57f544b4134afc31d848aeb931d08cb38cbd8b307bec0918b35b2774cb300403 -size 29513 +oid sha256:9f4f5c58f1b352f4af6b3a28b25ac89404c3d4ac8d5e3199e494a5218a7a462e +size 25571 diff --git a/schule/deutsch/pdfs/DE_2024-12-12.pdf b/schule/deutsch/pdfs/DE_2024-12-12.pdf index fb038fd..5da7dff 100644 --- a/schule/deutsch/pdfs/DE_2024-12-12.pdf +++ b/schule/deutsch/pdfs/DE_2024-12-12.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf8e543b86873e7409c7ce80e60e8507a0976d559b5c090acd42d10c9b83ecfa -size 11658 +oid sha256:d95b4d1058ab6d9464fec2703d4f5e337c95e87bbeea2cfffec3510aac38e1fc +size 11659 diff --git a/schule/deutsch/pdfs/DE_2025-01-27.pdf b/schule/deutsch/pdfs/DE_2025-01-27.pdf index 0dc1c0c..fd5fece 100644 --- a/schule/deutsch/pdfs/DE_2025-01-27.pdf +++ b/schule/deutsch/pdfs/DE_2025-01-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61c1b01107021aa9825dc06dfa7f995e88b65f087564933c4b914001f1cbc303 -size 16699 +oid sha256:3891c9eee583d32a4101a6db865c4ca8d7fda3398ede63fd3a7a49534863172f +size 16702 diff --git a/schule/deutsch/pdfs/DE_2025-02-17.pdf b/schule/deutsch/pdfs/DE_2025-02-17.pdf new file mode 100644 index 0000000..3b060c1 --- /dev/null +++ b/schule/deutsch/pdfs/DE_2025-02-17.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b56e6b08fd80545b49fed6657e51b1204be1f80d12c261d6bd2971aaa99573 +size 17069 diff --git a/schule/deutsch/pdfs/DE_2025-03-20.pdf b/schule/deutsch/pdfs/DE_2025-03-20.pdf index 9e0e824..64c3098 100644 --- a/schule/deutsch/pdfs/DE_2025-03-20.pdf +++ b/schule/deutsch/pdfs/DE_2025-03-20.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:194a868c2fbe829315877c29129dc98196d4f2b8566f1bb98a2f35d009a656ca +oid sha256:7bc9a6a751bb765aa6312b7c4fa2cc060ad72ae00903d0be2885d115bbb4b703 size 14903 diff --git a/schule/englisch/EN_2024-10-30.typ b/schule/englisch/EN_2024-10-30.typ index f066c90..faacd21 100644 --- a/schule/englisch/EN_2024-10-30.typ +++ b/schule/englisch/EN_2024-10-30.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-19.typ b/schule/englisch/EN_2024-11-19.typ index a764f40..7b6e73d 100644 --- a/schule/englisch/EN_2024-11-19.typ +++ b/schule/englisch/EN_2024-11-19.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-20.typ b/schule/englisch/EN_2024-11-20.typ index 7c2b648..8ce9411 100644 --- a/schule/englisch/EN_2024-11-20.typ +++ b/schule/englisch/EN_2024-11-20.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-21.typ b/schule/englisch/EN_2024-11-21.typ index a38a6ec..5626657 100644 --- a/schule/englisch/EN_2024-11-21.typ +++ b/schule/englisch/EN_2024-11-21.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-22.typ b/schule/englisch/EN_2024-11-22.typ index 590f35a..03ff2cc 100644 --- a/schule/englisch/EN_2024-11-22.typ +++ b/schule/englisch/EN_2024-11-22.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-27.typ b/schule/englisch/EN_2024-11-27.typ index b14a4c6..16c916e 100644 --- a/schule/englisch/EN_2024-11-27.typ +++ b/schule/englisch/EN_2024-11-27.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-11-29.typ b/schule/englisch/EN_2024-11-29.typ index af51a7e..30107f8 100644 --- a/schule/englisch/EN_2024-11-29.typ +++ b/schule/englisch/EN_2024-11-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-12-04.typ b/schule/englisch/EN_2024-12-04.typ index 6a1af4a..f892b12 100644 --- a/schule/englisch/EN_2024-12-04.typ +++ b/schule/englisch/EN_2024-12-04.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2024-12-05.typ b/schule/englisch/EN_2024-12-05.typ index 3a1be7b..64effa0 100644 --- a/schule/englisch/EN_2024-12-05.typ +++ b/schule/englisch/EN_2024-12-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2025-01-09.typ b/schule/englisch/EN_2025-01-09.typ index 90c8525..2edd865 100644 --- a/schule/englisch/EN_2025-01-09.typ +++ b/schule/englisch/EN_2025-01-09.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2025-01-29.typ b/schule/englisch/EN_2025-01-29.typ index d362bb4..3d54321 100644 --- a/schule/englisch/EN_2025-01-29.typ +++ b/schule/englisch/EN_2025-01-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2025-01-31.typ b/schule/englisch/EN_2025-01-31.typ index 986eae3..164f465 100644 --- a/schule/englisch/EN_2025-01-31.typ +++ b/schule/englisch/EN_2025-01-31.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/EN_2025-02-06.typ b/schule/englisch/EN_2025-02-06.typ index 90b7827..16fcb01 100644 --- a/schule/englisch/EN_2025-02-06.typ +++ b/schule/englisch/EN_2025-02-06.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "en") diff --git a/schule/englisch/pdfs/EN_2024-10-04.pdf b/schule/englisch/pdfs/EN_2024-10-04.pdf new file mode 100644 index 0000000..bf40593 --- /dev/null +++ b/schule/englisch/pdfs/EN_2024-10-04.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af81105001011c37bce2ba9e0992ef06e3053dec5629e8a9837d7c0c7706f757 +size 24108 diff --git a/schule/englisch/pdfs/EN_2024-10-30.pdf b/schule/englisch/pdfs/EN_2024-10-30.pdf index 999a8e3..819d98a 100644 --- a/schule/englisch/pdfs/EN_2024-10-30.pdf +++ b/schule/englisch/pdfs/EN_2024-10-30.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2031499b586488fd7416a31dcab10ac9f46626dde96724365876900a2b54f78c -size 40670 +oid sha256:9a8ea766ccb06cb932a7a94e1a8d8432738bca08ac231cf3d693e0578e0902a6 +size 31820 diff --git a/schule/englisch/pdfs/EN_2024-11-19.pdf b/schule/englisch/pdfs/EN_2024-11-19.pdf index e226de5..d5fcac2 100644 --- a/schule/englisch/pdfs/EN_2024-11-19.pdf +++ b/schule/englisch/pdfs/EN_2024-11-19.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d55c43d0ecf77eb1a7302c74d09c36c9843ebbe0b8c2d77e34b2e2046273c56 -size 329288 +oid sha256:c9323fada6f9d02beceb84d5c1106957c4c85413178ccedea1002f911f854c79 +size 318415 diff --git a/schule/englisch/pdfs/EN_2024-11-20.pdf b/schule/englisch/pdfs/EN_2024-11-20.pdf new file mode 100644 index 0000000..bb4f00c --- /dev/null +++ b/schule/englisch/pdfs/EN_2024-11-20.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e34bc9070fbe32623c864a80e094019e587441e2fd90ce2de77fd7c519d67a7 +size 14513 diff --git a/schule/englisch/pdfs/EN_2024-11-21.pdf b/schule/englisch/pdfs/EN_2024-11-21.pdf index 6e948fa..fefafb5 100644 --- a/schule/englisch/pdfs/EN_2024-11-21.pdf +++ b/schule/englisch/pdfs/EN_2024-11-21.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57bf2620129f2ca746415581a964263eb31fa645a8d7dd7d95f6784de16c89db -size 27105 +oid sha256:1986b5d5244e7928808ecec18587f58a7c1c0e18c2e06192ca12046b6aa8e990 +size 21018 diff --git a/schule/englisch/pdfs/EN_2024-11-22.pdf b/schule/englisch/pdfs/EN_2024-11-22.pdf index 506e38c..13b8d8b 100644 --- a/schule/englisch/pdfs/EN_2024-11-22.pdf +++ b/schule/englisch/pdfs/EN_2024-11-22.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22651cf29a95898459e5f5589b5d987a311396b4a5e778479e6a09356339c153 -size 22496 +oid sha256:5a5a83c538c2f9376d9a93762f3b99c61adf6a33886d6e897655795b7c766a10 +size 15966 diff --git a/schule/englisch/pdfs/EN_2024-11-27.pdf b/schule/englisch/pdfs/EN_2024-11-27.pdf index 7b5e57e..3b431c7 100644 --- a/schule/englisch/pdfs/EN_2024-11-27.pdf +++ b/schule/englisch/pdfs/EN_2024-11-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50dce59c8ac7df2019c768428805779005a1d55a778a92caa05d955fa6ab4cea -size 27118 +oid sha256:4f35ac8c5e62113f55c9801ab16a7c80821a888b38f60ecf5ac1ac3f000caa13 +size 21562 diff --git a/schule/englisch/pdfs/EN_2024-11-29.pdf b/schule/englisch/pdfs/EN_2024-11-29.pdf index 8a3c03f..ed66135 100644 --- a/schule/englisch/pdfs/EN_2024-11-29.pdf +++ b/schule/englisch/pdfs/EN_2024-11-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d05073d851a4bad0cbd2ed2241a6b30378addc1936af881625a1c49fedb064c1 -size 12885 +oid sha256:2241d086d0d6756fd90c8f2c8b63b4d5aefb9e924f4fa383ae76728814b3100a +size 12884 diff --git a/schule/englisch/pdfs/EN_2024-12-04.pdf b/schule/englisch/pdfs/EN_2024-12-04.pdf index 655b294..441436e 100644 --- a/schule/englisch/pdfs/EN_2024-12-04.pdf +++ b/schule/englisch/pdfs/EN_2024-12-04.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2fcc854b9a7c5c7305268fdbbaa8477c0bf868c2d63a3c9aef79be0c167df5e -size 23861 +oid sha256:15eb52d0e604193f973ce509497dc157ceebba7c95a4e536ef5d650593e0c1af +size 23858 diff --git a/schule/englisch/pdfs/EN_2024-12-05.pdf b/schule/englisch/pdfs/EN_2024-12-05.pdf index 4cd59ce..5846825 100644 --- a/schule/englisch/pdfs/EN_2024-12-05.pdf +++ b/schule/englisch/pdfs/EN_2024-12-05.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71fe92e21f525d4e1c0a904ec7237884bcd2a46bfe78792c0bcde9baf5270889 +oid sha256:0f3ac420acf49a3fa98c7f7ec2f93564a80373aec47b50e26fc33d5d92716b6e size 17925 diff --git a/schule/englisch/pdfs/EN_2025-01-09.pdf b/schule/englisch/pdfs/EN_2025-01-09.pdf index d811b31..b4dad2b 100644 --- a/schule/englisch/pdfs/EN_2025-01-09.pdf +++ b/schule/englisch/pdfs/EN_2025-01-09.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:125f7594f7cb1997c2cc4198da3d09112bf02c82e09d2d62ce31ce3b9270fd27 -size 16615 +oid sha256:5ed59e816dec1350bf92c083ce806cf8c3d8c24d3cdbaca254b4eff360094a33 +size 24792 diff --git a/schule/englisch/pdfs/EN_2025-01-29.pdf b/schule/englisch/pdfs/EN_2025-01-29.pdf index dc6bde5..4938137 100644 --- a/schule/englisch/pdfs/EN_2025-01-29.pdf +++ b/schule/englisch/pdfs/EN_2025-01-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:745f8b038d348525186870539410367daa56450747f92b4a104f9c8eed2f50a0 -size 14509 +oid sha256:6076b456eb4f6ac3de3dd1c87db56072216787707b5e4e87727844997ac59838 +size 13721 diff --git a/schule/englisch/pdfs/EN_2025-01-31.pdf b/schule/englisch/pdfs/EN_2025-01-31.pdf new file mode 100644 index 0000000..52eda53 --- /dev/null +++ b/schule/englisch/pdfs/EN_2025-01-31.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c5504c98cc6971c7ab7862cdf412f1feafb1d46abe33b606cf66df96d8404c +size 13558 diff --git a/schule/englisch/pdfs/EN_2025-02-06.pdf b/schule/englisch/pdfs/EN_2025-02-06.pdf new file mode 100644 index 0000000..7c9f77c --- /dev/null +++ b/schule/englisch/pdfs/EN_2025-02-06.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41fb5e42d195e0220cf338636fdc06317a9c47b93e3b24c47f72af79c92fbe7 +size 25358 diff --git a/schule/englisch/pdfs/EN_2025-03-06.pdf b/schule/englisch/pdfs/EN_2025-03-06.pdf index 08f910a..aec20c5 100644 --- a/schule/englisch/pdfs/EN_2025-03-06.pdf +++ b/schule/englisch/pdfs/EN_2025-03-06.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4c1af92b2ac3f40cb09cd36624e7205b1b2c68f169b31dbb193a25acfb695a4 +oid sha256:dcd6e6adeb686dcf2e12fc671a55a5b7f01b14f2beaead959c52fb2353f08004 size 24120 diff --git a/schule/englisch/pdfs/EN_2025-03-13.pdf b/schule/englisch/pdfs/EN_2025-03-13.pdf new file mode 100644 index 0000000..91064b6 --- /dev/null +++ b/schule/englisch/pdfs/EN_2025-03-13.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15042f76e3f0b6b1f3eb1aa3c058089dcde9db22c04400874380038485dd058a +size 24070 diff --git a/schule/englisch/pdfs/EN_2025-03-19.pdf b/schule/englisch/pdfs/EN_2025-03-19.pdf index bc2c2ed..e717bfb 100644 --- a/schule/englisch/pdfs/EN_2025-03-19.pdf +++ b/schule/englisch/pdfs/EN_2025-03-19.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73e218cc640f4de914d8df6b712894822ef567f764009696446e79f15dc9e835 +oid sha256:c37f5f9e9c02bbfe5b9e856da70e213e219cf12ca8091a94d1bf8fca9abb078f size 11398 diff --git a/schule/geschichte/GE_2024-10-01.typ b/schule/geschichte/GE_2024-10-01.typ index ff5ca53..b63abc0 100644 --- a/schule/geschichte/GE_2024-10-01.typ +++ b/schule/geschichte/GE_2024-10-01.typ @@ -1,6 +1,6 @@ #import "../../template.typ": apply-template #show: apply-template -// #import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +// #import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #set page(header: [Geschichte am 01.10.2024]) = Zur Klausur diff --git a/schule/geschichte/GE_2024-10-29.typ b/schule/geschichte/GE_2024-10-29.typ index 2ec7ad3..f0f6af4 100644 --- a/schule/geschichte/GE_2024-10-29.typ +++ b/schule/geschichte/GE_2024-10-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-11-12.typ b/schule/geschichte/GE_2024-11-12.typ index 35c6dfd..8eb1c01 100644 --- a/schule/geschichte/GE_2024-11-12.typ +++ b/schule/geschichte/GE_2024-11-12.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-11-15.typ b/schule/geschichte/GE_2024-11-15.typ index 4aace75..73abcee 100644 --- a/schule/geschichte/GE_2024-11-15.typ +++ b/schule/geschichte/GE_2024-11-15.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-11-22.typ b/schule/geschichte/GE_2024-11-22.typ index 5a3e44d..35c8519 100644 --- a/schule/geschichte/GE_2024-11-22.typ +++ b/schule/geschichte/GE_2024-11-22.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-11-29.typ b/schule/geschichte/GE_2024-11-29.typ index 87161b7..b1827b2 100644 --- a/schule/geschichte/GE_2024-11-29.typ +++ b/schule/geschichte/GE_2024-11-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-12-03.typ b/schule/geschichte/GE_2024-12-03.typ index 7f85105..8c76e21 100644 --- a/schule/geschichte/GE_2024-12-03.typ +++ b/schule/geschichte/GE_2024-12-03.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2024-12-13.typ b/schule/geschichte/GE_2024-12-13.typ index 4c5bee9..1f67e7f 100644 --- a/schule/geschichte/GE_2024-12-13.typ +++ b/schule/geschichte/GE_2024-12-13.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -24,7 +24,7 @@ Ziele: = "Blitzsiege" & "Blitzkriege" -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #figure( diagram( // debug: true, diff --git a/schule/geschichte/GE_2024-12-17.typ b/schule/geschichte/GE_2024-12-17.typ index 5566136..2e39f06 100644 --- a/schule/geschichte/GE_2024-12-17.typ +++ b/schule/geschichte/GE_2024-12-17.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2025-01-07.typ b/schule/geschichte/GE_2025-01-07.typ index d8976fe..53bc59e 100644 --- a/schule/geschichte/GE_2025-01-07.typ +++ b/schule/geschichte/GE_2025-01-07.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2025-01-10.typ b/schule/geschichte/GE_2025-01-10.typ index c36b5ef..9fd43e0 100644 --- a/schule/geschichte/GE_2025-01-10.typ +++ b/schule/geschichte/GE_2025-01-10.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2025-01-31.typ b/schule/geschichte/GE_2025-01-31.typ index 7a84d6f..3ea0bec 100644 --- a/schule/geschichte/GE_2025-01-31.typ +++ b/schule/geschichte/GE_2025-01-31.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2025-02-11.typ b/schule/geschichte/GE_2025-02-11.typ index 960a753..f5c7419 100644 --- a/schule/geschichte/GE_2025-02-11.typ +++ b/schule/geschichte/GE_2025-02-11.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/GE_2025-02-21.typ b/schule/geschichte/GE_2025-02-21.typ index 9609e93..88a5c58 100644 --- a/schule/geschichte/GE_2025-02-21.typ +++ b/schule/geschichte/GE_2025-02-21.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/geschichte/pdfs/GE_2024-09-24.pdf b/schule/geschichte/pdfs/GE_2024-09-24.pdf new file mode 100644 index 0000000..60adea9 --- /dev/null +++ b/schule/geschichte/pdfs/GE_2024-09-24.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e34d74914357fa01b845c534b082544593750876a3d8707f940d90719b827e5 +size 27810 diff --git a/schule/geschichte/pdfs/GE_2024-09-27.pdf b/schule/geschichte/pdfs/GE_2024-09-27.pdf index d33bb0f..2a0b19d 100644 --- a/schule/geschichte/pdfs/GE_2024-09-27.pdf +++ b/schule/geschichte/pdfs/GE_2024-09-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0884ff01872eefe51e460aeec9dddfc7b46fcbd2d36a65851bdacd0a91ba756d +oid sha256:82d3929ae3751bf2fe84e62ce0a45964b2c0b6d3d49e81daabe20f3db4dd189d size 20460 diff --git a/schule/geschichte/pdfs/GE_2024-10-01.pdf b/schule/geschichte/pdfs/GE_2024-10-01.pdf index 4318c0c..5db032d 100644 --- a/schule/geschichte/pdfs/GE_2024-10-01.pdf +++ b/schule/geschichte/pdfs/GE_2024-10-01.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe7cc2b22364b26deb30c1886428b3fccd4a0306e5bbb7dfaf2172bd166c8125 +oid sha256:74527b5d7448e67d02f120242306101f1488587e7ab454e6e04934d61b82cf5b size 20643 diff --git a/schule/geschichte/pdfs/GE_2024-10-04.pdf b/schule/geschichte/pdfs/GE_2024-10-04.pdf index 9402ad8..8cc7a42 100644 --- a/schule/geschichte/pdfs/GE_2024-10-04.pdf +++ b/schule/geschichte/pdfs/GE_2024-10-04.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec4b18bc5021ef067085d5e77dc15e85b6cea8ac949f63f434fd2e9b0f7a571c -size 21497 +oid sha256:fce0c7401860938bb4afa73f2bd1d040235478adcbb30838500ef109b18003e6 +size 21482 diff --git a/schule/geschichte/pdfs/GE_2024-10-29.pdf b/schule/geschichte/pdfs/GE_2024-10-29.pdf index 51a9c43..2c1a10d 100644 --- a/schule/geschichte/pdfs/GE_2024-10-29.pdf +++ b/schule/geschichte/pdfs/GE_2024-10-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95e523b5da1a31112b763159cd3570da284266ffe0838c52a795485cab104f0d -size 34053 +oid sha256:e9c07598fe68b8a88de3b968ed229d481d7431af25deb74ed0e1f4153a1cade4 +size 25315 diff --git a/schule/geschichte/pdfs/GE_2024-11-12.pdf b/schule/geschichte/pdfs/GE_2024-11-12.pdf index d40c0e1..eada91a 100644 --- a/schule/geschichte/pdfs/GE_2024-11-12.pdf +++ b/schule/geschichte/pdfs/GE_2024-11-12.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:356ecb83450d94414b7498d8fc65434f1b1db82231b8df16f4cbdf2f0ac5a554 -size 24347 +oid sha256:be0599048e04082caa2acbe23fc88782ae5b0ca5244d9fa7179b6eb10c7ae108 +size 18878 diff --git a/schule/geschichte/pdfs/GE_2024-11-15.pdf b/schule/geschichte/pdfs/GE_2024-11-15.pdf index 8c19e19..8db9570 100644 --- a/schule/geschichte/pdfs/GE_2024-11-15.pdf +++ b/schule/geschichte/pdfs/GE_2024-11-15.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a167d3799da56377d3aa5ffea8d9068f2fcfd758821dafc8ee6746c4638addd7 -size 54615 +oid sha256:8d7cb13a96baedf7cb59daef10233a544dd88aeed963ad9e01940192888fcaaf +size 49913 diff --git a/schule/geschichte/pdfs/GE_2024-11-22.pdf b/schule/geschichte/pdfs/GE_2024-11-22.pdf index 97cbca0..357456b 100644 --- a/schule/geschichte/pdfs/GE_2024-11-22.pdf +++ b/schule/geschichte/pdfs/GE_2024-11-22.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f99eab4886568ac52304adc4c637e71c81cbaca6d7bc4c9ab5369e45363665a -size 36531 +oid sha256:31e87032131a98d3d5fad73a9db9588b73853e5808e3e5cf004647e7585d12a4 +size 27520 diff --git a/schule/geschichte/pdfs/GE_2024-11-29.pdf b/schule/geschichte/pdfs/GE_2024-11-29.pdf index 48d6137..41fc401 100644 --- a/schule/geschichte/pdfs/GE_2024-11-29.pdf +++ b/schule/geschichte/pdfs/GE_2024-11-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90e4689c395b3bddbf380abda4e323cfa656e95e6b814432c8361f6f740252c0 -size 27886 +oid sha256:39c37c9e2ee783c9e058561e3275beda99705ee3a322f20f78b7d76204042031 +size 25980 diff --git a/schule/geschichte/pdfs/GE_2024-12-03.pdf b/schule/geschichte/pdfs/GE_2024-12-03.pdf index 68c042a..33ff737 100644 --- a/schule/geschichte/pdfs/GE_2024-12-03.pdf +++ b/schule/geschichte/pdfs/GE_2024-12-03.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90befe5fa2eba96bd4261de92c451710ebc5d98c21194a1ea3ed37023ab7d9d8 -size 16450 +oid sha256:e164bd8c44a56fc09fbad0ccc7e6d60b0a656471104090937d0d86b85a13e38b +size 16484 diff --git a/schule/geschichte/pdfs/GE_2024-12-13.pdf b/schule/geschichte/pdfs/GE_2024-12-13.pdf index 0b70471..824b422 100644 --- a/schule/geschichte/pdfs/GE_2024-12-13.pdf +++ b/schule/geschichte/pdfs/GE_2024-12-13.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d65891c6d835f7fd4578ab90d0e36d7e92261d86dd7cf6811e2951e012483f6 -size 21792 +oid sha256:80220adab785be3f7dd0c81a903a2419c1ba7601ef1aafa9f3fddc6af3ff4343 +size 21800 diff --git a/schule/geschichte/pdfs/GE_2024-12-17.pdf b/schule/geschichte/pdfs/GE_2024-12-17.pdf index a536579..5cb011c 100644 --- a/schule/geschichte/pdfs/GE_2024-12-17.pdf +++ b/schule/geschichte/pdfs/GE_2024-12-17.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4bd338b5ead8e90996ab300f9823235498a90a3b5a387e2ec44ce6087d543ea -size 18607 +oid sha256:381744cba2874a68dd4b67c083ade69c8930a3f2e4cd8ed096df28aab5a3703e +size 18600 diff --git a/schule/geschichte/pdfs/GE_2025-01-07.pdf b/schule/geschichte/pdfs/GE_2025-01-07.pdf index 0334654..21946e9 100644 --- a/schule/geschichte/pdfs/GE_2025-01-07.pdf +++ b/schule/geschichte/pdfs/GE_2025-01-07.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:277714c49d0c024b93aef73642adba987a057a5719239fc27dbae4cc944ce36e -size 15421 +oid sha256:7eb9d3b2373a0a7ec48bfde6e5ae422fca0bca080f58c1a9917b6c418d2aaba7 +size 15430 diff --git a/schule/geschichte/pdfs/GE_2025-01-10.pdf b/schule/geschichte/pdfs/GE_2025-01-10.pdf new file mode 100644 index 0000000..191edfa --- /dev/null +++ b/schule/geschichte/pdfs/GE_2025-01-10.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635e83829ec09f36094f47ad39a89a6a3e33e51b2dbc81d1df31bf1ea1c93973 +size 11387 diff --git a/schule/geschichte/pdfs/GE_2025-01-31.pdf b/schule/geschichte/pdfs/GE_2025-01-31.pdf new file mode 100644 index 0000000..13f6f53 --- /dev/null +++ b/schule/geschichte/pdfs/GE_2025-01-31.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e89306c2208e47c0dd1b42e5272fc92975713261ffb8a4cf7a2890c8e1b9608 +size 16154 diff --git a/schule/geschichte/pdfs/GE_2025-02-11.pdf b/schule/geschichte/pdfs/GE_2025-02-11.pdf index 743b066..4952b4f 100644 --- a/schule/geschichte/pdfs/GE_2025-02-11.pdf +++ b/schule/geschichte/pdfs/GE_2025-02-11.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:429dc263338ba4df31505c08ebae299fdb6c55d34f7b60720eb3272c777e79ad -size 25765 +oid sha256:b463fa5306861ae16bd149f2ed12fa4d99168b3c798efbbb97e57f92af51b6a8 +size 26543 diff --git a/schule/geschichte/pdfs/GE_2025-02-21.pdf b/schule/geschichte/pdfs/GE_2025-02-21.pdf new file mode 100644 index 0000000..7fe2fa0 --- /dev/null +++ b/schule/geschichte/pdfs/GE_2025-02-21.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739e274db1dcf0c5fd173179518acbd1aa3589935df7e5feeb35a6d5d3812949 +size 12770 diff --git a/schule/geschichte/pdfs/GE_2025-02-25.pdf b/schule/geschichte/pdfs/GE_2025-02-25.pdf index 130dff6..ae31aa2 100644 --- a/schule/geschichte/pdfs/GE_2025-02-25.pdf +++ b/schule/geschichte/pdfs/GE_2025-02-25.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:115b52724db0a65604c2a61222cffb0d46b53a697f91ef04893d5a7708d4f687 +oid sha256:0e3bb63b2c0eef6c1dcb6b206a0fc99b0e826e468fcb9ecfd5ad1b3fc9476474 size 19015 diff --git a/schule/geschichte/pdfs/GE_2025-03-07.pdf b/schule/geschichte/pdfs/GE_2025-03-07.pdf new file mode 100644 index 0000000..0fb93c3 --- /dev/null +++ b/schule/geschichte/pdfs/GE_2025-03-07.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149ff258c2ad44c0ceb5d3c3feded263c34ad05bc006825c9cff8a3ae0cbd1aa +size 18038 diff --git a/schule/kunst/KU_2024-11-14.typ b/schule/kunst/KU_2024-11-14.typ index d009ee4..800de6e 100644 --- a/schule/kunst/KU_2024-11-14.typ +++ b/schule/kunst/KU_2024-11-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/kunst/KU_2025-01-29.typ b/schule/kunst/KU_2025-01-29.typ index 94a9d55..90f572e 100644 --- a/schule/kunst/KU_2025-01-29.typ +++ b/schule/kunst/KU_2025-01-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/kunst/KU_2025-02-19.typ b/schule/kunst/KU_2025-02-19.typ index 8266e49..233ecf1 100644 --- a/schule/kunst/KU_2025-02-19.typ +++ b/schule/kunst/KU_2025-02-19.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/kunst/pdfs/KU_2024-09-25.pdf b/schule/kunst/pdfs/KU_2024-09-25.pdf new file mode 100644 index 0000000..f434ab0 --- /dev/null +++ b/schule/kunst/pdfs/KU_2024-09-25.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a68b2b2f810ed05249840ec0929ab0055b5068e7982ef408681450808590c1 +size 257070 diff --git a/schule/kunst/pdfs/KU_2024-09-26.pdf b/schule/kunst/pdfs/KU_2024-09-26.pdf index f191b73..c81e118 100644 --- a/schule/kunst/pdfs/KU_2024-09-26.pdf +++ b/schule/kunst/pdfs/KU_2024-09-26.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6dd29ab5773643580cb23be8b9f4061cc9f2c854766983d622d6c6114d6815c9 -size 63211 +oid sha256:886c46ea0aac8a4922b0ccc1b074dc9b85a8fb03394cb2d1bedd5f8cdd98e316 +size 274598 diff --git a/schule/kunst/pdfs/KU_2024-11-14.pdf b/schule/kunst/pdfs/KU_2024-11-14.pdf new file mode 100644 index 0000000..f258603 --- /dev/null +++ b/schule/kunst/pdfs/KU_2024-11-14.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599e7828e0cdf18fe92e002632279cf6203807187bf17d40fcea824919f543d6 +size 14691 diff --git a/schule/kunst/pdfs/KU_2025-01-29.pdf b/schule/kunst/pdfs/KU_2025-01-29.pdf index ab13776..811a424 100644 --- a/schule/kunst/pdfs/KU_2025-01-29.pdf +++ b/schule/kunst/pdfs/KU_2025-01-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59145f67e1516d3c649727cee144a16ad7e338777034e4d6745553ed2fa98a35 -size 13719 +oid sha256:0f1ed0030acca2854b1ae9f1317be35166282e1ed752f2ee94237725a3e34307 +size 14380 diff --git a/schule/kunst/pdfs/KU_2025-02-19.pdf b/schule/kunst/pdfs/KU_2025-02-19.pdf new file mode 100644 index 0000000..f2cc3d1 --- /dev/null +++ b/schule/kunst/pdfs/KU_2025-02-19.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534e04b0bd16b1baa298d7a722c0548ed393687df9fc6e6610ebf79f4b1845a4 +size 13412 diff --git a/schule/mathe/MA_2024-10-28.typ b/schule/mathe/MA_2024-10-28.typ index e3c9e24..87d8074 100644 --- a/schule/mathe/MA_2024-10-28.typ +++ b/schule/mathe/MA_2024-10-28.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-10-31.typ b/schule/mathe/MA_2024-10-31.typ index 886e564..d9debcb 100644 --- a/schule/mathe/MA_2024-10-31.typ +++ b/schule/mathe/MA_2024-10-31.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-11-11.typ b/schule/mathe/MA_2024-11-11.typ index dfba635..9894327 100644 --- a/schule/mathe/MA_2024-11-11.typ +++ b/schule/mathe/MA_2024-11-11.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-11-14.typ b/schule/mathe/MA_2024-11-14.typ index b4653ba..774edfb 100644 --- a/schule/mathe/MA_2024-11-14.typ +++ b/schule/mathe/MA_2024-11-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-11-18.typ b/schule/mathe/MA_2024-11-18.typ index b080672..f536c7f 100644 --- a/schule/mathe/MA_2024-11-18.typ +++ b/schule/mathe/MA_2024-11-18.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-11-21.typ b/schule/mathe/MA_2024-11-21.typ index 6f82f68..0676d27 100644 --- a/schule/mathe/MA_2024-11-21.typ +++ b/schule/mathe/MA_2024-11-21.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-12-05.typ b/schule/mathe/MA_2024-12-05.typ index c11e8fc..2587d41 100644 --- a/schule/mathe/MA_2024-12-05.typ +++ b/schule/mathe/MA_2024-12-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2024-12-09.typ b/schule/mathe/MA_2024-12-09.typ index 9f3d501..a7fec50 100644 --- a/schule/mathe/MA_2024-12-09.typ +++ b/schule/mathe/MA_2024-12-09.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2025-01-27.typ b/schule/mathe/MA_2025-01-27.typ index 88bb6b8..bdd050e 100644 --- a/schule/mathe/MA_2025-01-27.typ +++ b/schule/mathe/MA_2025-01-27.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, task, subtask #set text(lang: "de") diff --git a/schule/mathe/MA_2025-02-06.typ b/schule/mathe/MA_2025-02-06.typ index 36beb59..bf279b9 100644 --- a/schule/mathe/MA_2025-02-06.typ +++ b/schule/mathe/MA_2025-02-06.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -140,7 +140,7 @@ HA: Nr. 4b) + 7 [], [5], [9], [5], [0] ) -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #diagram( debug: true, diff --git a/schule/mathe/MA_2025-02-17.typ b/schule/mathe/MA_2025-02-17.typ index 6482d83..b2f6583 100644 --- a/schule/mathe/MA_2025-02-17.typ +++ b/schule/mathe/MA_2025-02-17.typ @@ -1,4 +1,4 @@ -// #import "@preview/grape-suite:1.0.0": exercise +// #import "@preview/grape-suite:2.0.0": exercise // #import exercise: project #set text(lang: "de") diff --git a/schule/mathe/pdfs/MA_2024-09-30.pdf b/schule/mathe/pdfs/MA_2024-09-30.pdf index c60c235..e98a645 100644 --- a/schule/mathe/pdfs/MA_2024-09-30.pdf +++ b/schule/mathe/pdfs/MA_2024-09-30.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb4e0c6c6ffa7836185b9919cd467cc400fed2ace41cbc18b750b7276744bc1a -size 46780 +oid sha256:14951e6289fba02a2e2d212114a0af26228bac9aa2350d6d69b975793bf890bd +size 39915 diff --git a/schule/mathe/pdfs/MA_2024-10-28.pdf b/schule/mathe/pdfs/MA_2024-10-28.pdf index dca7ec2..a7b13ca 100644 --- a/schule/mathe/pdfs/MA_2024-10-28.pdf +++ b/schule/mathe/pdfs/MA_2024-10-28.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56fc959c30b27e63b091e7ee8168c2f9481e9ebcdec72d030a587bb9041c3e53 -size 51176 +oid sha256:c0280a721db867df3ef5bedb948c9e7d90a3c02acc745d358053b94e27cc0592 +size 43205 diff --git a/schule/mathe/pdfs/MA_2024-10-31.pdf b/schule/mathe/pdfs/MA_2024-10-31.pdf index 25335cc..ac3e931 100644 --- a/schule/mathe/pdfs/MA_2024-10-31.pdf +++ b/schule/mathe/pdfs/MA_2024-10-31.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24ea91ec685f27320c030c89740dd4be10d248bb8b2b7c0c64b0770d11c016a6 -size 22141 +oid sha256:6ec27f8490d00f4bacac5c39b5792ad9f082631a1c26dceccd7b880e37556ed0 +size 22074 diff --git a/schule/mathe/pdfs/MA_2024-11-11.pdf b/schule/mathe/pdfs/MA_2024-11-11.pdf index e051bdf..a096489 100644 --- a/schule/mathe/pdfs/MA_2024-11-11.pdf +++ b/schule/mathe/pdfs/MA_2024-11-11.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2446ecbda5c01e3c71f7d30c125acd43692397c0ad7fcdb0a1338a9247e3a33d -size 37381 +oid sha256:f3ea83837f45b0ac8ed2811f1e74bee1de109d44cc43f6507d84939318a7d3d7 +size 28658 diff --git a/schule/mathe/pdfs/MA_2024-11-14.pdf b/schule/mathe/pdfs/MA_2024-11-14.pdf new file mode 100644 index 0000000..02adc5e --- /dev/null +++ b/schule/mathe/pdfs/MA_2024-11-14.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d52868736e13ecd34aa25b6b8ac4385c58f53d73b0d5f70378956a4a48fcaa4 +size 17596 diff --git a/schule/mathe/pdfs/MA_2024-11-18.pdf b/schule/mathe/pdfs/MA_2024-11-18.pdf index 9ea8faf..c91ccd2 100644 --- a/schule/mathe/pdfs/MA_2024-11-18.pdf +++ b/schule/mathe/pdfs/MA_2024-11-18.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ca76b7939e4761b6c56a1da6472905364c7e1fb12997c6dbc0b583ca48e36d4 -size 29531 +oid sha256:b513dedaa6ba484bd2360d263434cf4c9fa6ce0f36af53de541ad40827c617ca +size 24374 diff --git a/schule/mathe/pdfs/MA_2024-11-21.pdf b/schule/mathe/pdfs/MA_2024-11-21.pdf index f90bedb..d21f1e5 100644 --- a/schule/mathe/pdfs/MA_2024-11-21.pdf +++ b/schule/mathe/pdfs/MA_2024-11-21.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7eba2c514732dcc794995daaedcca187449225ac8fb1178a04098e855f0a233c -size 33177 +oid sha256:ebab98d4e120fdd1c297c0647dfc9f3177402e3d90ae5515134989b4b180db69 +size 25917 diff --git a/schule/mathe/pdfs/MA_2024-12-05.pdf b/schule/mathe/pdfs/MA_2024-12-05.pdf index efe8d8e..9f5f8fe 100644 --- a/schule/mathe/pdfs/MA_2024-12-05.pdf +++ b/schule/mathe/pdfs/MA_2024-12-05.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2bdcecbfe831bb96a5cedd878a272f64a843fa65757bf321577b13c38effe8b -size 21968 +oid sha256:fc0778323f7b3fd559f387195dd505579c9fd33947621e2eca3b6146df5b67d7 +size 32144 diff --git a/schule/mathe/pdfs/MA_2024-12-09.pdf b/schule/mathe/pdfs/MA_2024-12-09.pdf index ddefb59..8280786 100644 --- a/schule/mathe/pdfs/MA_2024-12-09.pdf +++ b/schule/mathe/pdfs/MA_2024-12-09.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07e640c7d6d3a277d07d837eeae7a7e86c307e0584d387e53f233d6db0956f12 -size 28699 +oid sha256:59462f3b38822d3ad0af5ed5fdf5fdb0b1dfd8965304a49d213c464f70074797 +size 28799 diff --git a/schule/mathe/pdfs/MA_2025-01-27.pdf b/schule/mathe/pdfs/MA_2025-01-27.pdf index 97ab9d6..08352bf 100644 --- a/schule/mathe/pdfs/MA_2025-01-27.pdf +++ b/schule/mathe/pdfs/MA_2025-01-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b604c0e885a65deb53a68d3be54887bdeadf768cdca2c846f0ed3b6ad0e1412 -size 59899 +oid sha256:54f78b1a0181bd1a2497ccaed70812ac174aedc22c3d85162e643ee1b3318de8 +size 53771 diff --git a/schule/mathe/pdfs/MA_2025-02-06.pdf b/schule/mathe/pdfs/MA_2025-02-06.pdf index 898ae35..bfdb589 100644 --- a/schule/mathe/pdfs/MA_2025-02-06.pdf +++ b/schule/mathe/pdfs/MA_2025-02-06.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f62eb420c0ed5f10f4fbc85208d27c18310700332fe93d4a4bab8a18776eef4 -size 53329 +oid sha256:0fb3e9914e7f5f44a1f325e075c6202d4adc3ae9b1121619ba8ffadc706fd441 +size 47177 diff --git a/schule/mathe/pdfs/MA_2025-02-17.pdf b/schule/mathe/pdfs/MA_2025-02-17.pdf new file mode 100644 index 0000000..1024e5d --- /dev/null +++ b/schule/mathe/pdfs/MA_2025-02-17.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749f02e75017db9f1a9b8eb7aeea9c365402f41715873339661cc28be26b5bf9 +size 23887 diff --git a/schule/mathe/pdfs/MA_2025-02-24.pdf b/schule/mathe/pdfs/MA_2025-02-24.pdf new file mode 100644 index 0000000..6f0cf85 --- /dev/null +++ b/schule/mathe/pdfs/MA_2025-02-24.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ec29555f2314731cfab9f9591e08a4191e95dbeebc16d6f45a4ad3ae1ae439 +size 23430 diff --git a/schule/mathe/pdfs/MA_2025-03-20.pdf b/schule/mathe/pdfs/MA_2025-03-20.pdf new file mode 100644 index 0000000..e892f6d --- /dev/null +++ b/schule/mathe/pdfs/MA_2025-03-20.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d49e01d1b044b151ded4e8f25065deaafe8a265a2214efb1f77a8d8cdbbb708 +size 19872 diff --git a/schule/philosophie/PL_2024-10-01.typ b/schule/philosophie/PL_2024-10-01.typ index 0566cf4..55ab1b9 100644 --- a/schule/philosophie/PL_2024-10-01.typ +++ b/schule/philosophie/PL_2024-10-01.typ @@ -1,7 +1,7 @@ #import "../../template.typ": apply-template #show: apply-template -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #set page(header: [Philosophie am 01.10.2024]) diff --git a/schule/philosophie/PL_2024-10.28.typ b/schule/philosophie/PL_2024-10.28.typ index 4dced87..2a92133 100644 --- a/schule/philosophie/PL_2024-10.28.typ +++ b/schule/philosophie/PL_2024-10.28.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2024-11-19.typ b/schule/philosophie/PL_2024-11-19.typ index eb6f700..3e7e3cd 100644 --- a/schule/philosophie/PL_2024-11-19.typ +++ b/schule/philosophie/PL_2024-11-19.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de", ) diff --git a/schule/philosophie/PL_2024-12-03.typ b/schule/philosophie/PL_2024-12-03.typ index 867e3e1..d2e29eb 100644 --- a/schule/philosophie/PL_2024-12-03.typ +++ b/schule/philosophie/PL_2024-12-03.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2024-12-09.typ b/schule/philosophie/PL_2024-12-09.typ index f0b8077..2d0dc64 100644 --- a/schule/philosophie/PL_2024-12-09.typ +++ b/schule/philosophie/PL_2024-12-09.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -36,7 +36,7 @@ wie wenn etwas haptisch, visuell, etc. wahrnimmt. Die Reflexion handelt davon, dass man seine eignen Gedankengänge betrachtet, wie in Erinnerungen, und diese wahrnimmt. Locke beschreibt also wie der Mensch das Äußere und Innere wahrnimmt und aus diesen Faktoren unser Weltbild entsteht. -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #diagram( // debug: true, diff --git a/schule/philosophie/PL_2024-12-10.typ b/schule/philosophie/PL_2024-12-10.typ index 3267652..4629533 100644 --- a/schule/philosophie/PL_2024-12-10.typ +++ b/schule/philosophie/PL_2024-12-10.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -16,7 +16,7 @@ = Wiederholung: Agrippinische Skepsis -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #figure( diagram( // debug: true, diff --git a/schule/philosophie/PL_2024-12-16.typ b/schule/philosophie/PL_2024-12-16.typ index 92a670e..098a246 100644 --- a/schule/philosophie/PL_2024-12-16.typ +++ b/schule/philosophie/PL_2024-12-16.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") @@ -17,7 +17,7 @@ = Locke: Gedankenexperiment (Buch S. 353) -#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge +#import "@preview/fletcher:0.5.7" as fletcher: diagram, node, edge #diagram( // debug: true, diff --git a/schule/philosophie/PL_2024-12-17.typ b/schule/philosophie/PL_2024-12-17.typ index 4641401..3ed72f8 100644 --- a/schule/philosophie/PL_2024-12-17.typ +++ b/schule/philosophie/PL_2024-12-17.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2025-01-07.typ b/schule/philosophie/PL_2025-01-07.typ index fb6b389..be0e071 100644 --- a/schule/philosophie/PL_2025-01-07.typ +++ b/schule/philosophie/PL_2025-01-07.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2025-01-14.typ b/schule/philosophie/PL_2025-01-14.typ index c842604..6786913 100644 --- a/schule/philosophie/PL_2025-01-14.typ +++ b/schule/philosophie/PL_2025-01-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2025-02-03.typ b/schule/philosophie/PL_2025-02-03.typ index 5a8da14..69f241b 100644 --- a/schule/philosophie/PL_2025-02-03.typ +++ b/schule/philosophie/PL_2025-02-03.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/PL_2025-02-11.typ b/schule/philosophie/PL_2025-02-11.typ index ca9dd1c..c9ed7f0 100644 --- a/schule/philosophie/PL_2025-02-11.typ +++ b/schule/philosophie/PL_2025-02-11.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/philosophie/pdfs/PL_2024-09-24.pdf b/schule/philosophie/pdfs/PL_2024-09-24.pdf index b974478..7dacad3 100644 --- a/schule/philosophie/pdfs/PL_2024-09-24.pdf +++ b/schule/philosophie/pdfs/PL_2024-09-24.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3df9ece98c6ed9027e457dcb3b3b3937d4baa61afc972aa0899c05ba1e5ddc32 -size 32530 +oid sha256:751d52d7a5eedfa581193d4b628c75930b902fc97f78fd20069226de6405890d +size 29550 diff --git a/schule/philosophie/pdfs/PL_2024-10-01.pdf b/schule/philosophie/pdfs/PL_2024-10-01.pdf new file mode 100644 index 0000000..bb41e9c --- /dev/null +++ b/schule/philosophie/pdfs/PL_2024-10-01.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80535ff766bbfd58a6d9b99f58f35243d0c54844c3ca2a20162e0ee6b3808b6d +size 34054 diff --git a/schule/philosophie/pdfs/PL_2024-10.28.pdf b/schule/philosophie/pdfs/PL_2024-10.28.pdf new file mode 100644 index 0000000..1e4d212 --- /dev/null +++ b/schule/philosophie/pdfs/PL_2024-10.28.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e63f49d4af03fe9928ec1b0516814c5a766c9f99cdd2ea5626d3869c3784e5 +size 30864 diff --git a/schule/philosophie/pdfs/PL_2024-11-19.pdf b/schule/philosophie/pdfs/PL_2024-11-19.pdf index 61f288c..b3569ae 100644 --- a/schule/philosophie/pdfs/PL_2024-11-19.pdf +++ b/schule/philosophie/pdfs/PL_2024-11-19.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17579e6652c4f54e3786faad5281d0b6ab665a79aebfb2f5852a198960ef23ad -size 22516 +oid sha256:79b21b05aed21f930c813db7460cf0330bc6f546c998dc3fa920563be65764ab +size 17840 diff --git a/schule/philosophie/pdfs/PL_2024-12-03.pdf b/schule/philosophie/pdfs/PL_2024-12-03.pdf index bd24e39..3329d50 100644 --- a/schule/philosophie/pdfs/PL_2024-12-03.pdf +++ b/schule/philosophie/pdfs/PL_2024-12-03.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba2b663253a4a1ca1080b9b67b5e36638b78725c1e40ea8dcb6d9a16d6727186 -size 31450 +oid sha256:83d5d78802817aa72440444be981541938478fc88f5ee3f241c4024424ff1400 +size 28125 diff --git a/schule/philosophie/pdfs/PL_2024-12-09.pdf b/schule/philosophie/pdfs/PL_2024-12-09.pdf index 7f91634..1109465 100644 --- a/schule/philosophie/pdfs/PL_2024-12-09.pdf +++ b/schule/philosophie/pdfs/PL_2024-12-09.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:850753848340e2edb649a2a149a48b629e06871ad3c3bded657e63bd2cca5ee6 -size 16545 +oid sha256:25ba103c7e1674d96c00bdd1c1163ca49dec9426c99ac96187c6c9c5e4995663 +size 16543 diff --git a/schule/philosophie/pdfs/PL_2024-12-10.pdf b/schule/philosophie/pdfs/PL_2024-12-10.pdf index 9b09660..0e001b5 100644 --- a/schule/philosophie/pdfs/PL_2024-12-10.pdf +++ b/schule/philosophie/pdfs/PL_2024-12-10.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b58ac80379280921bfcd9ca7e3aef2874f0467447d71277ec21b158cb194e4f -size 21638 +oid sha256:f3ef5660a392abd8e3270d8a0312a6b4556d2c971f3c7932271cb340aaa017e6 +size 21653 diff --git a/schule/philosophie/pdfs/PL_2024-12-16.pdf b/schule/philosophie/pdfs/PL_2024-12-16.pdf index 4676adb..d3da00c 100644 --- a/schule/philosophie/pdfs/PL_2024-12-16.pdf +++ b/schule/philosophie/pdfs/PL_2024-12-16.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:603ee5bc2da0de685fa9dce772cdc7372f7dcdea399a0b52e7901b14c148990a -size 11972 +oid sha256:f2e0911f2f5b1c4c2e7a9d3ea95cb44f06d270aafcba661d11958888be79fadf +size 12047 diff --git a/schule/philosophie/pdfs/PL_2024-12-17.pdf b/schule/philosophie/pdfs/PL_2024-12-17.pdf index acde6ca..45b01af 100644 --- a/schule/philosophie/pdfs/PL_2024-12-17.pdf +++ b/schule/philosophie/pdfs/PL_2024-12-17.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa58d1d5c846628e65701c569e162c79f2c5276ad6f9d0d5f2f547a7e0da40b2 -size 50616 +oid sha256:fedce3b7736c6d526f7eab6299737276e273f6cbb93d2ef759963c31c59bb5a4 +size 50657 diff --git a/schule/philosophie/pdfs/PL_2025-01-07.pdf b/schule/philosophie/pdfs/PL_2025-01-07.pdf index 3d622c5..c11e981 100644 --- a/schule/philosophie/pdfs/PL_2025-01-07.pdf +++ b/schule/philosophie/pdfs/PL_2025-01-07.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:758741f46977bdd69129089b33f733d311b081892e89b9e23fcdf240f235348d -size 50972 +oid sha256:783cfc4e313a66656caca1a5c6ff457945198f89d2b4caa34d8e4184c756cfcf +size 51016 diff --git a/schule/philosophie/pdfs/PL_2025-01-14.pdf b/schule/philosophie/pdfs/PL_2025-01-14.pdf index d7887fe..43d2142 100644 --- a/schule/philosophie/pdfs/PL_2025-01-14.pdf +++ b/schule/philosophie/pdfs/PL_2025-01-14.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a4facbf589410093064b686bc5e329aca2d82f747e3a76e2a4b69a3cb51c1fe +oid sha256:e0d1443011bac613d12605099ff76583491aa8fe2f2cc83b05ca84a5fc8f92dd size 20791 diff --git a/schule/philosophie/pdfs/PL_2025-02-03.pdf b/schule/philosophie/pdfs/PL_2025-02-03.pdf new file mode 100644 index 0000000..c502e00 --- /dev/null +++ b/schule/philosophie/pdfs/PL_2025-02-03.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf3ca685546c3b8e5342defcdddf8cc26604de3206758c52368963f0f413abd +size 13741 diff --git a/schule/philosophie/pdfs/PL_2025-02-11.pdf b/schule/philosophie/pdfs/PL_2025-02-11.pdf new file mode 100644 index 0000000..ccac5c2 --- /dev/null +++ b/schule/philosophie/pdfs/PL_2025-02-11.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22c7334916b5cd76c434c8cc486e2d602bd7193a5ff3b9cdf534b4203be8da4 +size 14192 diff --git a/schule/philosophie/pdfs/PL_2025-02-25.pdf b/schule/philosophie/pdfs/PL_2025-02-25.pdf new file mode 100644 index 0000000..64866d6 --- /dev/null +++ b/schule/philosophie/pdfs/PL_2025-02-25.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efc6e0706f4febb369ceaa82f6bfbc9a945938938b7fe2213bd68dd0acf1cf9 +size 16527 diff --git a/schule/sozialwissenschaften/SW_2024-10-30.typ b/schule/sozialwissenschaften/SW_2024-10-30.typ index e922ac0..0690c00 100644 --- a/schule/sozialwissenschaften/SW_2024-10-30.typ +++ b/schule/sozialwissenschaften/SW_2024-10-30.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2024-11-05.typ b/schule/sozialwissenschaften/SW_2024-11-05.typ index 2c7a051..b1da919 100644 --- a/schule/sozialwissenschaften/SW_2024-11-05.typ +++ b/schule/sozialwissenschaften/SW_2024-11-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2024-11-06.typ b/schule/sozialwissenschaften/SW_2024-11-06.typ index de64dcf..944c481 100644 --- a/schule/sozialwissenschaften/SW_2024-11-06.typ +++ b/schule/sozialwissenschaften/SW_2024-11-06.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2024-11-12.typ b/schule/sozialwissenschaften/SW_2024-11-12.typ index 976037d..33cedc7 100644 --- a/schule/sozialwissenschaften/SW_2024-11-12.typ +++ b/schule/sozialwissenschaften/SW_2024-11-12.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2024-11-26.typ b/schule/sozialwissenschaften/SW_2024-11-26.typ index d54226a..a844733 100644 --- a/schule/sozialwissenschaften/SW_2024-11-26.typ +++ b/schule/sozialwissenschaften/SW_2024-11-26.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2024-11-27.typ b/schule/sozialwissenschaften/SW_2024-11-27.typ index affef3c..a92a833 100644 --- a/schule/sozialwissenschaften/SW_2024-11-27.typ +++ b/schule/sozialwissenschaften/SW_2024-11-27.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2025-01-07.typ b/schule/sozialwissenschaften/SW_2025-01-07.typ index 5881318..7ef56c9 100644 --- a/schule/sozialwissenschaften/SW_2025-01-07.typ +++ b/schule/sozialwissenschaften/SW_2025-01-07.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2025-01-08.typ b/schule/sozialwissenschaften/SW_2025-01-08.typ index 10eaac8..a6a1294 100644 --- a/schule/sozialwissenschaften/SW_2025-01-08.typ +++ b/schule/sozialwissenschaften/SW_2025-01-08.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2025-01-14.typ b/schule/sozialwissenschaften/SW_2025-01-14.typ index c377051..c8c33fb 100644 --- a/schule/sozialwissenschaften/SW_2025-01-14.typ +++ b/schule/sozialwissenschaften/SW_2025-01-14.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2025-01-29.typ b/schule/sozialwissenschaften/SW_2025-01-29.typ index fc3a5d9..3209b7b 100644 --- a/schule/sozialwissenschaften/SW_2025-01-29.typ +++ b/schule/sozialwissenschaften/SW_2025-01-29.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/SW_2025-02-16.typ b/schule/sozialwissenschaften/SW_2025-02-16.typ index a544f9c..628079e 100644 --- a/schule/sozialwissenschaften/SW_2025-02-16.typ +++ b/schule/sozialwissenschaften/SW_2025-02-16.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project, blockquote, important-box #set text(lang: "de") diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-09-24.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-09-24.pdf index 1793685..ed0a7af 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-09-24.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-09-24.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cb2983931cc9933759ff22c879617c61674b97847ba72936393034f9606ac91 -size 34350 +oid sha256:ea8a461cd5599c62f07ebe0623a584ae1cfe0ecc203124783bd1c29f7b4871c2 +size 30813 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-09-25.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-09-25.pdf index bfce423..30b06e5 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-09-25.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-09-25.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c01cbf69b01bfce40b185112df5cc2075e4543a4d5bc3d39ff0098cafc3dffc2 +oid sha256:d06c1524fa7ca947052e36f3035cf4d4e1e9d086095f6b147095d680b7f32d44 size 18259 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-10-30.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-10-30.pdf index f18c1cf..5603a79 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-10-30.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-10-30.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5a0fe96a16586451464cd133021e989181224f3eecf615af5f43320c8e78803 -size 22970 +oid sha256:9a2f3c2140e27e441eedc569c22fe3660cc985ce0b8c36e348f10c5ee794baa3 +size 16524 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-11-05.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-11-05.pdf index 2b1bb11..25c121d 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-11-05.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-11-05.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60b9bcdf7e33cef866627922f6ca105ed98959b8f5e9c807c1b6df5e4317e9a2 -size 34738 +oid sha256:bb49d7b05c3d75750932a830ea147d49cd2bffa5d7034bc956c4724e514ad5d2 +size 25955 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-11-06.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-11-06.pdf index ca6200e..b8c6c40 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-11-06.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-11-06.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ee18884927208e17d71f3f280c6864ba13793c851f58cd25b5258dc418005fd -size 19314 +oid sha256:332649c9e890edabda471011bc0c81fb6ae45b75c22c5265d78258ab1abd17c6 +size 15048 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-11-12.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-11-12.pdf index 3ce95a7..d8731bc 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-11-12.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-11-12.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad3d7c2abf2c4f9d23c58be45887857d8cb533a6a7f8eefbcab1fb7ab661ba99 -size 27873 +oid sha256:1ef0a93f90676f053b2465bfec8f5da694e8495f91bbeceba1c2d2dec96455e3 +size 21056 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-11-26.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-11-26.pdf index 834213d..cc642ff 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-11-26.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-11-26.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff46e83ba459f1c08029e7bc145ef25773e5553e3c53d1f9f7cb63338a8f4c8b -size 26561 +oid sha256:0398cbf289a7e19007b20c99d6379c904fc83bef0dd76d0554c421b0f7242013 +size 21637 diff --git a/schule/sozialwissenschaften/pdfs/SW_2024-11-27.pdf b/schule/sozialwissenschaften/pdfs/SW_2024-11-27.pdf index ba75fa6..ad2d4cd 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2024-11-27.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2024-11-27.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40e3d92144528e78ec0d0f60af39531b34fe950af3d6c64ba97d189234232d24 -size 20735 +oid sha256:278dc9bb25033f1105d2a585ce345972dab6ff8a9666554c0c510117bd0a37ab +size 16489 diff --git a/schule/sozialwissenschaften/pdfs/SW_2025-01-07.pdf b/schule/sozialwissenschaften/pdfs/SW_2025-01-07.pdf index 692df95..3faea1d 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2025-01-07.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2025-01-07.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:076a2433d824c3a6271f4438874a1f5cee1772c99c3c908ca3a923db71ce64d3 -size 29994 +oid sha256:46007752100a58612a59adf0b7a0d09f9da8d0adbd9105ac0abeb80d04aca266 +size 28056 diff --git a/schule/sozialwissenschaften/pdfs/SW_2025-01-08.pdf b/schule/sozialwissenschaften/pdfs/SW_2025-01-08.pdf index 89608f6..84651e2 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2025-01-08.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2025-01-08.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5434dcb3c8ecc4d1fc71ad4a21aaba44a0d623877dc33804326edb013f951ebf -size 140779 +oid sha256:6f74da64c35713e5a758666d7c5b11849f23c9026e3e5f2b88995f68d5eae534 +size 138211 diff --git a/schule/sozialwissenschaften/pdfs/SW_2025-01-14.pdf b/schule/sozialwissenschaften/pdfs/SW_2025-01-14.pdf new file mode 100644 index 0000000..253edf9 --- /dev/null +++ b/schule/sozialwissenschaften/pdfs/SW_2025-01-14.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1ab98bcec7321ca7ca01ecef8eb71095ceced6183029938819b42a28ad0e11 +size 27126 diff --git a/schule/sozialwissenschaften/pdfs/SW_2025-01-29.pdf b/schule/sozialwissenschaften/pdfs/SW_2025-01-29.pdf index e4e7744..72e859d 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2025-01-29.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2025-01-29.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:302afbff2951ee673494499b276c36444586676833583decdd8b210e7dee839b -size 20237 +oid sha256:cc93ffccc6db2bf62ed828e9128dc7cf9d2d867f239438eda44bfa23ff7cef38 +size 18540 diff --git a/schule/sozialwissenschaften/pdfs/SW_2025-02-16.pdf b/schule/sozialwissenschaften/pdfs/SW_2025-02-16.pdf index 0f3ce0c..fa2ed5a 100644 --- a/schule/sozialwissenschaften/pdfs/SW_2025-02-16.pdf +++ b/schule/sozialwissenschaften/pdfs/SW_2025-02-16.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0ad2e5710fadd10e03583545e9c1613728540cfcd83fb41f8ec4bc17769dbe2 -size 23197 +oid sha256:2435a33d8319ab48123804d4d89da21457d01b9e029e2a600761dc3c6927abfa +size 23198 diff --git a/schule/spanisch/ES_2024-11-05.typ b/schule/spanisch/ES_2024-11-05.typ index 024d350..0cc6f17 100644 --- a/schule/spanisch/ES_2024-11-05.typ +++ b/schule/spanisch/ES_2024-11-05.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/spanisch/ES_2024-11-11.typ b/schule/spanisch/ES_2024-11-11.typ index 54e4e30..0c56957 100644 --- a/schule/spanisch/ES_2024-11-11.typ +++ b/schule/spanisch/ES_2024-11-11.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "de") diff --git a/schule/spanisch/ES_2024-12-03.typ b/schule/spanisch/ES_2024-12-03.typ index a8f4064..4f669a0 100644 --- a/schule/spanisch/ES_2024-12-03.typ +++ b/schule/spanisch/ES_2024-12-03.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "es") diff --git a/schule/spanisch/ES_2025-01-27.typ b/schule/spanisch/ES_2025-01-27.typ index 5091927..7eabb47 100644 --- a/schule/spanisch/ES_2025-01-27.typ +++ b/schule/spanisch/ES_2025-01-27.typ @@ -1,4 +1,4 @@ -#import "@preview/grape-suite:1.0.0": exercise +#import "@preview/grape-suite:2.0.0": exercise #import exercise: project #set text(lang: "es") diff --git a/shell.nix b/shell.nix index 18aac85..986c71b 100644 --- a/shell.nix +++ b/shell.nix @@ -22,5 +22,7 @@ # for the project pre-commit + parallel + skim ]; }