New Members ⇒ Space between two words of text
-
- Posts: 17
- Joined: Sat Mar 21, 2015 8:59 pm
Space between two words of text
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Space between two words of text
If you don't mean a "normal" space, let us know.
Stefan
-
- Posts: 17
- Joined: Sat Mar 21, 2015 8:59 pm
Re: Space between two words of text
This Word\\
\end{gather*}
prints out in the pdf as
ThisWord
How do you get a space between "This" and "Word"?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Space between two words of text
You may wanna give away hints on what you want to achieve. Because honestly, your questions seem to contradict themselves and you have kept quite a lot of people busy right now.
And please, why did you once again post in the new members section, when this, as alle posts before where about maths and have been moved there?
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Space between two words of text
gather*
, the correct way would be this way, using amsmath
, because of the math mode:Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\text{This Word}\\
\end{gather*}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{center}
This Word\\
\end{center}
\end{document}
\centering
:Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\centering
This Word\\
\end{document}
gather
for simple text.Stefan