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.
LyX ⇒ Additional Text beneath Parts of Equation
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Additional Text beneath Parts of Equation
Maybe you could post a Minimal Working Example to give an adequate problem description instead of hurrying people.
EDIT: I wasn't aware of the LyX thing.
Welcome to the board
EDIT: I wasn't aware of the LyX thing.
Welcome to the board
Last edited by Johannes_B on Wed Jul 10, 2013 5:32 pm, edited 1 time in total.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Additional Text beneath Parts of Equation
Since you are working with LyX, you will need to upload a minimal LyX file (*.lyx) to the forum server as attachment to your next post.
Best regards and welcome to the board
Thorsten
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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Additional Text beneath Parts of Equation
Hi iocal,
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
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
LaTeX.org admin
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