Math & Science ⇒ split and underset
split and underset
\begin{equation}
\begin{split}
\underset{\theta,\lambda,\delta}{Min} \ \theta \ s.t. \\
-y_i + Y\lambda \geq 0 \\
\theta x^{v}_{i} - X^v\lambda \geq 0 \\
\theta \delta x^{f}_{i} - X^f\lambda = 0
\end{split}
\end{equation}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
split and underset
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
\underset{\theta,\lambda,\delta}{Min} \ \theta \ s.t. \\
-y_i + Y\lambda \geq 0 \\
\theta x^{v}_{i} - X^v\lambda \geq 0 \\
\theta \delta x^{f}_{i} - X^f\lambda = 0
\end{split}
\end{equation}
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: split and underset
I apparently didn't have an appropriate package loaded. \usepackage{babel} solved the issue. Sorry for posing an irrelevant question though I certainly appreciate the solution.
Thanks again.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
split and underset
The babel package is not related to the problem. It merely allows multilingual documents.pricejn2 wrote:[...] I apparently didn't have an appropriate package loaded. \usepackage{babel} solved the issue. [...]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10