We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hyperref package adds vertical space at the beginning of the enumerate environment. Please compare two different compiled result:
\documentclass{article} \usepackage{tabularray} \UseTblrLibrary{varwidth} \begin{document} \begin{tblr}{ hlines,vlines, measure = vbox, stretch = -1, } test & \begin{enumerate} \item test 1 \item test 2 \end{enumerate} \\ test & test \end{tblr} \end{document}
The code gets the result: When hyperref package is used, there appears some space at the beginning of the enumerate environment:
\documentclass{article} \usepackage{tabularray} \UseTblrLibrary{varwidth} \usepackage{hyperref} \begin{document} \begin{tblr}{ hlines,vlines, measure = vbox, stretch = -1, } test & \begin{enumerate} \item test 1 \item test 2 \end{enumerate} \\ test & test \end{tblr} \end{document}
The code above gets the result: which may not desired result.
OS: Win 10 Home Edition Distribution: TeX Live 2024 Compiler: xelatex
The text was updated successfully, but these errors were encountered:
yes, hyperref inserts an anchor and that can affect spacing. You can disable the anchor locally:
\documentclass{article} \usepackage{tabularray} \UseTblrLibrary{varwidth} \usepackage{hyperref} \begin{document} \begin{tblr}{ hlines,vlines, measure = vbox, stretch = -1, } test & \begin{enumerate}\LinkTargetOff \item \leavevmode\LinkTargetOn test 1 \item test 2 \end{enumerate} \\ test & test \end{tblr} \end{document}
Sorry, something went wrong.
related: lvjr/tabularray#196
No branches or pull requests
hyperref package adds vertical space at the beginning of the enumerate environment.
Please compare two different compiled result:
The code gets the result:
When hyperref package is used, there appears some space at the beginning of the enumerate environment:
The code above gets the result:
which may not desired result.
OS: Win 10 Home Edition
Distribution: TeX Live 2024
Compiler: xelatex
The text was updated successfully, but these errors were encountered: