Skip to content

Commit 0858f80

Browse files
committed
releasing v2.2.1
2 parents 226432c + c240b4f commit 0858f80

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## 2.2
44

5+
### 2.2.1
6+
7+
* corrected bug due to empty subtitle
8+
* added a few ideas
9+
* changed implementation of the second logo
10+
511
### 2.2.0-beta
612

713
* Possibility to add the image (logo and name) of another company

makeversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ compareversions () {
4949
}
5050

5151
makechangelog () {
52-
echo -e "\n# Enter here the informations about changes in your program in version %s." "$newv" > release/changelog
52+
printf "\n# Enter here the informations about changes in your program in version %s.\n" "$newv" > release/changelog
5353
tag=$(git describe --tags --abbrev=0);
5454
git log --oneline "$tag"..HEAD | sed 's/^/# /' >> release/changelog
5555
vim -c 'set ft=gitcommit | set tw=80 | set cc=+1 | startinsert' release/changelog

source/beamerx.sty

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\NeedsTeXFormat{LaTeX2e}
2-
\ProvidesPackage{beamerx}[2017/01/19 v2.2.0-beta, standard scientific slideshows layout for Ecole polytechnique (Palaiseau,France).]
2+
\ProvidesPackage{beamerx}[2017/01/26 v2.2.1, standard scientific slideshows layout for Ecole polytechnique (Palaiseau,France).]
33

44
%=======================================================================
55
% Declaration des options
@@ -382,13 +382,17 @@
382382
\newcommand{\nologo}[1]{%
383383
\renewcommand{\includebeamerxlogo}{\color{white}\includegraphics[height=0.25\paperheight,keepaspectratio]{beamerxlogo}}
384384
}
385+
\newlength\logoheight
386+
\setlength\logoheight{.25\paperheight}
385387
\nologo{}
386388
\def\logo{}
387-
\renewcommand{\logo}[1]{%
389+
\renewcommand{\logo}[2][1]{%
388390
\renewcommand{\includebeamerxlogo}{%
389-
\begin{minipage}{0.18377693\paperheight}\color{white}\centering%
390-
\includegraphics[width=\textwidth,keepaspectratio]{beamerxlogo}\\[0.01250\paperwidth]
391-
\includegraphics[width=\textwidth,keepaspectratio]{#1}
391+
\begin{minipage}{.25\paperwidth}\flushleft%
392+
\includegraphics[height=.25\paperheight,keepaspectratio]{beamerxlogo}\\[0.01250\paperwidth]
393+
\setlength\logoheight{#1\logoheight}%
394+
\includegraphics[height=\logoheight,keepaspectratio]{#2}
395+
\setlength\logoheight{.25\paperheight}
392396
\end{minipage}
393397
}%
394398
}

todo.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ x integration of another logo : stack with horizontal logo of the school
3636

3737
x integration of a company name : with ÉCOLE POLYTECHNIQUE - COMPANY - ...
3838
o aspectratio=43 version
39+
o thank you frame ?
40+
o study more the colors in picframes
41+
o switch to beamer theme ?
42+
o switch to class ?

0 commit comments

Comments
 (0)