PDA

View Full Version : Latex Help


S_David
Jun4-09, 09:55 PM
Hello,

I have two questions:

1- How can I control the size of a multi-line equation?
2- In a multi-line equation, I always need to open a brace in one line and end it at another line. But the problem is by using the following code:
\begin{equation}
\begin{split}
X=&\left\{.....\right.\\
& \left. .... \right\}
\end{split}
\end{equation}

the two braces are not always of the same vertical length. How to solve this problem?

Thanks in advance

CompuChip
Jun5-09, 08:21 AM
In the first question, what do you mean by the 'size'?

For the second one: I haven't tested this, but you might try something like
\newcommand\twolines{3}{\ensuremath%
\begin{split}%
#1 = &\left\{\vphantom{#2}#1\right.\\%
& \left. \vphantom{#1}#2 \right\}%
\end{split}%
}

and then use it like
\[ \twolines{X}{stuff on the first line}{stuff on the second line} \]

The trick lies of course in the use of \vphantom.

The quick-and-dirty way is to just make the brackets "by hand", so instead of \left and \right use \big, \bigg, \Big, etc.

minger
Jun5-09, 08:24 AM
The quick-and-dirty way is to just make the brackets "by hand", so instead of \left and \right use \big, \bigg, \Big, etc.

I've personally never ran into this problem, but if I did, that would be the approach I would take.

I will have to take a look at that phantom command though...

S_David
Jun5-09, 09:26 AM
In the first question, what do you mean by the 'size'?

I mean the font size, because I have very long equations which takes much space in each page.

fatra2
Jun5-09, 09:55 AM
Why don't you make a line-break at some point so that the equation continues on the next line. This would preserve any unpleasant topography for the reader, and would assure that the equation doesn't overflow the page.

You can do this line break with a simple \\ wherever you want. Doing so, every part of your equation will be center aline. If you want to aline the equation specially, you can use && on each line.

Cheers

S_David
Jun5-09, 10:02 AM
Why don't you make a line-break at some point so that the equation continues on the next line. This would preserve any unpleasant topography for the reader, and would assure that the equation doesn't overflow the page.

You can do this line break with a simple \\ wherever you want. Doing so, every part of your equation will be center aline. If you want to aline the equation specially, you can use && on each line.

Cheers

My equations are not single line, but multi-line equations, so I already did the line-break. But my request is: how to make these equations small enough to span a reasonable space on the page?

fatra2
Jun5-09, 10:06 AM
My remark is simple. If you have very long equations, and you change the font size, the reader might lose reading comfort, due to their overfullness.

I firmly believe that you should leave the font the way they are, and just make line-break to make them comprehensible. You will gain in reading comfort, which is probably why you use LaTeX.

Cheers

S_David
Jun6-09, 11:24 AM
My remark is simple. If you have very long equations, and you change the font size, the reader might lose reading comfort, due to their overfullness.


How do we know, if we don't try? Let us try it, and then we decide.

fatra2
Jun8-09, 02:15 AM
Ok,

Here it goes. The font size in math mode are predefined in LaTeX. Therefore, a simple \fontsize or \Large only gives you a warning. This is due to a misunderstanding between the command given and the actions to be taken by the compiler.

Once in math mode, you can change the font size with the {\...style} command. For example, {\displaystyle } will appear full size. There are similar commands \textstyle, \scriptstyle, and \scriptscriptstyle.

Cheers

S_David
Jun8-09, 06:55 AM
I want to make them of font size 10 pt, for example, how can I do that using the commands you presented?

fatra2
Jun8-09, 07:19 AM
Hi there,

The easiest way to do so, is to put the whole document to 10pt. You can do so within the doucmet class declaration : \documentclass{10pt}{report/book/article/letter}, and there you go, your math mode will also be at 10pt.

Otherwise, you will have to look at the size that suits from the different styles mentioned before.

I am sorry that I cannot be anymore help. It's just that you are writing in LaTeX, meaning that you might have a different point of view than the compiler for the layout. I stick with my suggestion from before, that the compiler might not be so bad.

Cheers