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
When using this v2.0.3 of this package with the taggedoption, if a list item is ended by an equation, which is then followed by another list item, then too much vertical space is inserted between the equation and the following list item. I've made a minimal-ish example at https://archive.uea.ac.uk/~aqw10chu/files/access.tex with the pdflatex-generated output at https://archive.uea.ac.uk/~aqw10chu/files/access.pdf
I've had a play around with the code in accessibility.sty, and the problem seems to be in the end part of the PDFSpezialTextObj environment. The closest I've been able to get fixing the issue is to add \ignorespaces to the end of the environment's definition, and commenting out the \pdfrefobj \theTextObjNum% line completely. This then fixes the spacing issue. But presumably that line is needed, and I couldn't find how to include it without messing up the spacing again.
The text was updated successfully, but these errors were encountered:
Thanks for this. I've used this as an excuse to set up a Tests directory. This used to be 'samples', but that seemed a bit optimistic.
This issue is now implemented as the tests/article/itemizeandequation.tex test.
I've confirmed that its the accessibility package doing this by commenting out \usepackage{accessibility}. When I do that, the spacing returns to normal.
@rjw62 : when you say you've mitigated that by making some changes, could you give me a bit more of a hint please where in the file you are? Line numbers for the lines you reference would be very handy. Thanks!
On accessibility.sty , as it currently is at https://github.com/AndyClifton/accessibility/blob/master/source/v2x/accessibility.sty , I added \ignorespaces on a new line between existing lines 358 and 359, and also commented out completely line 351 (\pdfrefobj \theTextObjNum%). Both of these were needed at the same time to remove the spacing problem. The first change should be fine to make permanently. The second one presumably removes some important functionality, and so can't be used in a fix for this bug. But it hopefully narrows down where the problem lies.
Added a tests directory. This used to contain some of the samples, but that feels optimistic. I've now implemented a few basic unit tests.
Change prompted by issue #30.
When using this v2.0.3 of this package with the
tagged
option, if a list item is ended by an equation, which is then followed by another list item, then too much vertical space is inserted between the equation and the following list item. I've made a minimal-ish example at https://archive.uea.ac.uk/~aqw10chu/files/access.tex with the pdflatex-generated output at https://archive.uea.ac.uk/~aqw10chu/files/access.pdfI've had a play around with the code in accessibility.sty, and the problem seems to be in the end part of the
PDFSpezialTextObj
environment. The closest I've been able to get fixing the issue is to add\ignorespaces
to the end of the environment's definition, and commenting out the\pdfrefobj \theTextObjNum%
line completely. This then fixes the spacing issue. But presumably that line is needed, and I couldn't find how to include it without messing up the spacing again.The text was updated successfully, but these errors were encountered: