6 Commits

Author SHA1 Message Date
Filipriec
01b80d6d10 working vizitka + prezentacia 2026-05-06 10:32:59 +02:00
Priec
304987128f % to remove the hidden spaces latex inserts at line breaks 2026-05-06 08:50:43 +02:00
Priec
56a258405a smal changes 2026-05-06 08:10:52 +02:00
Priec
491f38f511 removed deprecacy 2026-05-06 00:41:09 +02:00
Priec
62139c1ad3 duplicita 2026-05-06 00:37:29 +02:00
Priec
178f6350cd date 2026-05-06 00:34:27 +02:00
16 changed files with 1003 additions and 368 deletions

View File

@@ -41,20 +41,6 @@
Výstupom je pravdepodobnostné rozdelenie cez triedy. Výstupom je pravdepodobnostné rozdelenie cez triedy.
\end{frame} \end{frame}
\begin{frame}{Burn framework}
\begin{itemize}
\item Deep learning framework napísaný v Ruste
\item Cieľ: byť pre Rust tým, čím je PyTorch pre Python
\item Kľúčové vlastnosti:
\begin{itemize}
\item Backend-agnostický dizajn
\item Typová bezpečnosť v compile-time
\item Automatická diferenciácia (autodiff)
\item Podpora pre CPU, CUDA, WebGPU, \dots
\end{itemize}
\end{itemize}
\end{frame}
{ {
\usebackgroundtemplate{ \usebackgroundtemplate{
\vbox to \paperheight{ \vbox to \paperheight{
@@ -131,7 +117,7 @@ type B = LibTorch;
kompilátor to zastaví ešte pred spustením. kompilátor to zastaví ešte pred spustením.
\end{frame} \end{frame}
\begin{frame}[fragile]{Ako vyzerá model v Burn} \begin{frame}[fragile]{Ako vyzerá model v Burn-e}
\begin{lstlisting}[language=Rust, style=colouredRust] \begin{lstlisting}[language=Rust, style=colouredRust]
#[derive(Module)] #[derive(Module)]
pub struct MnistModel<B: Backend> { pub struct MnistModel<B: Backend> {
@@ -139,7 +125,7 @@ pub struct MnistModel<B: Backend> {
linear2: Linear<B>, linear2: Linear<B>,
activation: Relu, activation: Relu,
} }
\end{lstlisting}] \end{lstlisting}
\vspace{0.5em} \vspace{0.5em}
Derive makro \texttt{Module} automaticky vygeneruje: Derive makro \texttt{Module} automaticky vygeneruje:
\begin{itemize} \begin{itemize}
@@ -160,7 +146,7 @@ fn forward(&self, x: Tensor<B, 2>) -> Tensor<B, 2> {
\end{frame} \end{frame}
\begin{frame}{Ako funguje autodiff v Burn} \begin{frame}{Ako funguje autodiff v Burn-e}
Burn zabalí ľubovoľný backend do autodiff vrstvy: Burn zabalí ľubovoľný backend do autodiff vrstvy:
\vspace{0.5em} \vspace{0.5em}
\begin{enumerate} \begin{enumerate}

View File

@@ -1,195 +0,0 @@
\begin{frame}[fragile]{Štruktúra nášho projektu}
\begin{verbatim}
.
├── Cargo.toml # závislosti (burn, clap, npyz, ...)
├── mnist.npz # dataset
└── src/
├── lib.rs # modul deklarácie
├── main.rs # tréningová slučka, načítanie dát
└── model.rs # parametre siete
\end{verbatim}
\vspace{0.5em}
Celý projekt --- 3 súbory. Žiadne skripty, žiadny Python glue.
\end{frame}
\begin{frame}[fragile]{Definícia parametrov siete}
\begin{verbatim}
pub struct Parameters<B: Backend> {
pub w1: Tensor<B, 2>, // [784, hidden]
pub b1: Tensor<B, 1>, // [hidden]
pub w2: Tensor<B, 2>, // [hidden, 10]
pub b2: Tensor<B, 1>, // [10]
}
\end{verbatim}
\vspace{0.5em}
\begin{itemize}
\item Generický typ \texttt{B: Backend} --- funguje na akomkoľvek backendu
\item Rozmery tenzorov sú súčasťou typu (\texttt{Tensor<B, 2>})
\item Kompilátor zachytí chyby v rozmeroch ešte \textbf{pred spustením}
\end{itemize}
\end{frame}
\begin{frame}[fragile]{Inicializácia váh}
\begin{verbatim}
let w1 = random_tensor([784, hidden_size],
0.1, seed, device);
let b1 = Tensor::zeros([hidden_size], device);
\end{verbatim}
\vspace{0.5em}
\begin{itemize}
\item Váhy: náhodné z $\mathcal{N}(0,\; 0.1)$
\item Biasy: inicializované na nulu
\item \texttt{device} určuje, kde žijú dáta (CPU/GPU)
\item Seed zabezpečuje \textbf{reprodukovateľnosť}
\end{itemize}
\end{frame}
\begin{frame}[fragile]{Načítanie MNIST dát}
\begin{verbatim}
fn load_mnist_items(path: &str, examples: usize)
-> Vec<(Vec<f32>, u8)>
\end{verbatim}
\vspace{0.5em}
\begin{itemize}
\item Otvoríme \texttt{mnist.npz} ako ZIP archív
\item Načítame obrázky + labely z \texttt{.npy} súborov
\item Normalizujeme pixely: $[0, 255] \rightarrow [0.0, 1.0]$
\item Výstup: vektor párov \texttt{(obrázok, číslica)}
\end{itemize}
\vspace{0.5em}
Rustový typový systém garantuje, že dáta majú správny formát.
\end{frame}
\begin{frame}[fragile]{CLI parametre s Clap}
\begin{verbatim}
#[derive(Parser, Debug)]
struct Args {
#[arg(long, default_value_t = 50)]
batch_size: usize,
#[arg(long, default_value_t = 0.1)]
learning_rate: f64,
#[arg(long, default_value_t = 10)]
epochs: usize,
}
\end{verbatim}
\vspace{0.5em}
Jeden derive makro --- automatický parsing, help text, validácia.
\texttt{cargo run -- --epochs 20 --learning-rate 0.01}
\end{frame}
\begin{frame}{Tréningová slučka --- logika}
Pre každú epochu:
\begin{enumerate}
\item Rozdeľ trénovacie dáta na \textbf{mini-batche}
\item Pre každý batch:
\begin{itemize}
\item Forward pass: $\hat{y} = \text{softmax}((\mathbf{x} \cdot W_1 + b_1)_{\text{ReLU}} \cdot W_2 + b_2)$
\item Spočítaj cross-entropy loss
\item Backpropagation: gradienty pre $W_1, b_1, W_2, b_2$
\item Update: $\theta \leftarrow \theta - \eta \cdot \nabla L$
\end{itemize}
\item Vyhodnoť presnosť na dev sete
\end{enumerate}
\end{frame}
\begin{frame}{Burn vs PyTorch --- porovnanie}
\begin{center}
\begin{tabular}{lcc}
\hline
\textbf{Vlastnosť} & \textbf{PyTorch} & \textbf{Burn} \\
\hline
Jazyk & Python/C++ & Rust \\
Typová bezpečnosť & runtime & compile-time \\
Pamäťová bezpečnosť & GC/manuálna & ownership \\
Backendy & CUDA, CPU & CUDA, CPU, WebGPU \\
Binárka & $\sim$GB + Python & $\sim$MB standalone \\
Nasadenie & zložité & jeden binárny súbor \\
\hline
\end{tabular}
\end{center}
\end{frame}
\begin{frame}{Výhoda: Compile-time kontroly}
V PyTorchi:
\begin{itemize}
\item Chyba v rozmeroch $\rightarrow$ \texttt{RuntimeError} po minútach tréningu
\item Preklep v názve vrstvy $\rightarrow$ tichý bug
\end{itemize}
\vspace{0.5em}
V Burn/Ruste:
\begin{itemize}
\item Nesprávne rozmery $\rightarrow$ \textbf{kompilátor to nepustí}
\item Nepoužitá premenná, chýbajúci branch $\rightarrow$ warning/error
\item Žiadne \texttt{None} prekvapenia --- \texttt{Option<T>} treba ošetriť
\end{itemize}
\vspace{0.5em}
\textbf{Menej debugovania, viac istoty.}
\end{frame}
\begin{frame}{Výhoda: Nasadenie do produkcie}
\begin{itemize}
\item \texttt{cargo build --release} $\rightarrow$ jeden statický binárny súbor
\item Žiadny Python runtime, žiadne virtuálne prostredia
\item Možnosť kompilácie do WebAssembly $\rightarrow$ inferencia v prehliadači
\item Ideálne pre embedded, edge zariadenia, IoT
\end{itemize}
\vspace{0.5em}
\begin{center}
PyTorch model: Docker kontajner $\sim$2\,GB \\
Burn model: binárka $\sim$5\,MB
\end{center}
\end{frame}
\begin{frame}{Výhoda: Fearless concurrency}
\begin{itemize}
\item Rustový ownership systém zabraňuje data races \textbf{v compile-time}
\item Bezpečný multithreading pre data loading, augmentáciu
\item Parameter \texttt{--threads} v našom projekte
\item V Pythone: GIL (Global Interpreter Lock) blokuje paralelizmus
\end{itemize}
\end{frame>
\begin{frame}{Kedy použiť Burn?}
\textbf{Vhodné:}
\begin{itemize}
\item Nasadenie modelov do produkcie
\item Edge/embedded inferencia
\item Keď chcete maximálny výkon a bezpečnosť
\item Keď už poznáte Rust
\end{itemize}
\vspace{0.5em}
\textbf{Nevhodné (zatiaľ):}
\begin{itemize}
\item Rýchle prototypovanie --- Python je stále rýchlejší na experimenty
\item Ekosystém --- PyTorch má tisíce hotových modelov
\item Burn je stále mladý projekt (aktívny vývoj)
\end{itemize}
\end{frame}
\begin{frame}{Zhrnutie}
\begin{itemize}
\item Neurónové siete = vrstvy neurónov, učenie cez gradienty
\item \textbf{Burn} prináša deep learning do Rustu
\item Backend-agnostický, typovo bezpečný, production-ready
\item Náš projekt: MNIST klasifikátor v 3 súboroch
\item Rust + Burn = bezpečnosť + výkon + jednoduchosť nasadenia
\end{itemize}
\vspace{1em}
\begin{center}
\Large Ďakujem za pozornosť!
\end{center}
\end{frame}

View File

@@ -98,18 +98,18 @@
\setbeamercolor{/foot}{fg=white} \setbeamercolor{/foot}{fg=white}
\setbeamertemplate{footline}{ \setbeamertemplate{footline}{
\leavevmode \leavevmode
\hbox{ \hbox{%
\colorbox{fri}{ \colorbox{fri}{%
\begin{beamercolorbox}[wd=0.5\paperwidth,ht=1cm,left]{foot} \begin{beamercolorbox}[wd=0.5\paperwidth,ht=1cm,left]{foot}
\hspace{1cm} \hspace{1cm}
\vspace{0.4cm} \vspace{0.4cm}
\usebeamerfont{/foot}\footnotesize\color{black}\insertframenumber \usebeamerfont{/foot}\footnotesize\color{black}\insertframenumber
\end{beamercolorbox} \end{beamercolorbox}%
\begin{beamercolorbox}[wd=0.5\paperwidth,ht=1cm,right]{foot} \begin{beamercolorbox}[wd=0.5\paperwidth,ht=1cm,right]{foot}
\vspace{0.15cm} \vspace{0.15cm}
\includesvg[height=0.7cm]{obrazky/logo.svg}\hspace{1.7cm} \includesvg[height=0.7cm]{obrazky/logo.svg}\hspace{1.7cm}
\end{beamercolorbox} \end{beamercolorbox}%
} }
} }
\vskip0pt \vskip0pt

View File

@@ -31,20 +31,18 @@
\@writefile{nav}{\headcommand {\beamer@framepages {11}{11}}} \@writefile{nav}{\headcommand {\beamer@framepages {11}{11}}}
\@writefile{nav}{\headcommand {\slideentry {0}{0}{12}{12/12}{}{0}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{12}{12/12}{}{0}}}
\@writefile{nav}{\headcommand {\beamer@framepages {12}{12}}} \@writefile{nav}{\headcommand {\beamer@framepages {12}{12}}}
\@writefile{nav}{\headcommand {\slideentry {0}{0}{13}{13/13}{}{0}}}
\@writefile{nav}{\headcommand {\beamer@framepages {13}{13}}}
\bibcite{burn2024}{\hyperlink {beamerbibburn2024}{1}} \bibcite{burn2024}{\hyperlink {beamerbibburn2024}{1}}
\bibcite{burnbook}{\hyperlink {beamerbibburnbook}{2}} \bibcite{burnbook}{\hyperlink {beamerbibburnbook}{2}}
\newlabel{zdroje<1>}{{14}{14}{}{zdroje<1>}{}} \newlabel{zdroje<1>}{{13}{13}{}{zdroje<1>}{}}
\@writefile{snm}{\beamer@slide {zdroje<1>}{14}} \@writefile{snm}{\beamer@slide {zdroje<1>}{13}}
\newlabel{zdroje}{{14}{14}{}{zdroje}{}} \newlabel{zdroje}{{13}{13}{}{zdroje}{}}
\@writefile{snm}{\beamer@slide {zdroje}{14}} \@writefile{snm}{\beamer@slide {zdroje}{13}}
\@writefile{nav}{\headcommand {\slideentry {0}{0}{14}{14/14}{}{0}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{13}{13/13}{}{0}}}
\@writefile{nav}{\headcommand {\beamer@framepages {14}{14}}} \@writefile{nav}{\headcommand {\beamer@framepages {13}{13}}}
\@writefile{nav}{\headcommand {\beamer@partpages {1}{14}}} \@writefile{nav}{\headcommand {\beamer@partpages {1}{13}}}
\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{14}}} \@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{13}}}
\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{14}}} \@writefile{nav}{\headcommand {\beamer@sectionpages {1}{13}}}
\@writefile{nav}{\headcommand {\beamer@documentpages {14}}} \@writefile{nav}{\headcommand {\beamer@documentpages {13}}}
\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {14}}} \@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {13}}}
\gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}} \gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}}
\gdef \@abspage@last{14} \gdef \@abspage@last{13}

View File

@@ -2582,7 +2582,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 118--118 Overfull \hbox (7.67398pt too wide) in paragraph at lines 118--118
[][] [][]
[] []
@@ -2596,7 +2596,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 34--34 Overfull \hbox (7.67398pt too wide) in paragraph at lines 34--34
[][] [][]
[] []
@@ -2614,7 +2614,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 8--8 Overfull \hbox (7.67398pt too wide) in paragraph at lines 8--8
[][] [][]
[] []
@@ -2714,7 +2714,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2731,7 +2731,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 59--59 Overfull \hbox (7.67398pt too wide) in paragraph at lines 59--59
[][] [][]
[] []
@@ -2756,7 +2756,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2772,7 +2772,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 26--26 Overfull \hbox (7.67398pt too wide) in paragraph at lines 26--26
[][] [][]
[] []
@@ -2785,7 +2785,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2801,7 +2801,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 42--42 Overfull \hbox (7.67398pt too wide) in paragraph at lines 42--42
[][] [][]
[] []
@@ -2822,7 +2822,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2830,7 +2830,7 @@ Overfull \hbox (14.36996pt too wide) has occurred while \output is active
] ]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 56. line 68.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2838,12 +2838,17 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 56--56 Overfull \hbox (7.67398pt too wide) in paragraph at lines 68--68
[][] [][]
[] []
<obrazky/burn_logo.png, id=60, 200.75pt x 200.75pt>
File: obrazky/burn_logo.png Graphic file (type png)
<use obrazky/burn_logo.png>
Package luatex.def Info: obrazky/burn_logo.png used on input line 68.
(luatex.def) Requested size: 95.60535pt x 95.60298pt.
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 56. line 68.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2851,15 +2856,15 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
[6 [6
] <./obrazky/burn_logo.png>]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 82. line 89.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2867,17 +2872,12 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 82--82 Overfull \hbox (7.67398pt too wide) in paragraph at lines 89--89
[][] [][]
[] []
<obrazky/burn_logo.png, id=67, 200.75pt x 200.75pt>
File: obrazky/burn_logo.png Graphic file (type png)
<use obrazky/burn_logo.png>
Package luatex.def Info: obrazky/burn_logo.png used on input line 82.
(luatex.def) Requested size: 95.60535pt x 95.60298pt.
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 82. line 89.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2885,43 +2885,29 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
[7 [7
<./obrazky/burn_logo.png>]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 103.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) in paragraph at lines 103--103
[][]
[]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 103.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) has occurred while \output is active
[][]
[]
[8
] ]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 91.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) in paragraph at lines 91--91
[][]
[]
\openout4 = main.vrb
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 105. line 105.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
@@ -2930,28 +2916,13 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 105--105 Overfull \hbox (7.67398pt too wide) in paragraph at lines 105--105
[][]
[]
\openout4 = main.vrb
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 119.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) in paragraph at lines 119--119
[][] [][]
[] []
(./main/main.vrb) (./main/main.vrb)
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 119. line 105.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2959,7 +2930,36 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][]
[]
[8
]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 118.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) in paragraph at lines 118--118
[][]
[]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 118.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2967,7 +2967,7 @@ Overfull \hbox (14.36996pt too wide) has occurred while \output is active
] ]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 132. line 120.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2975,12 +2975,14 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 132--132 Overfull \hbox (7.67398pt too wide) in paragraph at lines 120--120
[][] [][]
[] []
\openout4 = main.vrb
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 132. line 136.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -2988,7 +2990,21 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) in paragraph at lines 136--136
[][]
[]
(./main/main.vrb)
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 136.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
@@ -2996,7 +3012,7 @@ Overfull \hbox (14.36996pt too wide) has occurred while \output is active
] ]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 134. line 138.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -3004,14 +3020,14 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 134--134 Overfull \hbox (7.67398pt too wide) in paragraph at lines 138--138
[][] [][]
[] []
\openout4 = main.vrb \openout4 = main.vrb
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 150. line 147.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -3019,52 +3035,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 150--150 Overfull \hbox (7.67398pt too wide) in paragraph at lines 147--147
[][]
[]
(./main/main.vrb)
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 150.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) has occurred while \output is active
[][]
[]
[11
]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 152.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) in paragraph at lines 152--152
[][]
[]
\openout4 = main.vrb
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 161.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) in paragraph at lines 161--161
[][] [][]
[] []
@@ -3075,7 +3046,7 @@ Overfull \hbox (33.03572pt too wide) in paragraph at lines 3--4
) )
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 161. line 147.
(./svg-inkscape/logo_svg-tex.pdf_tex (./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf) File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1> <use ./svg-inkscape/logo_svg-tex.pdf, page 1>
@@ -3083,41 +3054,41 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][]
[]
[11
]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 160.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) in paragraph at lines 160--160
[][]
[]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 160.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
[12 [12
]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 174.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) in paragraph at lines 174--174
[][]
[]
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 174.
(./svg-inkscape/logo_svg-tex.pdf_tex
File: ./svg-inkscape/logo_svg-tex.pdf Graphic file (type pdf)
<use ./svg-inkscape/logo_svg-tex.pdf, page 1>
Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt.
)
Overfull \hbox (14.36996pt too wide) has occurred while \output is active
[][]
[]
[13
]) ])
Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input Package svg Info: Last page of `./svg-inkscape/logo_svg-tex.pdf' is 1 on input
line 145. line 145.
@@ -3128,7 +3099,7 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) in paragraph at lines 145--145 Overfull \hbox (7.67398pt too wide) in paragraph at lines 145--145
[][] [][]
[] []
@@ -3141,11 +3112,11 @@ Package luatex.def Info: ./svg-inkscape/logo_svg-tex.pdf , page1 used on input
line 56. line 56.
(luatex.def) Requested size: 100.28166pt x 19.92487pt. (luatex.def) Requested size: 100.28166pt x 19.92487pt.
) )
Overfull \hbox (14.36996pt too wide) has occurred while \output is active Overfull \hbox (7.67398pt too wide) has occurred while \output is active
[][] [][]
[] []
[14 [13
</nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmf </nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmf
dist/tex/latex/beamer/beamericonarticle.pdf>] dist/tex/latex/beamer/beamericonarticle.pdf>]
@@ -3177,16 +3148,16 @@ Package rerunfilecheck Info: File `main.out' has not changed.
) )
Here is how much of LuaTeX's memory you used: Here is how much of LuaTeX's memory you used:
67087 strings out of 476078 67064 strings out of 476078
125031,2848258 words of node,token memory allocated 125031,2848258 words of node,token memory allocated
6249 words of node memory still in use: 6249 words of node memory still in use:
59 hlist, 16 vlist, 9 rule, 24 disc, 8 local_par, 4 math, 137 glue, 55 kern, 59 hlist, 16 vlist, 9 rule, 24 disc, 8 local_par, 4 math, 137 glue, 55 kern,
35 penalty, 5 margin_kern, 244 glyph, 384 attribute, 88 glue_spec, 193 attribute 35 penalty, 5 margin_kern, 244 glyph, 384 attribute, 88 glue_spec, 193 attribute
_list, 8 write, 30 pdf_literal, 2 pdf_start_link, 2 pdf_end_link, 4 pdf_dest, 2 _list, 8 write, 30 pdf_literal, 2 pdf_start_link, 2 pdf_end_link, 4 pdf_dest, 2
pdf_action, 60 pdf_colorstack nodes pdf_action, 60 pdf_colorstack nodes
avail lists: 1:8,2:3124,3:1867,4:377,5:299,6:44,7:1346,8:21,9:988,10:13,11:81 avail lists: 1:8,2:3124,3:1867,4:377,5:299,6:44,7:1338,8:21,9:988,10:13,11:81
,12:1 ,12:1
87633 multiletter control sequences out of 65536+600000 87630 multiletter control sequences out of 65536+600000
132 fonts using 28094191 bytes 132 fonts using 28094191 bytes
128i,23n,130p,7883b,1832s stack positions out of 10000i,1000n,20000p,200000b,200000s 128i,23n,130p,7883b,1832s stack positions out of 10000i,1000n,20000p,200000b,200000s
</nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmf </nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmf
@@ -3212,10 +3183,10 @@ ona/iwonar.pfb></nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-
final-env-texmfdist/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb></nix/store final-env-texmfdist/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb></nix/store
/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmfdist/fonts/ /56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmfdist/fonts/
type1/public/mathdesign/mdbch/md-chb7y.pfb> type1/public/mathdesign/mdbch/md-chb7y.pfb>
Output written on main.pdf (14 pages, 96977 bytes). Output written on main.pdf (13 pages, 95717 bytes).
PDF statistics: 205 PDF objects out of 1000 (max. 8388607) PDF statistics: 196 PDF objects out of 1000 (max. 8388607)
121 compressed objects within 2 object streams 115 compressed objects within 2 object streams
33 named destinations out of 1000 (max. 131072) 31 named destinations out of 1000 (max. 131072)
16 words of extra memory for PDF output out of 10000 (max. 100000000) 16 words of extra memory for PDF output out of 10000 (max. 100000000)

View File

@@ -24,10 +24,8 @@
\headcommand {\beamer@framepages {12}{12}} \headcommand {\beamer@framepages {12}{12}}
\headcommand {\slideentry {0}{0}{13}{13/13}{}{0}} \headcommand {\slideentry {0}{0}{13}{13/13}{}{0}}
\headcommand {\beamer@framepages {13}{13}} \headcommand {\beamer@framepages {13}{13}}
\headcommand {\slideentry {0}{0}{14}{14/14}{}{0}} \headcommand {\beamer@partpages {1}{13}}
\headcommand {\beamer@framepages {14}{14}} \headcommand {\beamer@subsectionpages {1}{13}}
\headcommand {\beamer@partpages {1}{14}} \headcommand {\beamer@sectionpages {1}{13}}
\headcommand {\beamer@subsectionpages {1}{14}} \headcommand {\beamer@documentpages {13}}
\headcommand {\beamer@sectionpages {1}{14}} \headcommand {\gdef \inserttotalframenumber {13}}
\headcommand {\beamer@documentpages {14}}
\headcommand {\gdef \inserttotalframenumber {14}}

Binary file not shown.

View File

@@ -1,2 +1,2 @@
\beamer@slide {zdroje<1>}{14} \beamer@slide {zdroje<1>}{13}
\beamer@slide {zdroje}{14} \beamer@slide {zdroje}{13}

View File

@@ -22,7 +22,7 @@
{ {
\footnotesize\textcolor{black}{Filip Priečinský }} \footnotesize\textcolor{black}{Filip Priečinský }}
{\footnotesize\textcolor{black}{2025/2026 \hspace{0.5cm} Žilinská univerzita v Žiline - FRI}} {\footnotesize\textcolor{black}{2026 \hspace{0.5cm} Žilinská univerzita v Žiline - FRI}}
\end{minipage} \end{minipage}
\begin{minipage}[t]{0.3\linewidth} \begin{minipage}[t]{0.3\linewidth}
\raggedleft \raggedleft

BIN
prezentacia_priecinsky.zip Normal file

Binary file not shown.

BIN
vizitka_priecinsky.zip Normal file

Binary file not shown.

BIN
vizitka_priecinsky/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

View File

@@ -0,0 +1,10 @@
\relax
\providecommand \babel@aux [2]{\global \let \babel@toc \@gobbletwo }
\@nameuse{bbl@beforestart}
\catcode `^\active
\catcode `"\active
\catcode `'\active
\catcode `-\active
\babel@aux{slovak}{}
\pgfsyspdfmark {pgfid1}{1491743}{3996332}
\gdef \@abspage@last{1}

865
vizitka_priecinsky/main.log Normal file
View File

@@ -0,0 +1,865 @@
This is LuaHBTeX, Version 1.22.0 (TeX Live 2025/nixos.org) (format=lualatex 1980.1.1) 1 JAN 1980 01:00
restricted system commands enabled.
**main.tex
(./main.tex
LaTeX2e <2025-11-01>
L3 programming layer <2026-01-19>
Lua module: luaotfload 2024-12-03 v3.29 Lua based OpenType font support
Lua module: lualibs 2023-07-13 v2.76 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2023-07-13 v2.76 ConTeXt Lua libraries -- extended
collection.
luaotfload | conf : Root cache directory is "/home/priec/.texlive2025/texmf-var/
luatex-cache/generic/names".
luaotfload | init : Loading fontloader "fontloader-2023-12-28.lua" from kpse-res
olved path "/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-fina
l-env-texmfdist/tex/luatex/luaotfload/fontloader-2023-12-28.lua".
Lua-only attribute luaotfload@noligature = 1
luaotfload | init : Context OpenType loader version 3.134
Inserting `luaotfload.node_processor' in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' in `hpack_filter'.
Inserting `luaotfload.glyph_stream' in `glyph_stream_provider'.
Inserting `luaotfload.define_font' in `define_font'.
Lua-only attribute luaotfload_color_attribute = 2
luaotfload | conf : Root cache directory is "/home/priec/.texlive2025/texmf-var/
luatex-cache/generic/names".
Inserting `luaotfload.harf.strip_prefix' in `find_opentype_file'.
Inserting `luaotfload.harf.strip_prefix' in `find_truetype_file'.
Removing `luaotfload.glyph_stream' from `glyph_stream_provider'.
Inserting `luaotfload.harf.glyphstream' in `glyph_stream_provider'.
Inserting `luaotfload.harf.finalize_vlist' in `post_linebreak_filter'.
Inserting `luaotfload.harf.finalize_hlist' in `hpack_filter'.
Inserting `luaotfload.cleanup_files' in `wrapup_run'.
Inserting `luaotfload.harf.finalize_unicode' in `finish_pdffile'.
Inserting `luaotfload.glyphinfo' in `glyph_info'.
Lua-only attribute luaotfload.letterspace_done = 3
Inserting `luaotfload.aux.set_sscale_dimens' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_font_index' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.patch_cambria_domh' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.fixup_fontdata' in `luaotfload.patch_font_unsafe'.
Inserting `luaotfload.aux.set_capheight' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_xheight' in `luaotfload.patch_font'.
Inserting `luaotfload.rewrite_fontname' in `luaotfload.patch_font'.
Inserting `tracingstacklevels' in `input_level_string'.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/base/article.cls
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/base/size10.clo
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
luaotfload | db : Font names database loaded from /home/priec/.texlive2025/texmf
-var/luatex-cache/generic/names/luaotfload-names.luc.gz)
\c@part=\count273
\c@section=\count274
\c@subsection=\count275
\c@subsubsection=\count276
\c@paragraph=\count277
\c@subparagraph=\count278
\c@figure=\count279
\c@table=\count280
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen147
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/iftex/iftex.sty
Package: iftex 2024/12/12 v1.0g TeX engine tests
))
\Gm@cnth=\count281
\Gm@cntv=\count282
\c@Gm@tempcnt=\count283
\Gm@bindingoffset=\dimen148
\Gm@wd@mp=\dimen149
\Gm@odd@mp=\dimen150
\Gm@even@mp=\dimen151
\Gm@layoutwidth=\dimen152
\Gm@layoutheight=\dimen153
\Gm@layouthoffset=\dimen154
\Gm@layoutvoffset=\dimen155
\Gm@dimlist=\toks18
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/babel/babel.sty
Package: babel 2026/02/14 v26.3 The multilingual framework for LuaLaTeX, pdfLaT
eX and XeLaTeX
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/babel/luababel.def
\bbl@readstream=\read2
\l@dumylang=\language2
Package babel Info: Non-standard hyphenation setup on input line 118.
\l@nohyphenation=\language3
\l@german-x-2024-02-28=\language4
\l@ngerman-x-2024-02-28=\language5
\l@afrikaans=\language6
\l@albanian=\language7
\l@ancientgreek=\language8
\l@ibycus=\language9
\l@arabic=\language10
\l@armenian=\language11
\l@basque=\language12
\l@belarusian=\language13
\l@bulgarian=\language14
\l@catalan=\language15
\l@pinyin=\language16
\l@churchslavonic=\language17
\l@coptic=\language18
\l@croatian=\language19
\l@czech=\language20
\l@danish=\language21
\l@dutch=\language22
\l@ukenglish=\language23
\l@usenglishmax=\language24
\l@esperanto=\language25
\l@estonian=\language26
\l@ethiopic=\language27
\l@farsi=\language28
\l@finnish=\language29
\l@schoolfinnish=\language30
\l@french=\language31
\l@friulan=\language32
\l@galician=\language33
\l@georgian=\language34
\l@german=\language35
\l@ngerman=\language36
\l@swissgerman=\language37
\l@greek=\language38
\l@monogreek=\language39
\l@hebrew=\language40
\l@hungarian=\language41
\l@icelandic=\language42
\l@assamese=\language43
\l@bengali=\language44
\l@gujarati=\language45
\l@hindi=\language46
\l@kannada=\language47
\l@malayalam=\language48
\l@marathi=\language49
\l@oriya=\language50
\l@pali=\language51
\l@panjabi=\language52
\l@tamil=\language53
\l@telugu=\language54
\l@indonesian=\language55
\l@interlingua=\language56
\l@irish=\language57
\l@italian=\language58
\l@kurmanji=\language59
\l@classiclatin=\language60
\l@latin=\language61
\l@liturgicallatin=\language62
\l@latvian=\language63
\l@lithuanian=\language64
\l@macedonian=\language65
\l@mongolian=\language66
\l@mongolianlmc=\language67
\l@bokmal=\language68
\l@nynorsk=\language69
\l@occitan=\language70
\l@piedmontese=\language71
\l@polish=\language72
\l@portuguese=\language73
\l@romanian=\language74
\l@romansh=\language75
\l@russian=\language76
\l@sanskrit=\language77
\l@serbian=\language78
\l@serbianc=\language79
\l@slovak=\language80
\l@slovenian=\language81
\l@spanish=\language82
\l@swedish=\language83
\l@thai=\language84
\l@turkish=\language85
\l@turkmen=\language86
\l@ukrainian=\language87
\l@uppersorbian=\language88
\l@vietnamese=\language89
\l@welsh=\language90
\babelcatcodetablenum=\catcodetable14
\bbl@pattcodes=\catcodetable15
)
\babel@savecnt=\count284
LaTeX Encoding Info: Redeclaring text command \ij (encoding OT1) on input li
ne 2078.
LaTeX Encoding Info: Redeclaring text command \IJ (encoding OT1) on input li
ne 2080.
LaTeX Encoding Info: Redeclaring text command \ij (encoding T1) on input lin
e 2082.
LaTeX Encoding Info: Redeclaring text command \IJ (encoding T1) on input lin
e 2083.
LaTeX Encoding Info: Ignoring declaration for text command \ij (encoding ?)
on input line 2084.
LaTeX Encoding Info: Ignoring declaration for text command \IJ (encoding ?)
on input line 2086.
LaTeX Encoding Info: Ignoring declaration for text command \SS (encoding ?)
on input line 2111.
\U@D=\dimen156
\l@unhyphenated=\language91
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/babel/luababel.def
\bbl@attr@locale=\attribute4
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/babel/locale/sk/babel-slovak.tex)
Package babel Info: Importing font and identification data for slovak
(babel) from babel-sk.ini. Reported on input line 4330.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/babel-slovak/slovak.ldf
Language: slovak 2008/07/06 v3.1a Slovak support from the babel system
Package babel Info: Making ^ an active character on input line 123.
Package babel Info: Making " an active character on input line 126.
Package babel Info: Making ' an active character on input line 129.
\cs@wordlen=\count285
Package babel Info: Making - an active character on input line 294.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex
UTF-8 Slovak hyphenation patterns
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex))))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontspec/fontspec.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/l3packages/xparse/xparse.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/l3kernel/expl3.sty
Package: expl3 2026-01-19 L3 programming layer (loader)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/l3backend/l3backend-luatex.def
File: l3backend-luatex.def 2025-10-09 L3 backend support: PDF output (LuaTeX)
\l__color_backend_stack_int=\count286
Inserting `l3color' in `luaotfload.parse_color'.))
Package: xparse 2025-10-09 L3 Experimental document command parser
)
Package: fontspec 2025/09/29 v2.9g Font selection for XeLaTeX and LuaLaTeX
Lua module: fontspec 2025/09/29 v2.9g Font selection for XeLaTeX and LuaLaTeX
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2025/09/29 v2.9g Font selection for XeLaTeX and LuaLaT
eX
\l__fontspec_script_int=\count287
\l__fontspec_language_int=\count288
\l__fontspec_strnum_int=\count289
\l__fontspec_tmp_int=\count290
\l__fontspec_tmpa_int=\count291
\l__fontspec_tmpb_int=\count292
\l__fontspec_tmpc_int=\count293
\l__fontspec_em_int=\count294
\l__fontspec_emdef_int=\count295
\l__fontspec_strong_int=\count296
\l__fontspec_strongdef_int=\count297
\l__fontspec_tmpa_dim=\dimen157
\l__fontspec_tmpb_dim=\dimen158
\l__fontspec_tmpc_dim=\dimen159
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/base/fontenc.sty
Package: fontenc 2025/07/18 v2.1d Standard LaTeX package
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontspec/fontspec.cfg)))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/frontendlayer/tikz.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/basiclayer/pgf.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/utilities/pgfrcs.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks19
\pgfutil@tempdima=\dimen160
\pgfutil@tempdimb=\dimen161
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box53
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfrcs.code.tex
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
))
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/basiclayer/pgfcore.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics/graphicx.sty
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics/graphics.sty
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics/trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: luatex.def on input line 106.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics-def/luatex.def
File: luatex.def 2025/09/29 v1.2f Graphics/color driver for luatex
))
\Gin@req@height=\dimen162
\Gin@req@width=\dimen163
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/systemlayer/pgfsys.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks20
\pgfkeys@temptoks=\toks21
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
\pgfkeys@tmptoks=\toks22
))
\pgf@x=\dimen164
\pgf@y=\dimen165
\pgf@xa=\dimen166
\pgf@ya=\dimen167
\pgf@xb=\dimen168
\pgf@yb=\dimen169
\pgf@xc=\dimen170
\pgf@yc=\dimen171
\pgf@xd=\dimen172
\pgf@yd=\dimen173
\w@pgf@writea=\write3
\r@pgf@reada=\read3
\c@pgf@counta=\count298
\c@pgf@countb=\count299
\c@pgf@countc=\count300
\c@pgf@countd=\count301
\t@pgf@toka=\toks23
\t@pgf@tokb=\toks24
\t@pgf@tokc=\toks25
\pgf@sys@id@count=\count302
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
)
Driver file for pgf: pgfsys-luatex.def
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
File: pgfsys-luatex.def 2025-08-29 v3.1.11a (3.1.11a)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
)))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfsyssoftpath@smallbuffer@items=\count303
\pgfsyssoftpath@bigbuffer@items=\count304
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: luatex.def on input line 274.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
Package xcolor Info: Model `RGB' extended on input line 1365.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmath.code.tex
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathutil.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen174
\pgfmath@count=\count305
\pgfmath@box=\box54
\pgfmath@toks=\toks26
\pgfmath@stack@operand=\toks27
\pgfmath@stack@operation=\toks28
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathcalc.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count306
))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfint.code.tex)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@picminx=\dimen175
\pgf@picmaxx=\dimen176
\pgf@picminy=\dimen177
\pgf@picmaxy=\dimen178
\pgf@pathminx=\dimen179
\pgf@pathmaxx=\dimen180
\pgf@pathminy=\dimen181
\pgf@pathmaxy=\dimen182
\pgf@xx=\dimen183
\pgf@xy=\dimen184
\pgf@yx=\dimen185
\pgf@yy=\dimen186
\pgf@zx=\dimen187
\pgf@zy=\dimen188
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@path@lastx=\dimen189
\pgf@path@lasty=\dimen190
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@shorten@end@additional=\dimen191
\pgf@shorten@start@additional=\dimen192
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfpic=\box55
\pgf@hbox=\box56
\pgf@layerbox@main=\box57
\pgf@picture@serial@count=\count307
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgflinewidth=\dimen193
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@pt@x=\dimen194
\pgf@pt@y=\dimen195
\pgf@pt@temp=\dimen196
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfarrowsep=\dimen197
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@max=\dimen198
\pgf@sys@shading@range@num=\count308
\pgf@shadingcount=\count309
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfexternal@startupbox=\box58
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfnodeparttextbox=\box59
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
\pgf@nodesepstart=\dimen199
\pgf@nodesepend=\dimen256
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/utilities/pgffor.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/utilities/pgfkeys.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgfkeys.code.tex))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/pgf/math/pgfmath.sty
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/math/pgfmath.code.tex))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/utilities/pgffor.code.tex
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
\pgffor@iter=\dimen257
\pgffor@skip=\dimen258
\pgffor@stack=\toks29
\pgffor@toks=\toks30
))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgf@plot@mark@count=\count310
\pgfplotmarksize=\dimen259
)
\tikz@lastx=\dimen260
\tikz@lasty=\dimen261
\tikz@lastxsaved=\dimen262
\tikz@lastysaved=\dimen263
\tikz@lastmovetox=\dimen264
\tikz@lastmovetoy=\dimen265
\tikzleveldistance=\dimen266
\tikzsiblingdistance=\dimen267
\tikz@figbox=\box60
\tikz@figbox@bg=\box61
\tikz@tempbox=\box62
\tikz@tempbox@bg=\box63
\tikztreelevel=\count311
\tikznumberofchildren=\count312
\tikznumberofcurrentchild=\count313
\tikz@fig@count=\count314
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
\pgfmatrixcurrentrow=\count315
\pgfmatrixcurrentcolumn=\count316
\pgf@matrix@numberofcolumns=\count317
)
\tikz@expandcount=\count318
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/marvosym/marvosym.sty
Package: marvosym 2011/07/20 v2.2 Martin Vogel's Symbols font definitions
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontawesome7/fontawesome7.sty
Package: fontawesome7 2025/11/02 v7.1.0-1 Font Awesome 7
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2025-10-09 LaTeX2e option processing using LaTeX3 keys
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontawesome7/fontawesome7-utex-helper.sty
Package: fontawesome7-utex-helper 2025/11/02 v7.1.0-1 uTeX helper for fontaweso
me7
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/luatex/luatexbase/luatexbase.sty
Package: luatexbase 2015/10/04 v1.3 luatexbase interface to LuaTeX
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/luatex/ctablestack/ctablestack.sty
Package: ctablestack 2015/10/01 v1.0 Catcode table stable support
\@catcodetablestackcnt=\count319
)
\CatcodeTableOther=\catcodetable16
\CatcodeTableExpl=\catcodetable17
)
LaTeX Font Info: Trying to load font information for TU+fontawesome7free on
input line 63.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontawesome7/tufontawesome7free.fd)
LaTeX Font Info: Trying to load font information for TU+fontawesome7brands o
n input line 64.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/fontawesome7/tufontawesome7brands.fd)))
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybabel.code.tex
File: tikzlibrarybabel.code.tex 2025-08-29 v3.1.11a (3.1.11a)
)
(./main.aux
Package babel Info: 'slovak' activates 'slovak' shorthands.
(babel) Reported on input line 8.
)
\openout1 = main.aux
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
*geometry* driver: auto-detecting
*geometry* detected driver: luatex
*geometry* verbose mode - [ preamble ] result:
* driver: luatex
* paper: custom
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(22.76219pt, 210.55042pt, 22.76219pt)
* v-part:(T,H,B)=(22.76219pt, 96.7394pt, 22.76219pt)
* \paperwidth=256.0748pt
* \paperheight=142.26378pt
* \textwidth=210.55042pt
* \textheight=96.7394pt
* \oddsidemargin=-49.5078pt
* \evensidemargin=-49.5078pt
* \topmargin=-86.5078pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=65.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package fontspec Info:
(fontspec) Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup4
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 20.
LaTeX Font Info: Redeclaring math accent \acute on input line 20.
LaTeX Font Info: Redeclaring math accent \grave on input line 20.
LaTeX Font Info: Redeclaring math accent \ddot on input line 20.
LaTeX Font Info: Redeclaring math accent \tilde on input line 20.
LaTeX Font Info: Redeclaring math accent \bar on input line 20.
LaTeX Font Info: Redeclaring math accent \breve on input line 20.
LaTeX Font Info: Redeclaring math accent \check on input line 20.
LaTeX Font Info: Redeclaring math accent \hat on input line 20.
LaTeX Font Info: Redeclaring math accent \dot on input line 20.
LaTeX Font Info: Redeclaring math accent \mathring on input line 20.
LaTeX Font Info: Redeclaring math symbol \colon on input line 20.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 20.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 20.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 20.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 20.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 20.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 20.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 20.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 20.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 20.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 20.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 20.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 20.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 20.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 20.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/lmr/m/n --> TU/lmr/m/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/lmr/b/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/lmr/m/n --> TU/lmr/b/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/lmr/b/it on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 20.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count320
\scratchdimen=\dimen268
\scratchbox=\box64
\nofMPsegments=\count321
\nofMParguments=\count322
\everyMPshowfont=\toks31
\MPscratchCnt=\count323
\MPscratchDim=\dimen269
\MPnumerator=\count324
\makeMPintoPDFobject=\count325
\everyMPtoPDFconversion=\toks32
)
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
<1.png, id=4, 448.67625pt x 448.67625pt>
File: 1.png Graphic file (type png)
<use 1.png>
Package luatex.def Info: 1.png used on input line 34.
(luatex.def) Requested size: 68.2866pt x 68.2844pt.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 41.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 41.
LaTeX Font Info: Trying to load font information for U+mvs on input line 42.
(/nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texm
fdist/tex/latex/marvosym/umvs.fd) [1
{/nix/store/anbw89c7fwjbzc2jakj9knvnvzk9zr0x-texlive-2025-r78234-final-env/share
/texmf-var/fonts/map/pdftex/updmap/pdftex.map}<./1.png>] (./main.aux)
***********
LaTeX2e <2025-11-01>
L3 programming layer <2026-01-19>
***********
)
Here is how much of LuaTeX's memory you used:
20724 strings out of 476078
100000,953878 words of node,token memory allocated
457 words of node memory still in use:
4 hlist, 1 vlist, 1 rule, 5 glue, 3 kern, 1 glyph, 11 attribute, 48 glue_spec
, 6 attribute_list, 2 write nodes
avail lists: 1:1,2:477,3:129,4:58,5:30,6:10,7:412,8:1,9:108,10:3,11:20
42726 multiletter control sequences out of 65536+600000
37 fonts using 3969047 bytes
102i,7n,101p,405b,2842s stack positions out of 10000i,1000n,20000p,200000b,200000s
</nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-texmf
dist/fonts/opentype/public/fontawesome7/FontAwesome7Free-Solid-900.otf></nix/sto
re/swxn2kgfg47a8r0igh45r51c7x3mk92s-lm-2.005-tex/fonts/opentype/public/lm/lmroma
n10-regular.otf></nix/store/swxn2kgfg47a8r0igh45r51c7x3mk92s-lm-2.005-tex/fonts/
opentype/public/lm/lmroman9-regular.otf></nix/store/56vq9r21wl8m731rsri7nh3l4ipi
h7jj-texlive-2025-r78234-final-env-texmfdist/fonts/opentype/public/fontawesome7/
FontAwesome7Brands-Regular-400.otf></nix/store/swxn2kgfg47a8r0igh45r51c7x3mk92s-
lm-2.005-tex/fonts/opentype/public/lm/lmroman12-regular.otf></nix/store/swxn2kgf
g47a8r0igh45r51c7x3mk92s-lm-2.005-tex/fonts/opentype/public/lm/lmroman12-bold.ot
f></nix/store/56vq9r21wl8m731rsri7nh3l4ipih7jj-texlive-2025-r78234-final-env-tex
mfdist/fonts/type1/public/marvosym/marvosym.pfb>
Output written on main.pdf (1 page, 141441 bytes).
PDF statistics: 58 PDF objects out of 1000 (max. 8388607)
34 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 131072)
16 words of extra memory for PDF output out of 10000 (max. 100000000)

BIN
vizitka_priecinsky/main.pdf Normal file

Binary file not shown.

View File

@@ -17,6 +17,7 @@
\pagestyle{empty} \pagestyle{empty}
\setlength{\parindent}{0pt} \setlength{\parindent}{0pt}
\begin{document}
\begin{flushright} \begin{flushright}
{\color{cardDark}\Large\textbf{Filip Priečinský}} \\ {\color{cardDark}\Large\textbf{Filip Priečinský}} \\
@@ -46,3 +47,4 @@
\end{document} \end{document}