summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/latex/beamerappendixnote/README.md28
-rw-r--r--Master/texmf-dist/doc/latex/beamerappendixnote/beamerappendixnote.pdfbin0 -> 53574 bytes
-rw-r--r--Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.pdfbin0 -> 10737 bytes
-rw-r--r--Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.tex9
4 files changed, 37 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/beamerappendixnote/README.md b/Master/texmf-dist/doc/latex/beamerappendixnote/README.md
new file mode 100644
index 00000000000..48321f6dc43
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/beamerappendixnote/README.md
@@ -0,0 +1,28 @@
+Beamer appendix note introduces the `\beamerappxnote` command, which puts the note's content on a separate beamer frame, shown by the command `\printappxnotes`. It also creates interactive buttons to move back and forth between the two frames.
+
+# Licence
+
+The `beamerappendixnote` package is made available under the [LaTeX Project Public License (LPPL)](http://www.latex-project.org/lppl.txt), either version 1.3c of this license or (at your option) any later version.
+
+# Installation
+
+To install the package, copy beamersubframe.sty into your `texmf` folder. If you wish to build this file from the source code, follow the following instructions.
+
+# Build
+
+1. Generate beamersubframe.sty
+```
+tex beamersubframe.ins
+```
+
+2. Compile examples
+```
+xelatex example*
+```
+
+3. Compile documentation
+```
+xelatex beamersubframe.dtx
+xelatex beamersubframe.dtx
+```
+
diff --git a/Master/texmf-dist/doc/latex/beamerappendixnote/beamerappendixnote.pdf b/Master/texmf-dist/doc/latex/beamerappendixnote/beamerappendixnote.pdf
new file mode 100644
index 00000000000..cc3d4de9e8b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/beamerappendixnote/beamerappendixnote.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.pdf b/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.pdf
new file mode 100644
index 00000000000..1e560098a0d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.tex b/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.tex
new file mode 100644
index 00000000000..e0eb2b68b81
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/beamerappendixnote/example-basic.tex
@@ -0,0 +1,9 @@
+\documentclass[20pt]{beamer}
+\usepackage{beamerappendixnote}
+\begin{document}
+\begin{frame}{Main frame}
+ Main content \vfill
+ \appxnote{Appendix note}{Note content}
+\end{frame}
+\printappxnotes
+\end{document} \ No newline at end of file