summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2013-07-26 12:40:56 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2013-07-26 12:40:56 -0700
commita97f39c12e7b47a272575b69ad4cdd38966c043e (patch)
treefdd5ec43ff42968e859c9de28ecd4eab60f02947 /README
parentd5fad2306a27b3fcf2c85782dd13bc8e516a5df9 (diff)
Beamer: add allowframebreaks to slide if set in header classes.
It's recommended that your bibliography slide have this attribute: # References {.allowframebreaks} This causes multiple slides to be created if necessary, depending on the length of the bibliography.
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 10 insertions, 0 deletions
diff --git a/README b/README
index d9b003344..4895f0f52 100644
--- a/README
+++ b/README
@@ -2674,6 +2674,16 @@ using the `-V` option:
pandoc -t beamer habits.txt -V theme:Warsaw -o habits.pdf
+Note that header attributes will turn into slide attributes
+(on a `<div>` or `<section>`) in HTML slide formats, allowing you
+to style individual slides. In Beamer, the only header attribute
+that affects slides is the `allowframebreaks` class, which sets the
+`allowframebreaks` option, causing multiple slides to be created
+if the content overfills the frame. This is recommended especially for
+bibliographies:
+
+ # References {.allowframebreaks}
+
Literate Haskell support
========================