add tag
Anonymous 13090
I want delete the caption of `longtblr`. So, I redefine the template. It worked. However, I found there seems to be an extra gap between the `longtblr` and the main text. How can I delete it?

![image.png](/image?hash=5161254240763c15e6e482dea1cad804f868a118a8477b25adcc1b614f8bcd26)

The minimum working example is,

```
\documentclass{article}

\usepackage{tabularray}
    \DefTblrTemplate{head}{default}{}
    \DefTblrTemplate{foot}{default}{}
\usepackage{lipsum}

\begin{document}

\lipsum[1]

\begin{longtblr}{colspec={X[1]}}
    \lipsum[1] \\
\end{longtblr}

\end{document}
```
Top Answer
samcarter
You could adjust the `presep`:

```
\documentclass{article}

\usepackage{tabularray}
    \DefTblrTemplate{head}{default}{}
    \DefTblrTemplate{foot}{default}{}
\usepackage{lipsum}

\begin{document}

\lipsum[1]

\begin{longtblr}[
  presep=\lineskip
]{colspec={X[1]}}
    \lipsum[1] \\
\end{longtblr}

\end{document}
```
![document-1.png](/image?hash=0518627fd844e7fd29e578c9456a0a43777381adff81abc6c8b786eb773c1c22)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.