Laurenso
![image.png](/image?hash=56ea168f7603f88c229c00f0dd6485ba6f54488341b3942badaa1e8899b544c4)
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}
```
![Screenshot 2023-07-16 at 14.38.52.png](/image?hash=4a74e5400bfd4b61b0e92850b7a45d2fc649712ef923502b35878280c159793b)