Code: Select all
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\begin{document}
\newcommand{\aWord}{a word}
Testing \aWord
\renewcommand{\aWord}{another word}
\end{document}
The reason I need this is because I have a main .tex file with a section that is at the topmost of the document, where I want to write some of the text that I have in a later part of the document...
Is this even possible to do?