asciidoctor / asciidoctor-pdf

:page_with_curl: Asciidoctor PDF: A native PDF converter for AsciiDoc based on Asciidoctor and Prawn, written entirely in Ruby.
https://docs.asciidoctor.org/pdf-converter/latest/
MIT License
1.14k stars 500 forks source link

Add support for temporarily breaking out of multi-column mode. #2475

Closed studio315b closed 7 months ago

studio315b commented 7 months ago

I have a wide diagram I want to insert into a page at full width, but setting pdf width to something greater than the column width does not cause the text in other columns to wrap around.

It would be really useful to have the ability to insert large images into documents that have multiple columns.

A special block tag would suffice in this situation for ease of implementation

Expected (Mocked up using LibreWriter): image

Actual: image

mojavelinux commented 7 months ago

This is not something that's reasonable to implement in Asciidoctor PDF and therefore not something I plan to add. It's requires detailed knowledge of the content and is therefore a bespoke layout, not something a generic converter can do.

If you need this kind of functionality, you will need to extend the converter and find some way to reserve space for the image, then come back to the page and place it.