Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/ExerciseSchedule_AdvancedCourse.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ HEP C++ Advanced Course's exercise schedule
- Solutions and hints can be found in the ExercisesCheatSheet.md file located in the same directory.
- Each exercise is in its own directory and referred to in the following by the name of the directory

There are far too many exercies on each day. They are given in order in which they should be done.
There are far too many exercises on each day. They are given in order in which they should be done.

Day 1
-----
Expand Down
2 changes: 2 additions & 0 deletions talk/C++Course.tex
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@
% advanced slides have a different structure color
\specialcomment{advanced}{
\setbeamercolor{structure}{fg=beamer@blendedblue!40!violet}
\isAdvancedSlidetrue
}{
\setbeamercolor{structure}{fg=beamer@blendedblue}
\isAdvancedSlidefalse
}
\fi

Expand Down
2 changes: 1 addition & 1 deletion talk/objectorientation/constructors.tex
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
\frametitlecpp[11]{Constructor inheritance}
\begin{block}{Idea}
\begin{itemize}
\item avoid having to re-declare parent's constructors
\item avoid having to redeclare parent's constructors
\item by stating that we inherit all parent constructors
\item derived class can add more constructors
\end{itemize}
Expand Down
8 changes: 7 additions & 1 deletion talk/setup.tex
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,15 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% frametitle with C++ version %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Switch designs for advanced and essentials course:
\newif\ifisAdvancedSlide\isAdvancedSlidefalse
% Use as \frametitlecpp[14]{Title}
\newcommand\frametitlecpp[2][98]{
\frametitle{#2 \hfill \cpp#1}
\ifisAdvancedSlide
\frametitle{#2 \hfill \cpp#1 \small Adv}
\else
\frametitle{#2 \hfill \cpp#1}
\fi
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Expand Down