Math symbol question: Vertical bar for ''evaluated at ...''
I don't know how you would get this in LyX. However, if you're comfortable with writing things in mathmode by hand, I would write this as
T(s) = \frac{1}{H(\hat S)} \bigg\rvert_{\hat S = \epsilon^{1/n} \frac{s}{\omega_P}}
The relevant bit is the \bigg\rvert
, which you can substitute with \Big\rvert
or \Bigg\rvert
to get a smaller or larger vertical stroke. If you would like to resize the vertical stroke automatically depending on what occurs to the left of it, I would recommend
T(s) = \left. \frac{1}{H(\hat S)} \right\rvert_{\hat S = \epsilon^{1/n} \frac{s}{\omega_P}}
where \left.
puts an invisible left-bracket-like symbol on the left, whose right-side partner is the vertical stroke given by \right|
. These pairs work equally for other braces/brackets.
You could just type the symbol (|
) directly. This won't scale, to get it larger you could use the same technique as Niel de Beaudrap. In the LyX GUI this is done via the Insert Delimiter button on the math toolbar:
Set the left delimiter to None, and the right to |
. Uncheck Keep matched, and let the Size be set to Variable:
In LyX this looks like as below (left). The dotted vertical line indicates an invisible delimiter (as \left.
in Niels example). Result in PDF on the right.
Edit in response to Marcs answer:
To use \rvert
I think you have to use ERTs. If you don't have any other math constructs that use amsmath
, you may have to make LyX use this package manually: Document --> Settings --> Math options. Uncheck Use AMS math package automatically, and check Use AMS math package.
In your equation, add an ERT (Ctrl + L) and type \biggr\rvert
. That is, the first backslash may appear automatically, in which case don't type it.
\biggr
is one of several commands for manually scaling a delimiter, rather than the automatic provided by \left \right
. Other sizes are \bigr
, \Bigr
and \Biggr
, with the latter being the largest. For left delimiters, replace r
with l
. (See section 4.14.1 Delimiter sizes in amsmath
s manual.)
Should you want to use \left\right
, you need to add an ERT with \left.
before the fraction (or whatever it is) and have \right\rvert
in the one after.
Do not use |
directly. Instead I suggest you use \rvert
, which is provided by the amsmath
package to address the overloading of the |
symbol. See section 4.14.2 of the amsmath
documentation.