Math & ScienceDepth of Subscript

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
CoolnessItself
Posts: 47
Joined: Wed Nov 11, 2009 9:30 pm

Depth of Subscript

Post by CoolnessItself »

Hi all,

Is there any way to modify this example

Code: Select all

\usepackage[normalem]{ulem}
\begin{document}
\begin{align}
y_i = \uwave{u}_i
\end{align}
\end{document}
to get it to change like:
Untitled2.png
Untitled2.png (2.21 KiB) Viewed 1902 times
i.e. bump up the subscript?
Last edited by Stefan Kottwitz on Thu Mar 29, 2012 9:36 am, edited 1 time in total.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Depth of Subscript

Post by localghost »

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools}
\usepackage[normalem]{ulem}

\begin{document}
  \begin{align}
    y_i=\uwave{u}{}_i
  \end{align}
\end{document}
And next time it is expected that you prepare a proper minimal example and not just present any useless code snippets.


Thorsten
Post Reply