LaTeX How I can use a vertical bar to represent evaluation in LaTeX

  • Thread starter Thread starter Kreizhn
  • Start date Start date
  • Tags Tags
    Latex Vertical
AI Thread Summary
The discussion focuses on how to represent a vertical bar for evaluation in LaTeX, specifically for expressions like the derivative at a point. Users suggest various methods to achieve the desired sizing for the vertical bar. The use of commands such as \left. and \right| is highlighted, which automatically adjusts the size of the delimiter based on the content. An alternative method using \bigg| is also recommended for manual sizing. One user mentions difficulties in LyX with the default vertical bar size and suggests using \| for a larger option. Additionally, a custom command called \xstrut is introduced to create an "invisible tower" that helps adjust the height of the vertical line by defining a specific vertical space. This allows for more control over the appearance of the vertical bar in mathematical expressions.
Kreizhn
Messages
714
Reaction score
1
Hey guys. This might not be the right place for this, but any ideas on how I can use a vertical bar to represent evaluation in LaTeX?

Example

\displaystyle \frac{d}{dt} |_{t=0} f(t)

I would like the vertical bar to be the size of the differential. I've tried using \left|, \right|, \vert, etc. but nothing seems to work. Thanks a lot in advance.
 
Last edited by a moderator:
Physics news on Phys.org
Hi Kreizhn,

Is this it?

\left. \frac{d}{dt} \right|_{t=0} f(t)

which is given by

\left. \frac{d}{dt} \right|_{t=0} f(t)

Using either \left or \right on a period means the automatic delimiter sizing takes place, but only one delimiter is shown.
 
Excellent, thank you
 
\frac{d}{dt} \bigg|_{t=0} f(t) achieves a similar effect
with manual sizing (by using two g's) and the unneeded \left. tag.

\frac{d}{dt} \bigg|_{t=0} f(t)
 


I'm using lyx and I'm having difficulty trying to find the code for this vertical line. Any suggestions? I use the | but it's extremely small.
 


Maybe try \|?

The height of the vertical line will be determined by the {stuff} in between the \left. {stuff} \right|. If it's not naturally big, you may want to add an "invisible tower." My invisible tower is called \xstrut, and is defined as follows

\newlength{\myVSpace}% the height of the box
\setlength{\myVSpace}{3ex}% the default,
\newcommand\xstrut{\raisebox{-.5\myVSpace}% symmetric behaviour,
{\rule{0pt}{\myVSpace}}%
}
To change the height of the box, change

\setlength{\myVSpace}{Your number here}
 
\mathbf{M \bigg|_{x^k} \Delta x^k = -f(x^k)}
<br /> \mathbf{M \bigg|_{x^k} \Delta x^k = -f(x^k)}
 

Similar threads

Replies
5
Views
2K
Replies
1
Views
3K
Replies
1
Views
2K
Replies
3
Views
3K
Replies
9
Views
5K
Replies
3
Views
2K
Back
Top