Generaldisplay condition under \vee

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Aurora
Posts: 17
Joined: Thu Jun 28, 2007 3:42 pm

display condition under \vee

Post by Aurora »

hi there,

I have a problem with a formula. It is:

Code: Select all

\begin{displaymath}
\vee_{k}x_{1,2,k}
\end{displaymath}
I want the first 'k' to be displayed under the \vee. Is this possible? I found no latex-command to do this.

Thanks a lot.

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
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

display condition under \vee

Post by gmedina »

Aurora wrote: I want the first 'k' to be displayed under the \vee.

In the preamble

Code: Select all

\usepackage{amsmath}
and then

Code: Select all

\overset{\vee}{k}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Aurora
Posts: 17
Joined: Thu Jun 28, 2007 3:42 pm

display condition under \vee

Post by Aurora »

thank you so much.

Code: Select all

\underset{y}{\vee}
this does what I want.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

display condition under \vee

Post by localghost »

Just use the version for display math mode.

Code: Select all

\[
  \bigvee_{k}x_{1,2,k}
\]
Last edited by localghost on Sun Oct 21, 2007 1:42 pm, edited 1 time in total.
Aurora
Posts: 17
Joined: Thu Jun 28, 2007 3:42 pm

Re: display condition under \vee

Post by Aurora »

Thank you. That's the best result. :)
Post Reply