Math & Science ⇒ single box multiple equations using align
single box multiple equations using align
https://tex.stackexchange.com/questions ... -equations
https://latex.org/forum/viewtopic.php?t=892
https://latex.org/forum/viewtopic.php?f ... box#p18671
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
single box multiple equations using align
Code: Select all
\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
L &= k_1 (\theta_B-\sin \theta_B) && \textsl{$x\!=\!L$; $\theta_B$ unknown} \nonumber \\
-h &= k_1 (1-\cos \theta_B) && \textsl{$y\!=\!-h$; $\theta_B$ unknown} \nonumber \\
\frac{-h}{L} &= \frac{1-\cos \theta_B}{\theta_B-\sin \theta_B} && \textsl{solve for $\theta_B$} \\
k_1 &= \frac{L}{\theta_B-\sin \theta_B} && \textsl{compute $k_1$} \\
x &= k_1 (\theta-\sin \theta) && \textsl{} \\
y &= k_1 (1-\cos \theta) && \textsl{}
\end{align}
\end{document}