diff options
author | Karl Berry <karl@freefriends.org> | 2011-04-17 22:43:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-04-17 22:43:24 +0000 |
commit | 5d6e60ca4389101ea5334dc9e6370e9bb63d9d53 (patch) | |
tree | 64766d619f3ea0c12a4179abd2f4e3466ce05a65 | |
parent | ad1e4d8e6581af6cb4c9a35f02f09ffda2d97df7 (diff) |
new latex package fancytabs (16apr11)
git-svn-id: svn://tug.org/texlive/trunk@22112 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/doc/latex/fancytabs/README | 7 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/fancytabs/fancytabs.pdf | bin | 0 -> 160299 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/fancytabs/fancytabs.dtx | 197 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/fancytabs/fancytabs.ins | 58 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/fancytabs/fancytabs.sty | 52 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 2 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc | 1 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/fancytabs.tlpsrc | 0 |
8 files changed, 316 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/fancytabs/README b/Master/texmf-dist/doc/latex/fancytabs/README new file mode 100644 index 00000000000..dfa71be0479 --- /dev/null +++ b/Master/texmf-dist/doc/latex/fancytabs/README @@ -0,0 +1,7 @@ + + + +LICENSE +======= + +s material is subject to the LaTeX Project Public License. See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for the details of that license diff --git a/Master/texmf-dist/doc/latex/fancytabs/fancytabs.pdf b/Master/texmf-dist/doc/latex/fancytabs/fancytabs.pdf Binary files differnew file mode 100644 index 00000000000..7b1cc98d3cb --- /dev/null +++ b/Master/texmf-dist/doc/latex/fancytabs/fancytabs.pdf diff --git a/Master/texmf-dist/source/latex/fancytabs/fancytabs.dtx b/Master/texmf-dist/source/latex/fancytabs/fancytabs.dtx new file mode 100644 index 00000000000..71148945157 --- /dev/null +++ b/Master/texmf-dist/source/latex/fancytabs/fancytabs.dtx @@ -0,0 +1,197 @@ +% \iffalse meta-comment +% +% Copyright (C) 2011 by Raphaël Pinson +% +% This file may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either +% version 1.2 of this license or (at your option) any later +% version. The latest version of this license is in: +% +% http://www.latex-project.org/lppl.txt +% +% and version 1.2 or later is part of all distributions of +% LaTeX version 1999/12/01 or later. +% +% \fi +% +% \iffalse +%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01] +%<package>\ProvidesPackage{fancytabs} +%<package> [2011/04/16 1.1 Fancy page border tabs] +% +%<*driver> +\documentclass{ltxdoc} +\EnableCrossrefs +\CodelineIndex +\RecordChanges +\OnlyDescription +\begin{document} + \DocInput{fancytabs.dtx} +\end{document} +%</driver> +% \fi +% +% \CheckSum{0} +% +% \changes{v1.1}{2011/04/16}{Add tabtextvpos and tabtexthpos macros} +% \changes{v1.0}{2011/04/14}{Initial version} +% +% \GetFileInfo{fancytabs.dtx} +% +% \title{The \textsf{fancytabs} package\thanks{This document +% corresponds to \textsf{fancytabs}~\fileversion, +% dated~\filedate.}} +% \author{Rapha\"el Pinson \\ \texttt{raphink@gmail.com}} +% +% \maketitle +% +% \begin{abstract} +% The \textsf{fancytabs} package allows to insert tabs +% on the border of pages. +% \end{abstract} +% +% \section{Usage} +% +% \subsection{Adding a tab} +% +% \DescribeMacro{\fancytab} +% The |\fancytab| macro adds a new tab. +% It takes two arguments: +% |\fancytab{<text>}{<position>}| +% and displays the text in the tab, on given vertical position. +% +% \subsection{Adding a tab to all odd pages with scrpage2} +% +% The following code adds a tab with the chapter name, positioned by chapter order, on each odd page. +% +% \begin{verbatim} +% \documentclass{scrbook} +% \usepackage{scrpage2} +% \usepackage{fancytabs} +% \usepackage{lipsum} +% +% % Capture chapter head +% \let\oldchapter\chapter +% \newcommand\temphead{} +% \newcommand\chaphead{} +% \renewcommand\chapter[2][\temphead]{% +% \renewcommand\temphead{#2}% +% \renewcommand\chaphead{#2}% +% \oldchapter[#1]{#2}} +% +% % Set central right header to display tab +% % for both scrplain and scrheadings +% \cohead[\fancytab{\chaphead}{\thechapter}] +% {\fancytab{\chaphead}{\thechapter}} +% \renewcommand*{\chapterpagestyle}{scrplain} +% \pagestyle{scrheadings} +% +% \begin{document} +% \chapter{My sample chapter} +% +% \lipsum +% \lipsum +% +% \end{document} +% \end{verbatim} +% +% \subsection{Parameters} +% +% \DescribeMacro{\tabstyle} +% The style of for the text in the tab. +% Default is |\Large\scshape|. +% You can set this value with: +% |\renewcommand{\tabstyle}{<value>}|. +% +% \DescribeMacro{\tabheight} +% Define the height of the tab. +% Default is |4cm|. +% You can set this value with +% |\renewcommand{\tabheight}{<value>}|. +% +% \DescribeMacro{\tabwidth} +% Define the height of the tab. +% Default is |1cm|. +% You can set this value with +% |\renewcommand{\tabwidth}{<value>}|. +% +% \DescribeMacro{\tabcount} +% Define the maximum amount of tabs on a page. +% After |\tabcount| tabs are displayed, the next tab is displayed on top of the page again. +% Default is |6|. +% You can set this value with +% |\renewcommand{\tabcount}{<value>}|. +% +% \DescribeMacro{\tableftcolor} +% Define the left color for the tab gradient. +% Default is |white|. +% You can set this value with +% |\renewcommand{\tableftcolor}{<value>}|. +% +% \DescribeMacro{\tabrightcolor} +% Define the right color for the tab gradient. +% Default is |gray!50|. +% You can set this value with +% |\renewcommand{\tabrightcolor}{<value>}|. +% +% \DescribeMacro{\tabtop} +% Define margin on top of the top tab. +% Default is |\tabheight|. +% You can set this value with +% |\renewcommand{\tabtop}{<value>}|. +% +% \DescribeMacro{\tabtextvpos} +% Define the relative vertical position +% of the text in the tab. +% Default is |0.5|. +% You can set this value with +% |\renewcommand{\tabtextvpos}{<value>}|. +% +% \DescribeMacro{\tabtexthpos} +% Define the relative horizontal position +% of the text in the tab. +% Default is |\tabtextvpos|. +% You can set this value with +% |\renewcommand{\tabtexthpos}{<value>}|. +% +% \StopEventually{\PrintIndex} +% +% \section{Implementation} +% +% \begin{macrocode} +\RequirePackage{tikz} +\newcommand{\tabstyle}{\Large\scshape} +\newcommand{\tabheight}{4cm} +\newcommand{\tabwidth}{1cm} +\newcommand{\tabcount}{6} +\newcommand{\tableftcolor}{white} +\newcommand{\tabrightcolor}{gray!50} +\newcommand{\tabtop}{\tabheight} +\newcommand{\tabtextvpos}{0.5} +\newcommand{\tabtexthpos}{\tabtextvpos} +% \end{macrocode} +% +% \begin{macro}{\fancytab} +% We define the |\fancytab| macro to generate a new tab. +% \begin{macrocode} +\newcommand{\fancytab}[2]{% + \begin{tikzpicture}[remember picture,overlay] + \node[yshift={-\tabtop-1*mod(#2-1,\tabcount)*\tabheight}, + xshift=-0.5*\tabwidth] + at (current page.north east) { + \tikz\shade[shading=axis,bottom color=\tableftcolor, + top color=\tabrightcolor,shading angle=-90] + (0,0) rectangle (\tabwidth,\tabheight) + node[rotate=90] + at (\tabtexthpos*\tabwidth,\tabtextvpos*\tabheight) + {\tabstyle#1}; + }; + \end{tikzpicture}% +} +% \end{macrocode} +% \end{macro} +% +% \Finale +\endinput + + diff --git a/Master/texmf-dist/source/latex/fancytabs/fancytabs.ins b/Master/texmf-dist/source/latex/fancytabs/fancytabs.ins new file mode 100644 index 00000000000..2258ca5ceca --- /dev/null +++ b/Master/texmf-dist/source/latex/fancytabs/fancytabs.ins @@ -0,0 +1,58 @@ +%% +%% Copyright (C) 2011 by Raphaël Pinson +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 1.2 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.2 or later is part of all distributions of +%% LaTeX version 1999/12/01 or later. +%% + +\input docstrip.tex +\keepsilent +\usedir{tex/latex/fancytabs} + +\preamble + +This is a generated file. + +Copyright (C) 2011 by Raphaël Pinson + +This file may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either +version 1.2 of this license or (at your option) any later +version. The latest version of this license is in: + + http://www.latex-project.org/lppl.txt + +and version 1.2 or later is part of all distributions of +LaTeX version 1999/12/01 or later. + +\endpreamble + + +\generate {\file {fancytabs.sty}{\from{fancytabs.dtx}{package}}} + +\obeyspaces +\Msg{****************************************************} +\Msg{* *} +\Msg{* To finish the installation you have to move the *} +\Msg{* following file into a directory searched by TeX: *} +\Msg{* *} +\Msg{* fancytabs.sty *} +\Msg{* *} +\Msg{* To produce the documentation run the file *} +\Msg{* fancytabs.dtx through LaTeX. *} +\Msg{* *} +\Msg{* Happy TeXing! *} +\Msg{* *} +\Msg{****************************************************} + + +\endbatchfile + + diff --git a/Master/texmf-dist/tex/latex/fancytabs/fancytabs.sty b/Master/texmf-dist/tex/latex/fancytabs/fancytabs.sty new file mode 100644 index 00000000000..a904711d510 --- /dev/null +++ b/Master/texmf-dist/tex/latex/fancytabs/fancytabs.sty @@ -0,0 +1,52 @@ +%% +%% This is file `fancytabs.sty', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% fancytabs.dtx (with options: `package') +%% +%% This is a generated file. +%% +%% Copyright (C) 2011 by Raphaël Pinson +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 1.2 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.2 or later is part of all distributions of +%% LaTeX version 1999/12/01 or later. +%% +\NeedsTeXFormat{LaTeX2e}[1999/12/01] +\ProvidesPackage{fancytabs} + [2011/04/16 1.1 Fancy page border tabs] +\RequirePackage{tikz} +\newcommand{\tabstyle}{\Large\scshape} +\newcommand{\tabheight}{4cm} +\newcommand{\tabwidth}{1cm} +\newcommand{\tabcount}{6} +\newcommand{\tableftcolor}{white} +\newcommand{\tabrightcolor}{gray!50} +\newcommand{\tabtop}{\tabheight} +\newcommand{\tabtextvpos}{0.5} +\newcommand{\tabtexthpos}{\tabtextvpos} +\newcommand{\fancytab}[2]{% + \begin{tikzpicture}[remember picture,overlay] + \node[yshift={-\tabtop-1*mod(#2-1,\tabcount)*\tabheight}, + xshift=-0.5*\tabwidth] + at (current page.north east) { + \tikz\shade[shading=axis,bottom color=\tableftcolor, + top color=\tabrightcolor,shading angle=-90] + (0,0) rectangle (\tabwidth,\tabheight) + node[rotate=90] + at (\tabtexthpos*\tabwidth,\tabtextvpos*\tabheight) + {\tabstyle#1}; + }; + \end{tikzpicture}% +} +\endinput +%% +%% End of file `fancytabs.sty'. diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index a0bca418157..e4e3ed3a7b6 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -146,7 +146,7 @@ my @TLP_working = qw( extpfeil extract extsizes facsimile faktor fancybox fancyhdr fancyhdr-it fancynum fancypar - fancyref fancytooltips fancyvrb + fancyref fancytabs fancytooltips fancyvrb FAQ-en fbithesis fbs featpost fenixpar feyn feynmf fge fig4latex figbas figbib figflow figsize filecontents filehook fileinfo filemod diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc index b02de4a4042..52a1d774e0d 100644 --- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc @@ -227,6 +227,7 @@ depend extract depend facsimile depend fancynum depend fancypar +depend fancytabs depend fancytooltips depend figsize depend filecontents diff --git a/Master/tlpkg/tlpsrc/fancytabs.tlpsrc b/Master/tlpkg/tlpsrc/fancytabs.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/fancytabs.tlpsrc |