Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2013-08-23 03:55:08 (GMT)
committer Philip Withnall <philip@tecnocode.co.uk>2013-08-23 03:55:08 (GMT)
commitc68c9ab52d262afaa17fd86a4d6bca9d3f409626 (patch)
treecd4d475a27b601daae8b0fc41d59c7c8931cf2e3
parent3a1283e1b428e5afe773cc1a3fd7da59116bc407 (diff)
Fix slide content not appearing in presentation.pdf
Due to moving to a second level of \input{}. This was being treated as non-slide text by Beamer and hence was omitted from the slides. Oops.
-rw-r--r--introduction-to-python.tex2
-rw-r--r--python-functions-and-classes.tex2
-rw-r--r--slides.tex8
-rw-r--r--writing-sugar-activities.tex2
4 files changed, 10 insertions, 4 deletions
diff --git a/introduction-to-python.tex b/introduction-to-python.tex
index 8be6a2e..5747428 100644
--- a/introduction-to-python.tex
+++ b/introduction-to-python.tex
@@ -1,3 +1,5 @@
+\mode* % Reset \mode<all> from slides.tex
+
\section{\en{Interpreter}\es{Intérprete}}
\en{You can run Python interactively, and enter programs which will be executed
diff --git a/python-functions-and-classes.tex b/python-functions-and-classes.tex
index 062ce97..483810e 100644
--- a/python-functions-and-classes.tex
+++ b/python-functions-and-classes.tex
@@ -1,3 +1,5 @@
+\mode* % Reset \mode<all> from slides.tex
+
\section{\en{Functions}\es{Funciones}}
\en{We've already seen how to call existing functions; now we'll see how to
diff --git a/slides.tex b/slides.tex
index 6bc93ec..4491551 100644
--- a/slides.tex
+++ b/slides.tex
@@ -191,15 +191,15 @@ Windows.}
\part{\en{Introduction to Python}\es{Introducción a Python}}
-\input{introduction-to-python}
+\mode<all>{\input{introduction-to-python}}
\part{\en{Python functions and classes}\es{Funciones y clases en Python}}
-\input{python-functions-and-classes}
+\mode<all>{\input{python-functions-and-classes}}
-\part{\en{Writing Sugar activities}\es{Escribir actividades por Sugar}}
-\input{writing-sugar-activities}
+\part{\en{Writing Sugar activities}\es{Escribir actividades por Sugar}}\label{part:writing-sugar-activities}
+\mode<all>{\input{writing-sugar-activities}}
\section{\en{Miscellany}\es{Miscelánea}}
diff --git a/writing-sugar-activities.tex b/writing-sugar-activities.tex
index f06f2b6..cc42513 100644
--- a/writing-sugar-activities.tex
+++ b/writing-sugar-activities.tex
@@ -1 +1,3 @@
+\mode* % Reset \mode<all> from slides.tex
+
% TODO: This part is yet to be written.