Skip to main content

Questions tagged [split]

{split} is about the use of the split environment provided by the amsmath package that allows to split and align single equations which are too long or too complicated to fit on only one line.

Filter by
Sorted by
Tagged with
7 votes
3 answers
2k views

How would a "pro" LaTeX user improve my preamble/template?

First of all, sorry for this question: it might appear unusual, maybe it will be super downvoted but I take all my responsibilities in this. What I am asking with this question is: what would a ...
Henry's user avatar
  • 499
4 votes
1 answer
59 views

Centering in split environment

I got the following code \documentclass{article} \usepackage{amssymb,amsmath} \begin{document} Sei $\mathfrak X$ ein topologischer Raum. Zwei Wege $\alpha,\beta$ mit gemeinsamem Anfangspunkt $x_0$ ...
TeX_User's user avatar
2 votes
1 answer
95 views

How can I format this text using the | character?

Having a text with several separators | I would like to format it by applying the following: Take the first group, and put R. in front of it in red. Take the second group and put the character * in ...
A. Cedano's user avatar
  • 457
1 vote
0 answers
41 views

Spacing around & and &= in align and similar environments

I am using the amsmath package but I am not sure about the correct way to type some things (I could not find any information about this in the amsmath user's guide, but maybe I did not see it, so if ...
Jorge Rubio's user avatar
3 votes
2 answers
127 views

Split of equation isn't arrange properly

Question: Is it possible to achieve the image shown below using my codes? MWE: \documentclass[12pt,a4paper]{article} \usepackage[width=1.00in, height=1.00in, left=1.00in, right=1.00in, top=1.00in, ...
SandyM's user avatar
  • 3,025
2 votes
2 answers
160 views

Unable to use split. tryed doing with align got more error in that also due to this im unable to fit the equation the page

\begin{eqnarray} \begin{split} J_{cp} &=& \frac{1}{36} \bigg[\sqrt{3} \sin (2 \text{$\phi' $}) (\sin (\sigma ) \cos (\text{$\sigma' $}) \sin (2 \phi )-2 \sin (\text{$\sigma' $}) \cos (2 \phi ...
Athula D V's user avatar
0 votes
3 answers
91 views

Unable to split the long equation

\begin{align} \sin^2 \theta_{12} &= {\bigg[-2 (\cos (\sigma) \sin (2 \phi) + 1)\bigg]}\bigg/ {\bigg[\sqrt{3} \sin (2 \phi) \sin (2 \phi') \cos (\sigma - \sigma') - 4 \cos (\sigma) \...
Athula D V's user avatar
2 votes
2 answers
115 views

Move the equation to left side inside split environment

Question: Is it possible to shift the entire equation to left side? Because when I am using split alignment inside the equation, it centers in the middle of the page. MWE: \documentclass[12pt,a4paper]{...
SandyM's user avatar
  • 3,025
0 votes
1 answer
37 views

How can I remove large horizontal space in an aligned-environment?

Simple question, actually: How can I remove the large horizontal space between "f" and "\in" here: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} ...
0xbadf00d's user avatar
  • 533
3 votes
1 answer
103 views

How to make the right ends of equations in a split environment to align vertically?

I have an align environment inside of which I use a split environment to split the second long equation: I would like to ask how to push + h and + k to the right such that their right ends are the ...
Analyst's user avatar
  • 191
1 vote
2 answers
44 views

Align a set of four equation (on left side)

Question: I have a set of four equation (few are very long) How can I align all these equations. MWE \documentclass[12pt,a4paper,fleqn]{article} \usepackage[T1]{fontenc} \usepackage[margin=1cm]{...
SandyM's user avatar
  • 3,025
0 votes
2 answers
56 views

Is there a better way of typing big equations than this? IEEEtrans

I am writing a journal in IEEEtrans template. I have multiline equation which is not able to fit in one column. So, did the following: \documentclass[final]{IEEEtran} \IEEEoverridecommandlockouts % \...
Shashank Ranjan's user avatar
0 votes
2 answers
53 views

Aligning a Multiline Equation and Implication

I’m trying to align the first two equals signs with one another while aligning the implication symbol with the first limit; I tried to do this with the following code but the text was distorted as ...
Experimental-Mathematics's user avatar
0 votes
1 answer
57 views

Too much white space before and after the equation when align and split used together [closed]

I have the following latex code: Applying Euler-Maruyama with step size $\tau>0$, we obtain the iteration scheme of $w_k$ and $P_k$: \begin{align*} \begin{split} & w_{k+1} = w_k + \tau P_k,\...
melatonin15's user avatar
3 votes
3 answers
254 views

How to line-break a big equation with a big square root term?

I have a big equation which has a square root encompassing a major portion. I need to line-break it into multiple lines in latex. The original code that I have is given below: \documentclass{article} \...
codebpr's user avatar
  • 199
3 votes
2 answers
249 views

How to split an equation at specific position and align it where there is a LaTeX operator

I have a long equation in twocolumn article. The equation has a LaTeX operator like \sqrt{}. I want to split the equation at some position and align it inside the operator ...\sqrt{...&...}...\\&...
zebda's user avatar
  • 125
1 vote
1 answer
36 views

How to make appear right expectation symbol on second line of a splitted equation into align environment

Here below the rendering of Latex code snippet : I can't get to make display the right expectation symbol ( \right> ) on the second line of a splitted equations (on both eq(3) and eq(4)) \noindent ...
foutou_10's user avatar
1 vote
1 answer
41 views

How to create multiple big tables using HVObox in HVFloat

I have a several wide tables which I need to split over multiple pages for a book. The idea being that the left page shows the left half of the table, the right page the right half. For example ...
zilverdael's user avatar
0 votes
2 answers
35 views

Error while nesting two environments; Attempting to redefine \begin{equation*} and \begin{spit}; Command already defined?

I'm trying to combine \begin{equation*} and \begin{split} into an abbreviated thing. Rather than doing this: \begin{equation*} \begin{split} a = b & = b \\ & = b \end{split} \end{...
gian98863's user avatar
4 votes
1 answer
290 views

Split a Tikzpicture Across Two Pages

Often enough, I run into the problem of a tikzpicture being too large to fit on the page where I would like it to be. Consider the MWE (compiled with pdfLatex): \documentclass[a5paper,12pt,openany]{...
DDS's user avatar
  • 10.4k
0 votes
2 answers
64 views

Alignment of equations using align and split

I have a larger set of equations and I can't manage to format the equations correctly. The first line of each equation should be left-aligned (maybe this is done automatically?). The other lines of ...
Sylvia's user avatar
  • 493
2 votes
2 answers
91 views

"Top-align" a stack of items in an equation

This should be simple to achieve, but I wasn't able to figure out how. I have an equation \begin{equation} f=g\text{ text }\begin{split}&A\\&Bbb\end{split} \end{equation} The goal is that ...
0xbadf00d's user avatar
  • 533
1 vote
1 answer
41 views

Split inside Align raises overfull hbox - need a local solution

When using a split environment inside a align environment, I get the Overfull hbox warning. \documentclass{article} \usepackage{amsmath} \setlength\textwidth{.5\textwidth}% force narrow text to get ...
Euler_Salter's user avatar
1 vote
1 answer
45 views

Horizontal spacing within a Split Equation

I am trying to split an equation across two lines with a single \Bigg parentheses enclosing both lines. I found a way to do that using \split but there is a massive block of white space at the start ...
Jarl Zarl's user avatar
3 votes
2 answers
264 views

How to split a long set

I have this MWE where there are two long set \documentclass[a4paper,12pt]{article} \usepackage{amsmath,amssymb} \begin{document} Supponiamo che l'insieme sia $A=\{a,b,c\}$. L'insieme delle parti di $...
Sebastiano's user avatar
  • 57.8k
1 vote
1 answer
44 views

Long equations break with split or multlined

I am using the IEEEtran class (two columns) for a paper, and have several long expressions that I cannot figure out the best way to format them. I am currently using \split and aligning everything ...
betaros's user avatar
  • 11
2 votes
1 answer
69 views

Split an equation of matrix

Could anyone guide me on how to split an equation of matrix? I have tried this code but the functions of delimiter '&' are intercepted (functions of split and matrix) \begin{equation} \begin{...
a_student's user avatar
1 vote
1 answer
38 views

Split inside Align doesn't align

I'm trying to write a set of equations and align at the '=' symbol. I want to split the definition of some equations over multiple lines, because they are case dependent. My problem is the split lines ...
Flao's user avatar
  • 13
4 votes
1 answer
80 views

Aligning at differents levels

I would like to know which could be the simplest way to obtain something like Where each sequence of letters represent a long expression. To be more precise I want that the sequence of b's to start ...
prosep's user avatar
  • 141
2 votes
1 answer
142 views

Nicematrix and aligned math

The following document \documentclass{article} \usepackage{nicematrix,mathtools} \begin{document} \begin{equation*} \begin{split} \alpha^{d+i}_i &=\begin{...
Bubaya's user avatar
  • 2,735
3 votes
2 answers
167 views

Is there an elegent method to split a long formula like this?

I am formatting an equation and my code is: \begin{equation} \begin{split} &\bra{[\mu]_n+e_j}\bra{[\mu] _{n-1}+e_{j^\prime}} \Phi \ket{[\mu]_n}\ket{[\mu]_{n-1}}\\ &= \begin{cases}S(j^\prime -...
Enze Shi's user avatar
0 votes
1 answer
33 views

Trouble with split alignment in equations

I have a trouble with this code: \documentclass{article} \usepackage{mathtools} \begin{document} \begin{equation} \begin{split} a&=b+c\\& \begin{split} =c+d+e&\qquad\text{this is}\\ =f+g&...
Puck's user avatar
  • 1,264
0 votes
2 answers
91 views

Splitting equations using \begin{split} generates errors (again)

I have been successfully using "split" to split up long equation, but now I get a new error: \begin{equation} \begin{split} \alpha_0=\frac{1}{\pi}\int_{-\pi}^{\pi}F(y)\text{d}y=\frac{...
Superunknown's user avatar
0 votes
1 answer
37 views

align single lines in \split

I have 3 equations and their names within a single \equation\split setting and want to leftalign their names but keep the alignment for everything else. Tried doing it myself with \raggedleft and re-...
Marcel Davis's user avatar
3 votes
1 answer
79 views

Setting the rule for split footnotes?

My university's editorial office has some funny and detailed stipulations on theses and dissertations, written and set years ago, but without any official LaTeX support anymore :(. (You just have to ...
Jonathan Joseph Chiarella's user avatar
4 votes
1 answer
216 views

Align equation to split equation or multiple split equations

I have a problem when trying to align multiple equations within the align environment if some (or all) of them are split into multiple lines with the split environment. For instance in the example ...
writing_phd's user avatar
1 vote
1 answer
1k views

Split a document in two independent parts

I want to have in the same latex file the main text and a supplemental material (SM). The SM will come after the main text, but I would like the figures to be labeled from 1 again (for example in the ...
user290550's user avatar
7 votes
4 answers
586 views

Equation: boxed split inside align

How to box the second split environment ? Bonus: to box only a part of the split environment content it so I can add a \Longleftrightarrow before the box. MWE: \documentclass{article} \usepackage{...
coucou's user avatar
  • 71
6 votes
3 answers
372 views

Break equation with \left( and \right) doesn't work exactly while using classicthesis

Compiling the following MWE produces different bracket [] heights by using \usepackage{classicthesis}. If this package is commented out, the equation is correct. What does the package load, that it ...
nico.wagner's user avatar
0 votes
1 answer
58 views

Split environment center the number of the equations

I have a multi-line equation that is long enough to push the number of the equation at the bottom: \documentclass[12pt]{article} \usepackage[utf8]{inputenc} \usepackage{amssymb, amsthm, amsmath, ...
riccardo-df's user avatar
0 votes
2 answers
151 views

Align multiple split enviroments

I want to align multiple split environments. As of now, I've checked these answers, but none of them did the trick. How can I align two split environments at the equal signs? , how to get two align ...
Álvaro A. Gutiérrez-Vargas's user avatar
2 votes
1 answer
31 views

How to get effect similar to nested alignes

I'm trying to align several equations. In each equation, I would like to separate the condition part into two lines, i.e., As such, I use align and split. \documentclass{article} \usepackage{amsmath}...
Analyst's user avatar
  • 191
0 votes
1 answer
64 views

Aligning equations left

I need to align the equation left. I used the command \begin{fleqn} \end{fleqn} and \begin{equation} \begin{split} x=yz+q\\ y=te+3\\ z=uy+4, \end{split} \end{equation} but I didn't get the ...
supragyan priyadarshinee's user avatar
0 votes
1 answer
70 views

Why 'split' environment conflicts with my counter?

Here is the code: \documentclass{article} \usepackage{mathtools} \begin{document} \newcounter{rule} \newcommand\jrule{ \refstepcounter{rule} \label{foo} \text{R\ref{foo}}} \section{Intro} \...
yegor256's user avatar
  • 12.7k
2 votes
1 answer
345 views

How to split my figure (folder directory tree) into two columns in latex as shown in the screenshot?

\documentclass[tikz, border=12pt, a4paper]{standalone} \usepackage{tikz} \usetikzlibrary{trees} \usepackage[edges]{forest} \usepackage{sectsty} \usepackage{array} \usepackage{multicol} \usepackage{...
Hashim Hasnain Hadi's user avatar
1 vote
1 answer
84 views

Splitting equation inside curly brackets

I'm trying to split an equation written inside curly brackets in this way: \documentclass{article} \usepackage[utf8]{inputenc} \usepackage{amsmath} \begin{document} \begin{equation} a \vert_{ \begin{...
Gennaro Arguzzi's user avatar
3 votes
1 answer
75 views

Does split environment allow only 2 columns?

The following code compiles fine: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} \begin{split} 1 & 2 \\ 4 & 5 \end{split} \end{equation} \end{document} ...
Dmitry's user avatar
  • 240
0 votes
3 answers
108 views

Problem with \split

I'm a bit new to latex, and seem to be having a problem with the \split function. I want to split a long equation, and it has worked for all of my other equations, but for this one, it is giving me ...
jdawg's user avatar
  • 1
0 votes
0 answers
157 views

Error: Extra alignment tab has been changed to \cr. \end{split}

Using this code I get the error: "Extra alignment tab has been changed to \cr. \end{split}". Why so? \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} ...
Frank's user avatar
  • 465
0 votes
1 answer
338 views

Multiple alignment with tcboxmath for multiline equation within itemize environment

I'd like to have an itemize environment. Each item is followed by an equation. (may be longer than 1 line). Now each equation (both single line and multline) should be surrounded by a coloured box. ...
Domi1908's user avatar

1
2 3 4 5
7