diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/keystroke | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/keystroke')
-rw-r--r-- | Master/texmf-dist/doc/latex/keystroke/README | 13 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/keystroke/key-test.pdf | bin | 0 -> 38874 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/keystroke/key-test.tex | 57 |
3 files changed, 70 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/keystroke/README b/Master/texmf-dist/doc/latex/keystroke/README new file mode 100644 index 00000000000..70d6df45cd2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/keystroke/README @@ -0,0 +1,13 @@ + +The LaTeX package `keystroke' provides macros for the graphical +representation of the keys on a computer keyboard. `keystroke' is +based on macros which were used in a previous edition of the Linux +manual published by the SuSE G.m.b.H. distributor, and is licensed +under the GPL. + +Please send enhancements and corrections to: + +Rolf Niepraschk, niepraschk@ptb.de + +2000/11/09 + diff --git a/Master/texmf-dist/doc/latex/keystroke/key-test.pdf b/Master/texmf-dist/doc/latex/keystroke/key-test.pdf Binary files differnew file mode 100644 index 00000000000..4eec0e5b088 --- /dev/null +++ b/Master/texmf-dist/doc/latex/keystroke/key-test.pdf diff --git a/Master/texmf-dist/doc/latex/keystroke/key-test.tex b/Master/texmf-dist/doc/latex/keystroke/key-test.tex new file mode 100644 index 00000000000..5c892738cd2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/keystroke/key-test.tex @@ -0,0 +1,57 @@ + +% Rolf Niepraschk, niepraschk@ptb.de, 2000/10/29 + +\documentclass{article} +\usepackage{array} + +\usepackage{keystroke} +%\usepackage[french]{keystroke} +%\usepackage[spanish]{keystroke} +%\usepackage[german]{keystroke} + +\listfiles + +\setlength\extrarowheight{.5ex} + +\newcommand*{\BSL}{\symbol{`\\}} +\newcommand*{\LB}{\symbol{`\{}} +\newcommand*{\RB}{\symbol{`\}}} + +\begin{document} + +\begin{center} + + \textbf{\Large The keystroke macros} \bigskip + + \begin{tabular}{@{} >{\ttfamily\BSL}c c >{\ttfamily\BSL}c c @{}} + + \multicolumn{1}{@{} c}{\textbf{macro}} & + \multicolumn{1}{c}{\textbf{result}} & + \multicolumn{1}{c}{\textbf{macro}} & + \multicolumn{1}{c @{}}{\textbf{result}}\\ \hline + + Spacebar & \Spacebar & Enter & \Enter \\ + Return & \Return & Esc & \Esc \\ + BSpace & \BSpace & Tab & \Tab \\ + Alt & \Alt & AltGr & \AltGr \\ + Del & \Del & Shift & \Shift \\ + PgUp & \PgUp & PgDown & \PgDown \\ + End & \End & Ctrl & \Ctrl \\ + Home & \Home & Ins & \Ins \\ + UArrow & \UArrow & DArrow & \DArrow \\ + LArrow & \LArrow & RArrow & \RArrow \\ + PrtSc & \PrtSc & Scroll & \Scroll \\ + Break & \Break & NumLock & \NumLock \\[1ex] + + \hline + + keystroke\LB A\RB & \keystroke{A} & keystroke\LB Z\RB & \keystroke{Z} \\ + keystroke\LB F1\RB & \keystroke{F1} & keystroke\LB F10\RB & \keystroke{F10} + + \end{tabular} + +\end{center} + +\end{document} + + |