mirror of
https://github.com/eddelbuettel/binb
synced 2024-12-22 04:29:59 +01:00
release 0.0.2
This commit is contained in:
parent
b58eb6132b
commit
40dd112824
@ -1,3 +1,11 @@
|
|||||||
|
2018-09-27 Dirk Eddelbuettel <edd@debian.org>
|
||||||
|
|
||||||
|
* DESCRIPTION (Version, Date): Release 0.0.2
|
||||||
|
|
||||||
|
* README.md: Small edits
|
||||||
|
|
||||||
|
* docs/binb_minimal.gif: Combine existing *minimal.pdf
|
||||||
|
|
||||||
2018-09-26 Dirk Eddelbuettel <edd@debian.org>
|
2018-09-26 Dirk Eddelbuettel <edd@debian.org>
|
||||||
|
|
||||||
* docs/Makefile: Auto-create gif files with correct specs
|
* docs/Makefile: Auto-create gif files with correct specs
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Package: binb
|
Package: binb
|
||||||
Type: Package
|
Type: Package
|
||||||
Title: 'binb' is not 'Beamer'
|
Title: 'binb' is not 'Beamer'
|
||||||
Version: 0.0.1.1
|
Version: 0.0.2
|
||||||
Date: 2018-09-22
|
Date: 2018-09-27
|
||||||
Author: Dirk Eddelbuettel and Ista Zahn
|
Author: Dirk Eddelbuettel and Ista Zahn
|
||||||
Maintainer: Dirk Eddelbuettel <edd@debian.org>
|
Maintainer: Dirk Eddelbuettel <edd@debian.org>
|
||||||
Description: A collection of 'LaTeX' styles using 'Beamer' customization for
|
Description: A collection of 'LaTeX' styles using 'Beamer' customization for
|
||||||
|
14
README.md
14
README.md
@ -1,6 +1,6 @@
|
|||||||
## binb [![Build Status](https://travis-ci.org/eddelbuettel/binb.svg)](https://travis-ci.org/eddelbuettel/binb) [![Package-License](http://img.shields.io/badge/license-GPL--2-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/binb)](https://cran.r-project.org/package=binb) [![Downloads](http://cranlogs.r-pkg.org/badges/binb?color=brightgreen)](http://www.r-pkg.org/pkg/binb)
|
## binb [![Build Status](https://travis-ci.org/eddelbuettel/binb.svg)](https://travis-ci.org/eddelbuettel/binb) [![Package-License](http://img.shields.io/badge/license-GPL--2-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/binb)](https://cran.r-project.org/package=binb) [![Downloads](http://cranlogs.r-pkg.org/badges/binb?color=brightgreen)](http://www.r-pkg.org/pkg/binb)
|
||||||
|
|
||||||
Binb is not Beamer: Stylish pdf Presentation from RMarkdown
|
Binb is not Beamer: Stylish pdf Presentations from RMarkdown
|
||||||
|
|
||||||
### Motivation
|
### Motivation
|
||||||
|
|
||||||
@ -43,8 +43,8 @@ output: binb::metropolis
|
|||||||
Hello, world!
|
Hello, world!
|
||||||
````
|
````
|
||||||
|
|
||||||
It creates a [three-page pdf file](https://eddelbuettel.github.io/binb/metropolis_minimal.pdf) which we converted into this
|
It creates a [three-page pdf file](https://eddelbuettel.github.io/binb/metropolis_minimal.pdf) which
|
||||||
animated gif (which loses font crispness, sadly):
|
we converted into this animated gif
|
||||||
|
|
||||||
![](https://eddelbuettel.github.io/binb/metropolis_minimal.gif)
|
![](https://eddelbuettel.github.io/binb/metropolis_minimal.gif)
|
||||||
|
|
||||||
@ -81,8 +81,8 @@ Another planet!
|
|||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
This creates this [pdf file](https://eddelbuettel.github.io/binb/iqss_minimal.pdf) which we converted into this
|
This creates this [pdf file](https://eddelbuettel.github.io/binb/iqss_minimal.pdf) which we
|
||||||
animated gif (also losing font crispness):
|
converted into this animated gif:
|
||||||
|
|
||||||
![](https://eddelbuettel.github.io/binb/iqss_minimal.gif)
|
![](https://eddelbuettel.github.io/binb/iqss_minimal.gif)
|
||||||
|
|
||||||
@ -142,8 +142,8 @@ ____
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
From this, one can creats this [pdf file](https://eddelbuettel.github.io/binb/presento_minimal.pdf) which
|
From this, one can creats this [pdf file](https://eddelbuettel.github.io/binb/presento_minimal.pdf)
|
||||||
can be converted into this animated gif (again losing font crispness):
|
which can be converted into this animated gif:
|
||||||
|
|
||||||
![](https://eddelbuettel.github.io/binb/presento_minimal.gif)
|
![](https://eddelbuettel.github.io/binb/presento_minimal.gif)
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
##
|
##
|
||||||
## Dirk Eddelbuettel, Sep 2018, GPL-2'ed
|
## Dirk Eddelbuettel, Sep 2018, GPL-2'ed
|
||||||
|
|
||||||
pdfs = `ls *pdf`
|
pdfs = $(shell ls *pdf)
|
||||||
gifs = $(pdfs:.pdf=.gif)
|
gifs = $(pdfs:.pdf=.gif)
|
||||||
|
|
||||||
|
|
||||||
@ -13,3 +13,8 @@ all: ${gifs}
|
|||||||
|
|
||||||
%.gif: %.pdf
|
%.gif: %.pdf
|
||||||
convert -density 127 -delay 200 $< $@
|
convert -density 127 -delay 200 $< $@
|
||||||
|
|
||||||
|
minimalpdfs = $(shell ls *minimal.pdf | grep -v binb_minimal.pdf)
|
||||||
|
|
||||||
|
combo:
|
||||||
|
convert -density 127 -delay 100 ${minimalpdfs} binb_minimal.gif
|
||||||
|
BIN
docs/binb_minimal.gif
Normal file
BIN
docs/binb_minimal.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 325 KiB |
@ -3,7 +3,7 @@
|
|||||||
\newcommand{\ghpr}{\href{https://github.com/eddelbuettel/binb/pull/#1}{##1}}
|
\newcommand{\ghpr}{\href{https://github.com/eddelbuettel/binb/pull/#1}{##1}}
|
||||||
\newcommand{\ghit}{\href{https://github.com/eddelbuettel/binb/issues/#1}{##1}}
|
\newcommand{\ghit}{\href{https://github.com/eddelbuettel/binb/issues/#1}{##1}}
|
||||||
|
|
||||||
\section{Changes in binb version 0.0.2 (2018-xx-yy)}{
|
\section{Changes in binb version 0.0.2 (2018-09-27)}{
|
||||||
\itemize{
|
\itemize{
|
||||||
\item Added support for 'Presento' theme by Ratul Saha (\ghpr{4})
|
\item Added support for 'Presento' theme by Ratul Saha (\ghpr{4})
|
||||||
\item Longer vignettes were added to the docs/ directory
|
\item Longer vignettes were added to the docs/ directory
|
||||||
|
Loading…
x
Reference in New Issue
Block a user