rbbeamer 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -1
- data/bin/rbbeamer +5 -1
- data/changes.txt +2 -0
- metadata +1 -1
data/README.md
CHANGED
@@ -142,8 +142,8 @@ Starting rbbeamer at least you will have to specify your .rbt-file to compile. B
|
|
142
142
|
--handout, -h: build a handout (no animations in pdf, add _handout
|
143
143
|
to filename)
|
144
144
|
--theme, -t <s>: Beamer-Theme to use (see Beamer-Doc for more info)
|
145
|
-
--handoutcolor, -n <s>: Colortheme for printing handouts (try DOVE to save ink) (default: default)
|
146
145
|
(default: Luebeck)
|
146
|
+
--handoutcolor,-n <s>: Colortheme for printing handouts (try DOVE to save ink) (default: default)
|
147
147
|
--babel, -b <s>: Language-option for babel-Package (default: english)
|
148
148
|
--backend, -a <s>: Backend for biblatex setting up references (default:
|
149
149
|
bibtex)
|
data/bin/rbbeamer
CHANGED
@@ -23,7 +23,7 @@ require 'parseconfig.rb'
|
|
23
23
|
require 'open3'
|
24
24
|
require 'pathname'
|
25
25
|
|
26
|
-
Version = "0.5.
|
26
|
+
Version = "0.5.6 (2014-02-21)"
|
27
27
|
|
28
28
|
sep = '|' # seperator-string to split different parts of a line / command
|
29
29
|
SAVESEP = '<-saveThisAsSeperatorForLaterUse->'
|
@@ -285,6 +285,7 @@ end
|
|
285
285
|
# This our config for this session:
|
286
286
|
if cfg[:debug]
|
287
287
|
puts "\n\nDebugging info:\nPathes:\npathname = #{pathname}\nhomedir = #{homedir}\n\nConfig-File = #{ccfg} #{ccfgexist}\n"
|
288
|
+
puts "\n\nDebugging info:\nPathes:\npathname = #{pathname}\nhomedir = #{homedir}\n\nConfig-File = #{ccfga} #{ccfgexistL}\n"
|
288
289
|
puts "\nConfig for this session:"
|
289
290
|
cfg.each_pair{|k,v| puts "#{k} = #{v}"}
|
290
291
|
puts "\n\n"
|
@@ -330,6 +331,9 @@ fbasename = File.basename(filename,'.rbt')
|
|
330
331
|
fbasename += '_handout' if cfg[:handout]
|
331
332
|
fn = fbasename + '.tex'
|
332
333
|
|
334
|
+
# Handout mode: We will use Defaulthandoutcolor-Theme or specified handoutcolor-Theme
|
335
|
+
# Presentation mode: We always will use Defaulthandoutcolor
|
336
|
+
cfg[:handoutcolor] = cfg[:handout] ? cfg[:handoutcolor] : Defaulthandoutcolor
|
333
337
|
# Do we have to preprocess graphviz-pictures?
|
334
338
|
picmake = FALSE
|
335
339
|
puts "Processing #{filename}"
|
data/changes.txt
CHANGED