LyX ⇒ Additional Text beneath Parts of Equation
Additional Text beneath Parts of Equation
at this point I desperately need your help. I have been striving for hours and I have grown frustrated.
All I need to do is to present my estimated one-line regression equation and then be able to type under each coefficient the t-statistic. Alignment refers to equations but I do not want another equation. I just want to type exactly underneath each coefficient. Can you please help me?
Thanks in advance.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Additional Text beneath Parts of Equation
EDIT: I wasn't aware of the LyX thing.
Welcome to the board
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Additional Text beneath Parts of Equation
Look at the topic tags or the specified forum before posting.Jahannes_B wrote:[…] I wasn't aware of the LyX thing. […]
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Additional Text beneath Parts of Equation
welcome to the forum!
Also I would have a look if there would be a real small document which could be worked on. Otherwise it's a bit theoretically. Even though the others already said it, I just write you so see people read your question and might be able to help, based on details.
Stefan
Additional Text beneath Parts of Equation
1. Here's a solution, assuming you're willing to use amsmath:iocal wrote:Hi all,
at this point I desperately need your help. I have been striving for hours and I have grown frustrated.
All I need to do is to present my estimated one-line regression equation and then be able to type under each coefficient the t-statistic. Alignment refers to equations but I do not want another equation. I just want to type exactly underneath each coefficient. Can you please help me?
Thanks in advance.
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Before:
\begin{align}
x + y_2
\end{align}
After:
\begin{align}
\underset{0.26}{x} + \underset{1.3}{y_2}
\end{align}
\end{document}
--John