Skip to content

Commit c1f6ebf

Browse files
committed
Fix blocks in style
1 parent 1cc2467 commit c1f6ebf

5 files changed

Lines changed: 88 additions & 39 deletions

File tree

S3.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
\item students type along with instructors
3030
\item get feedback
3131
\end{itemize}
32-
\item two main takeaways:
32+
\item Two main takeaways:
3333
\begin{itemize}
3434
\item muscle memory
3535
\item vocabulary
3636
\end{itemize}
37-
\item not experts after two days but:
37+
\item Not experts after two days but:
3838
\begin{itemize}
3939
\item know what answer looks like
4040
\item know how to find answers

S5.tex

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
\begin{frame}{Roadmap}
2-
\begin{itemize}
3-
\item HPC Carpentry is currently in Lesson Program Incubation
4-
\item We have a checklist of items (from The Carpentries Handbook) that we are working on
5-
6-
\end{itemize}
1+
\begin{frame}{Roadmap and Challenges}
2+
\begin{carpblockgreen}[Roadmap:]
3+
\begin{itemize}
4+
\item HPC Carpentry is currently in Lesson Program Incubation
5+
\item We have a checklist of items (from The Carpentries Handbook) that we are working on to comply with the general committee policy.
6+
\end{itemize}
7+
\end{carpblockgreen}
78

8-
\note[item]{Each Lesson Program will have a Lesson Program Governance Committee.}
9-
\note[item]{Each Lesson Program Governance Committee will comply with the general committee policy as described in the Carpentries Handbook.}
10-
11-
\note[item]{For example: In addition, each Lesson Program Governance Committee:}
12-
\note[item]{Maintains a minimum of 3 members to serve on the committee and act as a point of contact with The Carpentries Board of Directors and Core Team.}
13-
\note[item]{Follows all general policies as outlined by The Carpentries, including, but not limited to, the Code of Conduct.}
9+
\begin{carpblockred}[Challenges:]
10+
\begin{itemize}
11+
\item Demonstrating the value top HPC centres.
12+
\item How to adapt material to diverse clusters?
13+
\item Should we or can we standardise to cloud cluster?
14+
\end{itemize}
15+
\end{carpblockred}
16+
17+
\note[item]{Each Lesson Program will have a Lesson Program Governance Committee.}
18+
\note[item]{Each Lesson Program Governance Committee will comply with the general committee policy as described in the Carpentries Handbook.}
19+
\note[item]{For example: In addition, each Lesson Program Governance Committee:}
20+
\note[item]{Maintains a minimum of 3 members to serve on the committee and act as a point of contact with The Carpentries Board of Directors and Core Team.}
21+
\note[item]{Follows all general policies as outlined by The Carpentries, including, but not limited to, the Code of Conduct.}
1422
\end{frame}

beamerthemeHPC.sty

Lines changed: 65 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
% Define Carpentries colours
33
\definecolor{carpblue}{HTML}{001483}
44
\definecolor{carpred}{HTML}{FF4955}
5+
\definecolor{carplightgreen}{HTML}{40AEAD}
56

67
% Requirements
78
\RequirePackage{tikz}
@@ -75,32 +76,72 @@
7576
}
7677

7778

78-
\newenvironment{carpblockred}[1][]{
79+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80+
% Robust Carpentries red block
81+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82+
\newenvironment{carpblockred}[1][]%
83+
{%
84+
\par\vspace{1ex}%
85+
\centering
86+
\begin{tikzpicture}
87+
\node[
88+
align=left,
89+
draw=carpred,
90+
very thick,
91+
rounded corners=4pt,
92+
left color=carpred!50,
93+
right color=carpred!5,
94+
shading angle=60,
95+
inner sep=6pt,
96+
text width=0.9\linewidth
97+
] (box) \bgroup
98+
\begin{minipage}{0.85\linewidth}
99+
\ifx\relax#1\relax
100+
\else
101+
{\bfseries #1}\\[0.5ex]%
102+
\fi
103+
}%
104+
{%
105+
\end{minipage}
106+
\egroup;
107+
\end{tikzpicture}%
108+
109+
\vspace{1ex}\par
110+
}
111+
112+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
113+
% Robust Carpentries red block
114+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
115+
\newenvironment{carpblockgreen}[1][]%
116+
{%
117+
\par\vspace{1ex}%
118+
\centering
79119

80-
%%%%%%%%%% Rounded corner block around text %%%%%%%%%%%
81-
\begin{tikzpicture}[remember picture,overlay]
82-
% Title & Subtitle
83-
\node
84-
[
85-
above=-0.7cm,
86-
align=center,
87-
draw=carpred,
88-
very thick,
89-
rounded corners=4pt,
90-
left color=carpred!50,
91-
right color=carpred!5,
92-
shading angle=60,
93-
inner xsep=15pt,
94-
inner ysep=10pt,
95-
minimum width=0.7\textwidth,
96-
text width=0.8\textwidth
97-
]
98-
99-
{
100-
101-
};
102-
\end{tikzpicture}
120+
\begin{tikzpicture}
121+
\node[
122+
align=left,
123+
draw=carplightgreen,
124+
very thick,
125+
rounded corners=4pt,
126+
left color=carplightgreen!50,
127+
right color=carplightgreen!5,
128+
shading angle=60,
129+
inner sep=6pt,
130+
text width=0.9\linewidth
131+
] (box) \bgroup
132+
\begin{minipage}{0.85\linewidth}
133+
\ifx\relax#1\relax
134+
\else
135+
{\bfseries #1}\\[0.5ex]%
136+
\fi
137+
}%
138+
{%
139+
\end{minipage}
140+
\egroup;
141+
\end{tikzpicture}%
142+
\vspace{1ex}\par
103143
}
104144

145+
105146
% Settings
106147
\mode<all>

miniVersion.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
\begin{itemize}
55
\item CarpentriesOffline started about four years go (2022 SSI Fellowship).
66
\item We decided we need an HPC version too due to the difficulties associated with getting access to HPCs for training.
7-
\item Raspberry Pi 4s, one login node, five compute node, one access point
7+
\item Raspberry Pi 4s, one login node, five compute nodes, one access point
88
\item The same open source software stack as many HPCs: Slurm, lmod, munge
99
\item EESSI for software
1010

slides.pdf

1.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)