You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem when diff'ing tables that use the siunitx S column type.
The siunitx package doesn't see the added macros as part of the number, and it prompts
Package siunitx Error: Invalid number '.55('. ...DIFaddbeginFL \DIFaddFL{4}\DIFaddendFL ) &
Is there a way to make the diff macros to be treated as markup? Or to wrap them around the whole cell? However, that doesn't fix the error of not been detected as a number.
I know this issue is old but I am just working through backlog of issues. Thank you for supplying very clear MWE. The problem here is that latexdiff thinks that (, ) are just normal text, while they have special meaning in the particular context of an siunitx table column. As most text will contain parentheses is normal text also, preprocessing would need to turn this syntax into something the core algorithm is able to understand:
Detecting when we are in a S type column.
Transforming something like .55(4) into a pseudocommand \SITABLEUNCERTAINTY{.55(4)} and declare \SITABLEUNCERTAINTY as safe command
and in post-processing:
Turn \SITABLEUNCERTAINTY{.55(4)} back into the standard form
This would mean that these table entries would be treated atomistically, i.e. if either value or uncertainty changed, the whole number plus uncertainty would show up - I guess that would be acceptable.
I experimented with placing \DIFadd/del commands around just the number or just the uncertainty but this did not work.
Now 1 would be quite tricky with the current setup. But I could propose to detect any instance of regular patterns [0-9]*.[0-9]*\([0-9+\) and transform as in steps 2, 3 above. The pattern should occur rarely, if ever, in normal text, and even if it does it's not dramatic.
Before I implement, please let me know if this pattern is the only one relevant, or if e.g. spaces are allowed between numbers and parentheses, or whether decimal dot can also be inside the parentheses.
There is a problem when diff'ing tables that use the siunitx S column type.
The siunitx package doesn't see the added macros as part of the number, and it prompts
Is there a way to make the diff macros to be treated as markup? Or to wrap them around the whole cell? However, that doesn't fix the error of not been detected as a number.
Here is a MWE to show the issue.
v1.tex:
v2.tex:
The text was updated successfully, but these errors were encountered: