Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LaTeX: Finding width of a given text and adding a horizontal space of that width

Tags:

latex

space

mbox

I would like to add a white space of exactly the width of a given text. I could use \hspace{}, but then I need the width that given piece of text is going to use in my LaTeX document.

Another idea is to create an invisible box containing the text. Like \mbox{text}, but invisible. As I am pretty sure that I cannot just tell LaTeX not to print that particular box, I am sure that there is another solution.

Any ideas?

like image 651
Björn Marschollek Avatar asked Nov 08 '10 13:11

Björn Marschollek


1 Answers

You’re searching for \hphantom which creates a horizontal phantom box:

\par Here is some text
\par \hphantom{Here is some} more text.

Will result in something like this:

Here is some text
             more text
like image 50
Konrad Rudolph Avatar answered Sep 21 '22 06:09

Konrad Rudolph