Tagged Questions
4
votes
2answers
32 views
how to align texts in equation cases
I need to make an equation case with text following it. That text should be displayed in the middle of the two cases. This is my code:
\begin{eqnarray}\label{eq13}
a_k =
\begin{cases}
1 & ...
6
votes
2answers
55 views
Alignment between material inside and outside a cases environment
In the code below, I'd like to make the i=0,\ldots,n. line up, in the output, with the cases in the first part of the definition. Ideally, the full-stop would align with the semicolons and comma.
...
5
votes
1answer
106 views
A piecewise function with fractions and without tiny text
I would like to create a piecewise function which includes fractions.
But the solutions I have found so far squish the fractions in to tiny
text that is nearly illegible.
The cases environment ...
15
votes
2answers
273 views
How to align nested cases?
Please consider the code bellow:
\begin{align*}
function =
\begin{cases}
case1 &\mbox{if } n = 0 \\
\begin{cases}
case2 &\mbox{if } n = 1 \\
...
8
votes
4answers
160 views
How can I align at relation symbols within a cases environment?
I have used the following code in LaTeX -
\documentclass{article}
\usepackage{amssymb,amsmath}
\begin{document}
\begin{table}[H]
\centering
\begin{tabular}{c|c}
\hline
{ $X=y+z$} & {
...
4
votes
3answers
208 views
How to right-side annotate a bracketed-together set of items in cases environment?
How to right-side annotate a bracketed-together set of items in the align environment, cases sub-environment?
E.g. how to put an annotation such as "(Fermat)" where the following code would put a ...
9
votes
4answers
2k views
Aligning plain `align` and `cases`?
The cases environment works very well for enumerating cases within a large left bracket. I'd like to be able to combine it with the align environment so that equals-signs and conditions also line up:
...
2
votes
3answers
6k views
how to insert multi line equation in the tabular environment?
How can insert multi line equation in the tabular environment?
For example see the following code that can show my request.
\begin{tabular}{rrr}
&a &b\\
&u=\begin{cases} 0;& ...
7
votes
1answer
4k views
Aligning the right parts in multiple \begin{cases}
Is there an intelligent way to left-align the parts right of & of the two cases environments shown below (if x >= 0, otherwise, if y < 0, otherwise). I wonder if there is a better way than ...