In Latex how can I define a string variable whose content is used intead of the variable in the compiled pdf? Let's say I'm writing a tech doc on a software and I wnat to define the package name in the preamble or somewhere so that if its name changes I don't have to replace it in a lot of places but only in one place

Thanks

link|improve this question

20% accept rate
feedback

5 Answers

up vote 30 down vote accepted

add the following to you preamble:

\newcommand{\newCommandName}{text to insert}

Then you can just use \newCommandName{} in the text

For more info on \newcommand, see e.g. wikibooks

link|improve this answer
That's exactly what I needed, thank you very much! – Andrea Jul 31 '09 at 11:10
feedback

Use \def command:

\def \variable {Something that's better to use as a variable}

Be aware that \def overrides preexisting macros without any warnings and therefore can cause various subtle errors. To overcome this either use namespaced variables like my_var or fall back to \newcommand, \renewcommand commands instead.

link|improve this answer
2  
+1 I prefer variables. – Vinicius Massuchetto Dec 24 '11 at 0:24
Using \def can be problematic as it does not check for preexisting macros. See the second circle of LaTeX hell – as such, it is preferable to use \newcommand – Ryan Atallah Mar 15 at 1:57
Thanks @RyanAtallah added note about that. Though, doesn't the meaning of variable mean that it's liable to change? :) – plaes Mar 15 at 7:06
feedback

For variables describing distances, you would use \newlength (and manipulate the values with \setlength, \addlength, \settoheight, \settolength and \settodepth).

Similarly you have access to \newcounter for things like section and figure numbers which should increment throughout the document. I've used this one in the past to provide code samples that were numbered separatly of other figures...

Also of note is \makebox which allows you to store a bit of laid-out document for later re-use (and for use with \settolength...).

link|improve this answer
Simple usage example like \newlength{\hcolw} and \setlength{\hcolw}{0.47\textwidth} would be useful. – trybik Dec 22 '11 at 11:11
feedback

You can try with \newcommand although I hope there is something more appropriate.

link|improve this answer
Thank you very much – Andrea Jul 31 '09 at 11:09
feedback

If you want to use \newcommand. You can also include \usepackage{xspace} and define command by \newcommand{\newCommandName}{text to insert\xspace}. This can allow you to just use \newCommandName rather than \newCommandName{}.

For more detail, http://www.math.tamu.edu/~harold.boas/courses/math696/why-macros.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.