Error caused by tabular environment suddenly started happening on a previously working file
up vote
3
down vote
favorite
I'm working on a pretty big document with a lot of usepackage and custom commands. I'm using texlive 2018 on both my laptop with Linux Mint 17 and my desktop with Windows 10.
After updating texlive on Linux, the file does not compile anymore, and I get many errors for most of the tables and a forest tree in the document. I completely reinstalled it, but compilation still fails.
The file still compiles on my Windows pc, whose texlive installation has been updated a few days ago.
Here is a not-quite-minimal example:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[english]{babel}
usepackage[dvipsnames,table]{xcolor}
begin{document}
frontmatter
tableofcontents
mainmatter
begin{table}[h]
begin{tabular}{lp{8.8cm}}
x & y \
x & y \
end{tabular}
end{table}
backmatter
end{document}
And here is the error log:
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Missing # inserted in alignment preamble. begin{tabular}{lp{8.8cm}}
Missing { inserted. x & y
Missing } inserted. x
Missing } inserted. x
Missing } inserted. x
Missing { inserted. x & y
Missing } inserted. end
Missing } inserted. end
Missing } inserted. end
I'm using this command to compile:
pdflatex -synctex=1 -interaction=nonstopmode %.tex
I noticed that by replacing the column specification with {ll} I don't get any error. Also, removing the xcolor package solves the problem, at least on this MWE, but it can be it's fault as it is still an old 2016 version. Does anyone know which package may cause this problem?
Finally, here's a truly minimal MWE:
documentclass{book}
usepackage[table]{xcolor}
begin{document}
begin{tabular}{p{1cm}}
x
end{tabular}
end{document}
tables color texlive texlive-2018
add a comment |
up vote
3
down vote
favorite
I'm working on a pretty big document with a lot of usepackage and custom commands. I'm using texlive 2018 on both my laptop with Linux Mint 17 and my desktop with Windows 10.
After updating texlive on Linux, the file does not compile anymore, and I get many errors for most of the tables and a forest tree in the document. I completely reinstalled it, but compilation still fails.
The file still compiles on my Windows pc, whose texlive installation has been updated a few days ago.
Here is a not-quite-minimal example:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[english]{babel}
usepackage[dvipsnames,table]{xcolor}
begin{document}
frontmatter
tableofcontents
mainmatter
begin{table}[h]
begin{tabular}{lp{8.8cm}}
x & y \
x & y \
end{tabular}
end{table}
backmatter
end{document}
And here is the error log:
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Missing # inserted in alignment preamble. begin{tabular}{lp{8.8cm}}
Missing { inserted. x & y
Missing } inserted. x
Missing } inserted. x
Missing } inserted. x
Missing { inserted. x & y
Missing } inserted. end
Missing } inserted. end
Missing } inserted. end
I'm using this command to compile:
pdflatex -synctex=1 -interaction=nonstopmode %.tex
I noticed that by replacing the column specification with {ll} I don't get any error. Also, removing the xcolor package solves the problem, at least on this MWE, but it can be it's fault as it is still an old 2016 version. Does anyone know which package may cause this problem?
Finally, here's a truly minimal MWE:
documentclass{book}
usepackage[table]{xcolor}
begin{document}
begin{tabular}{p{1cm}}
x
end{tabular}
end{document}
tables color texlive texlive-2018
3
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
1
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I'm working on a pretty big document with a lot of usepackage and custom commands. I'm using texlive 2018 on both my laptop with Linux Mint 17 and my desktop with Windows 10.
After updating texlive on Linux, the file does not compile anymore, and I get many errors for most of the tables and a forest tree in the document. I completely reinstalled it, but compilation still fails.
The file still compiles on my Windows pc, whose texlive installation has been updated a few days ago.
Here is a not-quite-minimal example:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[english]{babel}
usepackage[dvipsnames,table]{xcolor}
begin{document}
frontmatter
tableofcontents
mainmatter
begin{table}[h]
begin{tabular}{lp{8.8cm}}
x & y \
x & y \
end{tabular}
end{table}
backmatter
end{document}
And here is the error log:
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Missing # inserted in alignment preamble. begin{tabular}{lp{8.8cm}}
Missing { inserted. x & y
Missing } inserted. x
Missing } inserted. x
Missing } inserted. x
Missing { inserted. x & y
Missing } inserted. end
Missing } inserted. end
Missing } inserted. end
I'm using this command to compile:
pdflatex -synctex=1 -interaction=nonstopmode %.tex
I noticed that by replacing the column specification with {ll} I don't get any error. Also, removing the xcolor package solves the problem, at least on this MWE, but it can be it's fault as it is still an old 2016 version. Does anyone know which package may cause this problem?
Finally, here's a truly minimal MWE:
documentclass{book}
usepackage[table]{xcolor}
begin{document}
begin{tabular}{p{1cm}}
x
end{tabular}
end{document}
tables color texlive texlive-2018
I'm working on a pretty big document with a lot of usepackage and custom commands. I'm using texlive 2018 on both my laptop with Linux Mint 17 and my desktop with Windows 10.
After updating texlive on Linux, the file does not compile anymore, and I get many errors for most of the tables and a forest tree in the document. I completely reinstalled it, but compilation still fails.
The file still compiles on my Windows pc, whose texlive installation has been updated a few days ago.
Here is a not-quite-minimal example:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[english]{babel}
usepackage[dvipsnames,table]{xcolor}
begin{document}
frontmatter
tableofcontents
mainmatter
begin{table}[h]
begin{tabular}{lp{8.8cm}}
x & y \
x & y \
end{tabular}
end{table}
backmatter
end{document}
And here is the error log:
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Use of @startpbox doesn't match its definition. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Extra }, or forgotten endgroup. begin{tabular}{lp{8.8cm}}
Missing # inserted in alignment preamble. begin{tabular}{lp{8.8cm}}
Missing { inserted. x & y
Missing } inserted. x
Missing } inserted. x
Missing } inserted. x
Missing { inserted. x & y
Missing } inserted. end
Missing } inserted. end
Missing } inserted. end
I'm using this command to compile:
pdflatex -synctex=1 -interaction=nonstopmode %.tex
I noticed that by replacing the column specification with {ll} I don't get any error. Also, removing the xcolor package solves the problem, at least on this MWE, but it can be it's fault as it is still an old 2016 version. Does anyone know which package may cause this problem?
Finally, here's a truly minimal MWE:
documentclass{book}
usepackage[table]{xcolor}
begin{document}
begin{tabular}{p{1cm}}
x
end{tabular}
end{document}
tables color texlive texlive-2018
tables color texlive texlive-2018
edited Dec 13 at 21:42
Mico
273k30369756
273k30369756
asked Dec 13 at 19:59
Taekwondavide
34713
34713
3
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
1
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday
add a comment |
3
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
1
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday
3
3
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
1
1
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
The table option of xcolor load the colortbl package. Unfortunately this package had an error (or was missing a few bits after the array package was updated). The correct version is now available on CTAN and through the latex package managers.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464761%2ferror-caused-by-tabular-environment-suddenly-started-happening-on-a-previously-w%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
The table option of xcolor load the colortbl package. Unfortunately this package had an error (or was missing a few bits after the array package was updated). The correct version is now available on CTAN and through the latex package managers.
add a comment |
up vote
1
down vote
accepted
The table option of xcolor load the colortbl package. Unfortunately this package had an error (or was missing a few bits after the array package was updated). The correct version is now available on CTAN and through the latex package managers.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
The table option of xcolor load the colortbl package. Unfortunately this package had an error (or was missing a few bits after the array package was updated). The correct version is now available on CTAN and through the latex package managers.
The table option of xcolor load the colortbl package. Unfortunately this package had an error (or was missing a few bits after the array package was updated). The correct version is now available on CTAN and through the latex package managers.
answered yesterday
daleif
32k252114
32k252114
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464761%2ferror-caused-by-tabular-environment-suddenly-started-happening-on-a-previously-w%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
There is an error in colortbl (loaded via the xcolor table option), a fix should now be uploaded to ctan and is available via tlmgr within a day or two
– daleif
Dec 13 at 20:31
I've taken the liberty of posting a truly minimal MWE that generates the problem behavior.
– Mico
Dec 13 at 21:42
1
Thanks very much @daleif ! You have probably saved me several hours that I would have wasted tracking this down! I can confirm that the patch is now available from ctan and that this solves the problem. Perhaps you should post this as a solution?
– Andrew
yesterday