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
produces the following nodelist in version 2.10 on Windows
[
LatexCharsNode(parsing_state=<parsing state 2270821596560>, pos=0, len=5, chars='chair'),
LatexMacroNode(
parsing_state=<parsing state 2270821596560>,
pos=5,
len=2,
macroname='\n',
nodeargd=ParsedMacroArgs(
argspec='',
argnlist=[]
),
macro_post_space=''
),
LatexCharsNode(parsing_state=<parsing state 2270821596560>, pos=7, len=5, chars='table')
]
whereas I would expect the LatexMacroNode to have macroname=' ' and the following LatexCharsNode to have chars='\ntable'. Indeed, pdflatex produces "chair table" from the above snippet.
The text was updated successfully, but these errors were encountered:
The LaTeX snippet
produces the following nodelist in version 2.10 on Windows
whereas I would expect the
LatexMacroNode
to havemacroname=' '
and the followingLatexCharsNode
to havechars='\ntable'
. Indeed, pdflatex produces "chair table" from the above snippet.The text was updated successfully, but these errors were encountered: