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

Latex linebreak within includegraphics doesn't (always) work #10659

Closed
lstngr opened this issue Mar 4, 2025 · 0 comments
Closed

Latex linebreak within includegraphics doesn't (always) work #10659

lstngr opened this issue Mar 4, 2025 · 0 comments

Comments

@lstngr
Copy link

lstngr commented Mar 4, 2025

I am experiencing an issue similar to #6114 on pandoc v3.6.3 (Lua 5.4) on Arch Linux,

$ pandoc -f latex -t native
\includegraphics[width=5cm]{abc.jpg}
^D
[ Para
    [ Image
        ( "" , [] , [ ( "width" , "5cm" ) ] )
        [ Str "image" ]
        ( "abc.jpg" , "" )
    ]
]


$ pandoc -f latex -t native  # from issue 6114, works as expected
\includegraphics[width=5cm]
{abc.jpg}
^D
[ Para
    [ Image
        ( "" , [] , [ ( "width" , "5cm" ) ] )
        [ Str "image" ]
        ( "abc.jpg" , "" )
    ]
]

$ pandoc -f latex -t native
\includegraphics[
width=5cm,
]{abc.jpg}
^D
Error at "source" (line 1, column 1):
unexpected Tok (line 1, column 1) (CtrlSeq "includegraphics") "\\includegraphics"
expecting end of input

$ pandoc -f latex -t native
\includegraphics[%
width=5cm,%
]{abc.jpg}
^D
Error at "source" (line 1, column 1):
unexpected Tok (line 1, column 1) (CtrlSeq "includegraphics") "\\includegraphics"
expecting end of input

# This does produce an output, but treats '%' signs as part of the filename rather than comments.
$ pandoc -f latex -t native
\includegraphics[width=5cm]{%
abc.jpg%
}
^D
[ Para
    [ Image
        ( "" , [] , [ ( "width" , "5cm" ) ] )
        [ Str "image" ]
        ( "%\nabc.jpg%\n" , "" )
    ]
]

Here's a minimal document in LaTeX showing that the syntax is valid

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=5cm]{example-image-a}

\includegraphics[
    width=5cm,
]{example-image-a}

\includegraphics[%
    width=5cm,%
]{example-image-a}

\includegraphics[width=5cm]{%
example-image-a%
}
\end{document}

In all afore-mentioned cases, I think the expected output should be

[ Para
    [ Image
        ( "" , [] , [ ( "width" , "5cm" ) ] )
        [ Str "image" ]
        ( "abc.jpg" , "" )
    ]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants