summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/copypaste/copypaste.sty
blob: 7bbf0c6845d2e30866a42e9d50fde4f07e5bcfeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
%%
%% This is file `copypaste.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% copypaste.dtx  (with options: `package')
%% 
%% Copyright (C) 2013 Eduardo C. Lourenço de Lima
%% 
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either
%% version 1.3 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.3 or later is part of all distributions of LaTeX
%% version 2005/12/01 or later.
%% 
\NeedsTeXFormat{LaTeX2e}[1996/06/01]
\ProvidesPackage{copypaste}[2013/01/11 v0.1 Copy and paste]
\newwrite\@copypaste

\newcommand\savecopypaste[1]{%
 \immediate\openout\@copypaste=#1.cpy}

\newcommand\opencopypaste[1]{%
 \input{#1.cpy}}

\newcommand\yank[2]{%
 \defcopy{#1}{#2}%
 \immediate\write\@copypaste{\noexpand\defcopy{#1}{\unexpanded{#2}}}%
 #2}

\newcommand\defcopy[2]{%
 \@namedef{@copypaste@#1}{#2}}

\newcommand\paste[1]{%
 \@nameuse{@copypaste@#1}}
\endinput
%%
%% End of file `copypaste.sty'.