LaTeX How Can I Display Fractions Like (a+b)/(c+d) in LaTeX?

  • Thread starter Thread starter DaveE
  • Start date Start date
  • Tags Tags
    Fractions Latex
AI Thread Summary
The discussion centers on formatting fractions in LaTeX, specifically how to display them in a way that allows for additional formatting, such as including integral symbols within the fraction. Participants explore alternatives to the standard \frac command, with suggestions to simply type the desired format directly or use other commands for clarity. There is a consensus that while nesting LaTeX formats can be tricky, it is manageable with practice. Examples are provided to illustrate complex formatting, including the use of larger slashes for division and the importance of parentheses for clarity. The conversation highlights the common challenge of remembering LaTeX commands and the tendency to rely on online resources for assistance. Overall, the thread emphasizes that while LaTeX can be complex, it is not insurmountable with the right approach and experimentation.
DaveE
Science Advisor
Gold Member
2024 Award
Messages
4,380
Reaction score
4,029
Is there a better way to get fractions to display like ## \rm{(a+b)/(c+d)}## instead of ## \frac{a+b}{c+d}##? Sometimes I'd like LaTex to do formatting "inside" the fraction; let's say with an integral symbol, for example.
 
Physics news on Phys.org
DaveE said:
Is there a better way to get fractions to display like ## \rm{(a+b)/(c+d)}## instead of ## \frac{a+b}{c+d}##? Sometimes I'd like LaTex to do formatting "inside" the fraction; let's say with an integral symbol, for example.
For that, you do not need to use the LaTex frac. You can just type it in. I have never had a problem nesting LaTex formats, but I am not a "power user".
 
I'm not sure I understood the question. Where exactly is the problem?
 
fresh_42 said:
I'm not sure I understood the question. Where exactly is the problem?
I might not have either :wink: . I may need to experiment more.

I was thinking that maybe someone would just say try "\ifrac{}{}" instead. BTW, I know, I made that one up, there is no \ifrac (I think).

I guess the simplest version is how do I do this with a command as simply as \frac instead of turning off their formatting and doing it myself inside of \rm. I'm suspecting not since I'm not hearing a simple answer.
 
Or the answer is so simple that we don't know what more to say. Just type it in. If you have an example of a problem with nested LaTex formats, maybe someone can help. You may need to backslash some special characters for LaTex to take them literally.
 
FactChecker said:
Or the answer is so simple that we don't know what more to say. Just type it in. If you have an example of a problem with nested LaTex formats, maybe someone can help. You may need to backslash some special characters for LaTex to take them literally.
Yes, I think you're right. This stuff isn't so bad. Unless you think it's supposed to make sense, LOL.

## \sum_{n=0}^\infty a_n x^n ## / ## \int_0^t H(t-\tau) \, d\tau ##

## \int_0^t \frac{sin(t-\tau)}{(t-\tau)} \, d\tau ## / ##
\begin{vmatrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{vmatrix} ##
 
Do you mean something like that?

$$
\dfrac{ \displaystyle{\sum_{n=0}^\infty a_n x^n }}{ \displaystyle{\int_0^t H(t-\tau) \, d\tau }}
$$

$$ \dfrac{ \displaystyle{\int_0^t \dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau }}{
\det\left(\begin{matrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{matrix}\right)}$$
 
DaveE said:
Yes, I think you're right. This stuff isn't so bad. Unless you think it's supposed to make sense, LOL.

## \sum_{n=0}^\infty a_n x^n ## / ## \int_0^t H(t-\tau) \, d\tau ##

## \int_0^t \frac{sin(t-\tau)}{(t-\tau)} \, d\tau ## / ##
\begin{vmatrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{vmatrix} ##
Are you happy with that? It seems to be a natural consequence of what you asked for, although I would recommend that you at least enclose the numerator and denominator in parenthesis to make it clearer. But you would also have to do that if you wrote it by hand.
If you want the forward slash to be larger, you can use \big, \Big, \bigg, and \Bigg in LaTex to make progressively larger slashes. This is \Bigg:
## \int_0^t \frac{sin(t-\tau)}{(t-\tau)} \, d\tau \Bigg /

\begin{vmatrix}

1 & 2 & 3 & 4 \\

a & b & c & d \\

x & y & z & w

\end{vmatrix} ##
 
FactChecker said:
Are you happy with that? It seems to be a natural consequence of what you asked for, although I would recommend that you at least enclose the numerator and denominator in parenthesis to make it clearer. But you would also have to do that if you wrote it by hand.
If you want the forward slash to be larger, you can use \big, \Big, \bigg, and \Bigg in LaTex to make progressively larger slashes. This is \Bigg:
## \int_0^t \frac{sin(t-\tau)}{(t-\tau)} \, d\tau \Bigg /

\begin{vmatrix}

1 & 2 & 3 & 4 \\

a & b & c & d \\

x & y & z & w

\end{vmatrix} ##
Or even easier (and I think better to read) ...
$$
\begin{vmatrix}

1 & 2 & 3 & 4 \\

a & b & c & d \\

x & y & z & w

\end{vmatrix}^{-1} \displaystyle{\int_0^t \dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau}
$$
... if not even define ##A^{-1}:=
\begin{pmatrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{pmatrix}## and write ##
\displaystyle{\int_0^t |\det(A)|\dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau}## which immediately refers to the transformation theorem: https://en.wikipedia.org/wiki/Integration_by_substitution#Substitution_for_multiple_variables
 
  • #10
fresh_42 said:
Do you mean something like that?

$$
\dfrac{ \displaystyle{\sum_{n=0}^\infty a_n x^n }}{ \displaystyle{\int_0^t H(t-\tau) \, d\tau }}
$$

$$ \dfrac{ \displaystyle{\int_0^t \dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau }}{
\det\left(\begin{matrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{matrix}\right)}$$
Nope. That's the normal (i.e. good) way to format these, LOL.
 
  • #11
FactChecker said:
Are you happy with that? It seems to be a natural consequence of what you asked for, although I would recommend that you at least enclose the numerator and denominator in parenthesis to make it clearer. But you would also have to do that if you wrote it by hand.
If you want the forward slash to be larger, you can use \big, \Big, \bigg, and \Bigg in LaTex to make progressively larger slashes. This is \Bigg:
## \int_0^t \frac{sin(t-\tau)}{(t-\tau)} \, d\tau \Bigg /

\begin{vmatrix}

1 & 2 & 3 & 4 \\

a & b & c & d \\

x & y & z & w

\end{vmatrix} ##
I think this is as good as it can get. I didn't really know about \big, thanks.
 
Last edited:
  • #12
fresh_42 said:
Or even easier (and I think better to read) ...
$$
\begin{vmatrix}

1 & 2 & 3 & 4 \\

a & b & c & d \\

x & y & z & w

\end{vmatrix}^{-1} \displaystyle{\int_0^t \dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau}
$$
... if not even define ##A^{-1}:=
\begin{pmatrix}
1 & 2 & 3 & 4 \\
a & b & c & d \\
x & y & z & w
\end{pmatrix}## and write ##
\displaystyle{\int_0^t |\det(A)|\dfrac{sin(t-\tau)}{(t-\tau)} \, d\tau}## which immediately refers to the transformation theorem: https://en.wikipedia.org/wiki/Integration_by_substitution#Substitution_for_multiple_variables
Yes, these are better. The example was arbitrary and stupid just to show a more complex problem than ##\frac{a}{b}##.
 
  • #13
DaveE said:
I think this is as good as it can get. I didn't really know about \big, thanks.
You are not alone. When I am doing anything slightly complicated in LaTex I end up Googling it. Even if I know a trick today, next week I will have to Google it again. :-) I had to Google this to answer your question.
 
  • Like
Likes fresh_42 and DaveE
  • #14
FactChecker said:
You are not alone. When I am doing anything slightly complicated in LaTex I end up Googling it. Even if I know a trick today, next week I will have to Google it again. :-) I had to Google this to answer your question.
I have loaded my keyboard with 67 shortcuts. As a result, I use these all the time rather than learning new ones. And if, as your useful big-enlargements, I'll probably forget them again.
 

Similar threads

Back
Top