LaTeX Which Command to Use for Spacing in LaTeX?

  • Thread starter Thread starter MathematicalPhysicist
  • Start date Start date
  • Tags Tags
    Latex
Click For Summary
The discussion centers on how to properly format text and equations in LaTeX to achieve desired spacing between words. The original poster seeks to include spaces in a mathematical context but struggles with the correct commands. Key solutions provided include using the \text{} command within math mode to maintain formatting and ensure spaces, or separating the text and equations into different environments. The importance of the \documentclass command is highlighted, as it affects how the document is processed. Suggestions include using environments like 'equation' or 'align' for better formatting of equations rather than inline math mode. Ultimately, the resolution involves ensuring the proper setup of the LaTeX document and using appropriate commands to achieve the desired layout.
MathematicalPhysicist
Science Advisor
Gold Member
Messages
4,662
Reaction score
372
I have this problem, I want to write with spacings between words, but don't know which command to use, is it:
\vspace
or \haspace and where to place it?

here's the code (disregard what is written there (-: ):
Code:
\begin{dcoument}

$$ Let's define a quasi-function, as a function defined by a series as: f(x)=\sum{b_n f_n(x)}
$$

\end{document}

Thanks in advance.
 
Physics news on Phys.org
I don't think I understand the question: where do you want the spaces? Do you want to write words in a maths environment and have spaces between the words?
 
Yes, the file that I get from the above code is displayed in one sentence without any spaces between the words, I would like to know how to fix this.

Thanks in advance.
 
Two possibilities:

1) Only write the formula within the $$-signs:
Let's define a quasi-function, as a function defined by a series as: $$f(x)=\sum{b_n f_n(x)}$$

2) Use the \text{} mode within the $$-signs:
$$ \text{Let's define a quasi-function, as a function defined by a series as:} f(x)=\sum{b_n f_n(x)}$$
 
A third option, if you really want the words to be formatted the same as the maths,

$$ Let's\ define\ a\ quasi-function,\ as\ a\ function\ defined\ by\ a\ series\ as:\ f(x)=\sum{b_n f_n(x)}$$I would advise you to use one of the options Edgardo gives you, though, since that's the usual way to format things.
 
I used both your approaches, but with with no success, eventually, what I tried is this code:
Code:
\begin{document}
\begin{verbatim}
Let's define a quasi-function, as a function defined by a series as:\end{verbatim}$f(x)=\sum{b_n f_n(x)}$

\end{document}
which is better than my other attmepts, now the problem is that in this way the equation is typed beneath the sentence, is there any way to write such that the equation and the sentence before it will be typed in the same line?

P.s this way I indeed have the spaces between the words, because it's in a typstting form.
 
If you type something like

\begin{document}

Let's define a quasi-function, as a function defined by a series as:
$f(x)=\sum{b_n f_n(x)}$

\end{document}

then it should work. You don't need to use the verbatim environment for everything that you want to write. Are you using a weird class file, or something?
 
I tried it your way, cristo, but this way it only prints the equation.
I don't follow though, what is a 'class file'?
 
At the top of your latex file, you will have a line that looks something like

\documentclass{xxx}

where xxx is the name of the class file. The most common class file is "article", but there are different class files for different purposes (journal papers, theses, etc..). So, what does the documentclass line look like in your file?
 
  • #10
Please try the following basic example and tell us if the spacing is ok or not...

Code:
\documentclass[a4paper,11pt]{article}

\author{me myself}
\date{\today}

\begin{document}
Just plain text with no formulas...
\end{document}
 
  • #11
Ok, now it works, I guess it didn't work before because I didn't type \documentclass.
 
  • #12
I think in this situation you should use one of the equation environments like 'equation' or 'align' instead of using inline math mode like this $\lambda$ symbol,

\begin{equation}
f(x)=\sum{b_n f_n(x)}
\end{equation}
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
6K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 9 ·
Replies
9
Views
6K
  • · Replies 11 ·
Replies
11
Views
8K
  • · Replies 0 ·
Replies
0
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
Replies
2
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K