Laurenso

I tried this code to draw above table.
```
\documentclass[12pt,a4paper,twoside,openany]{article}
\usepackage{amsmath}
\usepackage{tabularray}
\UseTblrLibrary{amsmath,
booktabs,
counter,
diagbox,
siunitx,
varwidth}
\usepackage[left=2cm,right=2 cm,top=2cm,bottom=2cm]{geometry}
\begin{document}
\begin{tblr}{
colspec={Q[c,m]|Q[l,m]},
stretch = -1,%<--- remove extra space above and below lists
measure = vbox,
}
Let be given &
\begin{itemize}
\item Triangle $ABC$
\item $A D$ is a bisector of angle $B A C$ $(D \in B)$
\end{itemize}
\\ \hline
Prove that & $\dfrac{D B}{D C}=\dfrac{A B}{A C}$
\end{tblr}
\end{document}
```
I want to use `[nosep]` option at
```
\begin{itemize}[nosep]
\item Triangle $ABC$
\item $A D$ is a bisector of angle $B A C$ $(D \in B)$
\end{itemize}
```
This is wrong. How can I use [nosep] option?
Top Answer
samcarter
The `nosep` option is not available by default. You need to load some package which provides it, e.g. the `enumitem` package:
```
\documentclass[12pt,a4paper,twoside,openany]{article}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage{tabularray}
\UseTblrLibrary{amsmath,
booktabs,
counter,
diagbox,
siunitx,
varwidth}
\usepackage[left=2cm,right=2 cm,top=2cm,bottom=2cm]{geometry}
\begin{document}
\begin{tblr}{
colspec={Q[c,m]|Q[l,m]},
stretch = -1,%<--- remove extra space above and below lists
measure = vbox,
}
Let be given &
\begin{itemize}[nosep]
\item Triangle $ABC$
\item $A D$ is a bisector of angle $B A C$ $(D \in B)$
\end{itemize}
\\ \hline
Prove that & $\dfrac{D B}{D C}=\dfrac{A B}{A C}$
\end{tblr}
\end{document}
```
