D
Deleted member 4993
Guest
I meantWhich one online "on-line ASCII" format? How can I make use of it?
".... in-line ASCII format"
There was a typo.
I meantWhich one online "on-line ASCII" format? How can I make use of it?
Ok.I meant
".... in-line ASCII format"
There was a typo.
The forum doesn't support theI need to show this in Latex
\(\displaystyle
\begin{tabular}{|1|r|r|r|}
\hline
Number & Log \line
173.8 & 2.2400 & 2.2400
(14.7)^2. 1.1673×2 + 2.3346 \\hline
Numerator \rightarrow & 4.5746 &
0.4166
4.5746 & 4.5746 \\\hline
2.61
Denominator /rightarrow & 0.4166×3 & 1.2498 & \\\hline
\end {tabular}\) That is how far I can go. Could somebody help me please?
tabular
. However, you can create a table using the table icon No. | Log | ||
---|---|---|---|
173.8 (14.7)2 | 2.2400 1.1673×2 | 2.2400 +2.3346 | |
Numerator ⟹ | 4.5746 | 4.5746 | 4.5746 |
2.61 Denominator ⟹ | 0.4166 0.4166×3 | − 1.2498 | |
3.3248 |
\begin{array}{|l|r|r r|}
The {...} after the array is the code for how you want to justify the cells and the | lines say if you want the columns to be lined. "c" means "centered", "l" means "left justified", and "r" means "right justified." So {| l | r | r r |} means we have 4 columns (4 letters tell us that) the left side has a vertical line, there is a vertical line between columns 1 and 2, 2 and 3, and the right side has a vertical line. The l r r r means the first column is left justified and the rest are right justified. (Lots of information in that little symbol!)What is the function of the following
- {|l|r|r r|}?
- \hline
What are they used to do?
Thank you so much. You have been of a great help.The {...} after the array is the code for how you want to justify the cells and the | lines say if you want the columns to be lined. "c" means "centered", "l" means "left justified", and "r" means "right justified." So {| l | r | r r |} means we have 4 columns (4 letters tell us that) the left side has a vertical line, there is a vertical line between columns 1 and 2, 2 and 3, and the right side has a vertical line. The l r r r means the first column is left justified and the rest are right justified. (Lots of information in that little symbol!)
\hline puts a horizontal line over the text across the whole table.
You might find this site to be useful.
-Dan
What about the case when the h is not there like in this one:\hline puts a horizontal line over the text acros
173.8 & 2.2400 & 2.2400 & ~ \\
But there is are 4 collumns in the attachment I uploaded. Only three are showing in your post. A column separate 4.5746-1.2498 to give 3.3248 at the bottom did you see it? That column is missing. Why is it not showing?So {| l | r | r r |} means we have 4 columns (4 letters tell us that) the left side has a vertical line, there is a vertical line between columns 1 and 2, 2 and 3, and the right side has a vertical line. The l r r r means the first column is left justified and the rest d. (Lots of information in that little symbol!)
There was no line between the 173.8 row and the (‘14.7)2 line so I didn't put an \hline there.What about the case when the h is not there like in this one:
But there is are 4 collumns in the attachment I uploaded. Only three are showing in your post. A column separate 4.5746-1.2498 to give 3.3248 at the bottom did you see it? That column is missing. Why is it not showing?
\begin{array}{|l|r|r|r|}\begin{array}{|l|r|r|r|r|}
\text{No.} & \text{Log} &~ &~
\\\hline
173.8 &2.2400&2.2400&2.2400~
\\\
(147)^2&1.1673×2&+2.3346&~
\\\hline
\text{Numerator}\implies&4.5746&4.5476&4.5476
\\\hline
2.61&0.4166&~&-
\\\
\text{Denominator}\implies&0.4166×3&1.2498
\\\\hline
~&~&~&3.3248
\end{array}
I am testing this thing and is not working. I will test it further when am back from work.
But what are these \\ doing?. What is their function? And why must they be put there exactly?\begin{array}{|l|r|r|r|}
\text{No.} & \text{Log} & ~ & ~ \\
\hline
173.8 & 2.2400 & 2.2400 & ~ \\
(14.7)^2 & 1.1673 \times 2 & +2.3346 & ~ \\
\hline
\text{Numerator} \implies & 4.5746 & 4.5476 & 4.5476 \\
\hline
2.61 & 0.4166 & ~ & - \\
\text{Denominator} \implies & 0.4166 \times 3 & 1.2498 & 1.2498 \\
\hline
~ & ~ & ~ & 3.3248 \\
\hline
\end{array}
Note the \\ after the 3.3248 on the last line.
No.173.8(14.7)2Numerator⟹2.61Denominator⟹ Log2.24001.1673×24.57460.41660.4166×3 2.2400+2.33464.5476 1.2498 4.5476−1.24983.3248
-Dan
The \\ indicates a line break. With a table we have to do it all in one statement so we need to tell LaTeX when we are done with a line.But what are these \\ doing?. What is their function? And why must they be put there exactly?
With more complicated expressions, I often type a template with all the {} where needed, firstwhen I code I put spaces in to remind me where I need to end { } symbols
Why is the text not entering the the table?[math] \begin{array}{|l|r|r|r|} \text{No.} & \text{Log} & ~ & ~ \\ \hline 173.8 & 2.2400 & 2.2400 & 2.2400 ~ \\ (147)^2 & 1.1673\times2 & + 2.3346 & ~ \ \hline \text{Numerator}\implies & 4.5746 & 4.5476 & 4.5476 \\ \hline 2.61 & 0.4166 & ~ & - \\ \text{Denominator}\implies & 0.4166\times3 & 1.2498 ~ & ~ & ~ & 3.3248 \hline \end{array[/math]
Missing '}' at the very end. Also, '\hline' must follow '\\', which you are missing in a couple of places.Why is the text not entering the the table?