Which Command to Use for Spacing in LaTeX?

  • Context: LaTeX 
  • Thread starter Thread starter MathematicalPhysicist
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
11 replies · 4K views
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
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?
 
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?
 
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}
 
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}