diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex')
4 files changed, 98 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/bxdpx-beamer/LICENSE b/Master/texmf-dist/doc/latex/bxdpx-beamer/LICENSE new file mode 100644 index 00000000000..4acbc245013 --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxdpx-beamer/LICENSE @@ -0,0 +1,27 @@ +$BK\%=%U%H%&%'%"$O(B MIT $B%i%$%;%s%9$N2<$GG[I[$5$l$^$9!#(B +$BCx:n8"$O:n<T$G$"$k!VH,EP(B $B?rG7!JJLL>(B ZR$B!K!W$KB0$7$^$9!#(B +$B$^$?K\%=%U%H%&%'%"$OL5J]>Z$G$9!#(B + +This software is distributed under the MIT License. + +The MIT License + +Copyright (c) 2013 Takayuki YATO (aka. "ZR") + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Master/texmf-dist/doc/latex/bxdpx-beamer/README b/Master/texmf-dist/doc/latex/bxdpx-beamer/README new file mode 100644 index 00000000000..e90f288cf3c --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxdpx-beamer/README @@ -0,0 +1,31 @@ +bxdpx-beamer Package +==================== + +LaTeX: to fix some problems in use of Beamer with dvipdfmx
+ +This packges makes the two types of links work: + - Navigation symbols + - \framezoom'd regions + +### Installation + + - `*.sty` → $TEXMF/tex/latex/bxdpx-beamer + +### Usage + +Load this package as usual in the preamble of Beamer documents: + + \documentclass[dvipdfmx]{beamer} + \usepackage{bxdpx-beamer} + +This package does not provide any user commands. + +Revision History +---------------- + + * Version 0.2 <2013/02/27> + - The first public version. + +-------------------- +Takayuki YATO (aka. "ZR") +http://zrbabbler.sp.land.to/ diff --git a/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-framezoom.tex b/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-framezoom.tex new file mode 100644 index 00000000000..6ed62896750 --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-framezoom.tex @@ -0,0 +1,16 @@ +\documentclass[17pt,dvipdfmx]{beamer} +\usepackage{type1cm} +\usetheme{Warsaw} +\usepackage{bxdpx-beamer} +\begin{document} + +\begin{frame}{Zoooooooom!} +\hypersetup{linkbordercolor={0 0.5 0.1}} +\framezoom<1><2>[border=2](0pt,20pt)(32pt,24pt)% +\framezoom<1><3>[border=2](50pt,28pt)(40pt,30pt)% +\framezoom<1><4>[border=2](100pt,22pt)(18pt,18pt)% +\strut\par +Blah blah blah!!? +\end{frame} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex b/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex new file mode 100644 index 00000000000..e196174d593 --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex @@ -0,0 +1,24 @@ +\documentclass[17pt]{beamer} % dvipdfmx needed
+\usetheme{Warsaw}
+\usepackage{bxdpx-beamer}
+% These settings make navigation symbols rendered in black.
+%\setbeamercolor{navigation symbols dimmed}{fg=black} +%\setbeamercolor{navigation symbols}{fg=black} +% This makes all links have a border.
+%\hypersetup{pdfborder={0 0 1},allbordercolors={0 0.5 0}} +\begin{document}
+
+\section{Important but Meaningless}
+\begin{frame}{First}
+This slide \pause is \alert{meaningless}.
+\end{frame}
+\begin{frame}{Second}
+This slide \pause is also \alert{meaningless}.
+\end{frame}
+
+\section{Meaningless but Important}
+\begin{frame}{Third}
+This is yet another \alert{meaningless} slide.
+\end{frame}
+
+\end{document}
|