Skip to content
New issue

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

[BUG] Undefined reference even though its defined in tabularray #1159

Open
peng1999 opened this issue Jul 2, 2024 · 1 comment
Open

[BUG] Undefined reference even though its defined in tabularray #1159

peng1999 opened this issue Jul 2, 2024 · 1 comment

Comments

@peng1999
Copy link

peng1999 commented Jul 2, 2024

The following code gives undefined reference error by texlab even though its defined:

\documentclass{article}

\usepackage{tabularray}

\begin{document}
\begin{tblr}[
    tall,
    caption = {A Caption},
    note{a} = {This is a note.},
    label = {tbl:long},
]{ccc}
    \hline
    Alpha & Beta & Gamma \\
    Delta & Epsilon & Zeta \\
    Eta & Theta & Iota \\
    \hline
\end{tblr}

See Table~\ref{tbl:long}.
\end{document}
@peng1999 peng1999 changed the title [BUG] Undefined reference when its defined in tabularray [BUG] Undefined reference even though its defined in tabularray Jul 2, 2024
@brunobmello25
Copy link

can confirm this is also happening with biber:

% main.tex

\documentclass{article}

\usepackage[backend=biber]{biblatex}

\addbibresource{references.bib}

\begin{document}

\nocite{ref1}
\printbibliography

\end{document}
% references.bib

@book{ref1,
  title = {Title},
  author = {Author},
  year = {2024},
  publisher = {Publisher},
}

This results in an undefined reference error in the main.tex file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants