I have a paragraph in one part of the .tex file that I want to be duplicated in another part of the .tex file.
I could do ctrl-c, ctrl-v... as easy as that, but then if I modify one place, I will have to do the same for the other.
Is there a way to take a piece of text, in some part of the document, surround it by some reference marker, and then just use this reference marker elsewhere to duplicate the text?
EDIT: I could just do
\newcommand{\textA}{piece of text}
and then use \textA anywhere I want this text to appear.
However, I want \textA to be defined in a certain place in the document (in the .tex file). That location appears after the first time I want to use this macro.
Macros can be used only in places in the document after which they were defined, so I can't do that.

\newcommand\textA{your special paragraph}\textA{}. Later, when you need to repeat it, simply type\textA{}. – JLDiaz Dec 20 '13 at 13:43