Text FormattingSpace after Symbol printed by a Command

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
7788
Posts: 17
Joined: Sat Aug 28, 2010 1:17 am

Space after Symbol printed by a Command

Post by 7788 »

Hi,

I am not sure where to look. I need a space after this sentence:

Code: Select all

The BA\textregistered  consists of ...
but the output shows
The BA®consists of ...
What is the command for putting a space before the word "consists"?

thanks very much
7788
Last edited by 7788 on Mon Oct 11, 2010 10:44 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Space after Symbol printed by a Command

Post by frabjous »

Try:

Code: Select all

The BA\textregistered\ consists of..
A backslash followed by a space will always generate a space, even in places where LaTeX would otherwise ignore a space (such as after a command).

If you want to avoid the need for that, think about using the xspace package.
7788
Posts: 17
Joined: Sat Aug 28, 2010 1:17 am

Re: Space after Symbol printed by a Command

Post by 7788 »

thank you very much!!! I didn't know about the \ after \textregistered :-)

thanks again
7788
Post Reply