LyXAdditional Text beneath Parts of Equation

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
iocal
Posts: 3
Joined: Wed Jul 10, 2013 3:31 pm

Additional Text beneath Parts of Equation

Post by iocal »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Post by Johannes_B »

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
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.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Additional Text beneath Parts of Equation

Post by localghost »

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.
Jahannes_B wrote:[…] I wasn't aware of the LyX thing. […]
Look at the topic tags or the specified forum before posting.


Best regards and welcome to the board
Thorsten
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: Additional Text beneath Parts of Equation

Post by Stefan Kottwitz »

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
LaTeX.org admin
jfhspike
Posts: 2
Joined: Wed Jul 10, 2013 4:28 pm

Additional Text beneath Parts of Equation

Post by jfhspike »

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.
1. Here's a solution, assuming you're willing to use amsmath:

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}
2. Rather than thanking me, you should definitely read the guidelines about posting, esp. Section 3, the part where it says that this isn't a help desk. http://latex-community.org/forum/viewto ... f=5&t=5838

--John
Post Reply