From 7c53a57dc440a6eb212d6a76e6272fa756ec5431 Mon Sep 17 00:00:00 2001 From: Jannis Portmann Date: Thu, 2 Feb 2023 17:58:05 +0100 Subject: [PATCH 1/3] Basic setup --- main.tex | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.tex b/main.tex index 5ae19f4..c41fb1e 100644 --- a/main.tex +++ b/main.tex @@ -137,8 +137,8 @@ \setlength{\columnsep}{2pt} \begin{center} - \Large{lsd-zf} \\ - \small{\href{http://www.vvz.ethz.ch/}{VL-NUMMER}} \\ + \Large{Dynamics of Large-scale Atmospheric Flow} \\ + \small{\href{http://iacweb.ethz.ch/courses/id/701-1221-00L}{701-1221-00}} \\ \small{Jannis Portmann \the\year} \\ {\ccbysa} \rule{\linewidth}{0.25pt} @@ -151,17 +151,17 @@ \section*{Copyleft} \doclicenseImage \\ -Dieses Dokument ist unter (CC BY-SA 3.0) freigegeben \\ +This document is released under (CC BY-SA 3.0) \\ \faGlobeEurope \kern 1em \url{https://n.ethz.ch/~jannisp/lsd-zf} \\ \faGit \kern 0.88em \url{https://git.thisfro.ch/thisfro/lsd-zf} \\ -Jannis Portmann, FS21 +Jannis Portmann, HS22 -\section*{Referenzen} +\section*{References} \begin{enumerate} - \item Skript + \item Script: LSD\_22.pdf \end{enumerate} -\section*{Bildquellen} +\section*{Image sources} \begin{itemize} \item Bild \end{itemize} From ad7dcd1ee92087d55c503e02c9a031ae87fd3c5a Mon Sep 17 00:00:00 2001 From: Jannis Portmann Date: Thu, 2 Feb 2023 18:13:28 +0100 Subject: [PATCH 2/3] First formulas --- main.tex | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/main.tex b/main.tex index c41fb1e..f2ebbef 100644 --- a/main.tex +++ b/main.tex @@ -144,7 +144,23 @@ \rule{\linewidth}{0.25pt} \end{center} -\section{First} +\section{Equations} +\subsection{Navier-Stokes} +\begin{equation} + \frac{D}{Dt} +\end{equation} + +\subsection{Circulation} +\begin{equation} + C = \oint_c u \, dc = \oint (u \, dx + v \, dy + w \, dz) +\end{equation} + +\section{Concepts} +\subsection{Thermal wind} +\textit{Thermal wind} describes the vertical change of geostrophic (i.e. horizontal) wind +\begin{equation} + \frac{\partial}{\partial z} v_G = \bigg(\frac{1}{f}\frac{g}{\theta_0}\bigg)(k \times \nabla_h \theta^*) +\end{equation} \scriptsize From de1f6b96c734f719f00d10716bde04678e1dcfe6 Mon Sep 17 00:00:00 2001 From: Jannis Portmann Date: Thu, 2 Feb 2023 18:13:37 +0100 Subject: [PATCH 3/3] Update CI --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 46564cd..438f168 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,14 +4,14 @@ node { } stage('Build PDF') { - sh 'latexmk -c -xelatex -jobname=${REPO_NAME} main.tex' + sh 'latexmk -c -xelatex -jobname=lsd-zf main.tex' } stage('Archive PDF') { - archiveArtifacts artifacts: '${REPO_NAME}.pdf', followSymlinks: false + archiveArtifacts artifacts: 'lsd-zf.pdf', followSymlinks: false } stage('Publish PDF') { - sh 'scp -i /root/.ssh/id_rsa ${REPO_NAME}.pdf thisfro@192.168.178.45:/opt/containers/apache2/html/download/latex-previews/${REPO_NAME}.pdf' + cp 'lsd-zf.pdf /mnt/latex-previews/lsd-zf.pdf' } } \ No newline at end of file