Compare commits

...

6 commits

Author SHA1 Message Date
Laureηt bf7b634f40
use symlink in slides package 2024-10-11 20:53:52 +02:00
Laureηt a15212f40b
add report package 2024-10-11 20:53:38 +02:00
Laureηt 6a853cd9cf
change text asset folder 2024-10-11 20:44:40 +02:00
Laureηt 992406d7fa
show git ignored files in vscode 2024-10-11 20:44:16 +02:00
Laureηt 0dcb03dfbb
replace missing image 2024-10-11 20:44:03 +02:00
Laureηt fa4a2cadf1
add nix flake packages.slides 2024-10-11 18:52:26 +02:00
9 changed files with 117 additions and 39 deletions

View file

@ -1,5 +1,4 @@
{
"explorer.excludeGitIgnore": true,
"latex-workshop.latex.recipe.default": "latexmk (lualatex)",
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,

BIN
assets/turbine_decoupe.webp (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -1,11 +0,0 @@
for file in assets/*
do
filename=$(basename $file)
if grep -q $filename pdf/paper.tex; then
echo "$filename used in paper.tex"
elif grep -q $filename slides/slides.md; then
echo "$filename used in slides.md"
else
echo "$filename NOT USED !!!!!!"
fi
done

View file

@ -1,27 +1,32 @@
{
"nodes": {
"flake-utils": {
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1667395993,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
"lastModified": 1727826117,
"narHash": "sha256-K5ZLCyfO/Zj9mPFldf3iwS6oZStJcU4tSpiXTMYaaL0=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "3d04084d54bedc3d6b8b736c70ef449225c361b1",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1673796341,
"narHash": "sha256-1kZi9OkukpNmOaPY7S5/+SlCDOuYnP3HkXHvNDyLQcc=",
"lastModified": 1728492678,
"narHash": "sha256-9UTxR8eukdg+XZeHgxW5hQA9fIKHsKCdOIUycTryeVw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6dccdc458512abce8d19f74195bb20fdb067df50",
"rev": "5633bcff0c6162b9e4b5f1264264611e950c8ec7",
"type": "github"
},
"original": {
@ -33,8 +38,24 @@
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs",
"systems": "systems"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},

View file

@ -1,17 +1,79 @@
{
description = "Biblio proj long";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
systems.url = "github:nix-systems/default";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ texlive.combined.scheme-full nodejs ];
outputs = {flake-parts, ...} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import inputs.systems;
perSystem = {
pkgs,
system,
...
}: rec {
devShells.default = pkgs.mkShell {
packages = packages.slides.nativeBuildInputs ++ packages.report.buildInputs;
};
});
packages.report = pkgs.stdenvNoCC.mkDerivation {
name = "report";
src = ./pdf;
assets = ./assets;
buildInputs = [
pkgs.texlive.combined.scheme-full
];
buildPhase = ''
rm assets
ln -s $assets assets
mkdir -p .cache/texmf-var
env TEXMFHOME=.cache TEXMFVAR=.cache/texmf-var \
latexmk -pdf -shell-escape -lualatex \
paper.tex
'';
installPhase = ''
mkdir -p $out
mv paper.pdf $out
'';
};
packages.slides = pkgs.stdenvNoCC.mkDerivation rec {
name = "slides";
src = ./slides;
assets = ./assets;
npmDeps = pkgs.fetchNpmDeps {
inherit src;
hash = "sha256-GJ10or/LERFOsBG6CqnRFXnXSEZB7+0C5CV6t8X/Um8=";
};
nativeBuildInputs = [
pkgs.npmHooks.npmConfigHook
pkgs.nodejs
];
buildPhase = ''
rm assets
ln -s $assets assets
npm run build
'';
installPhase = ''
mv dist $out
'';
};
};
};
}

1
pdf/assets Symbolic link
View file

@ -0,0 +1 @@
../assets

View file

@ -52,7 +52,7 @@
\setlength{\parskip}{7pt}%
% assets path
\graphicspath{{../assets/}}
\graphicspath{{assets/}}
% header and footer settings
\usepackage{lastpage}

View file

@ -3,5 +3,8 @@
"@slidev/cli": "^0.42.9",
"@slidev/theme-default": "^0.21.2",
"slidev-theme-academic": "^1.1.3"
},
"scripts": {
"build": "slidev build slides.md"
}
}

View file

@ -87,10 +87,10 @@ safran génère des revenus majoritairement grâce vente de moteur propulsion av
## Détails d'un moteur d'avion
<div class="flex items-center h-full">
<img src="https://avr-global.com/wp-content/uploads/2019/06/03-b-moteur-turbine-gaz-2-2.png" class="ml-20 h-full">
<img src="/assets/turbine_decoupe.webp" class="ml-20 h-full">
</div>
<a href="https://avr-global.com/aerospace/" class="absolute bottom-0 font-extralight mb-1 mr-2 right-0 text-xs">AV&R Global</a>
<a href="https://www.thingiverse.com/thing:1327093" class="absolute bottom-0 font-extralight mb-1 mr-2 right-0 text-xs">Thingiverse catiav5ftw</a>
<!--
Lors de mon stage, \