first time on StackExchange. I am trying to insert an image in a specific place using Lyx, but the options I need seem to be mutually exclusive. If I add a figure float with the image inside, and click to change the settings of the float, I can't choose "Span Columns" if I have chosen "Here definitely" in the placement options. This is a two-column Book (Standard class). In this situation the image is in the exact right spot, but the second column's text goes right through the image as if it wasn't even there.
If I select "Span Columns" I can't position the image where I wan't to, as "Here definitely" isn't an option I can select. In this case, no text flows through the image, but it is placed on the next page, which doesn't look right for the document.
Thanks for any advice you can give me.
I exported from Lyx and deleted what I thought was extraneous to create this mwe. I hope this is correct.
\documentclass[twocolumn]{book}
\usepackage[letterpaper]{geometry}
\geometry{verbose,tmargin=0.8in,bmargin=1in,lmargin=0.9in,rmargin=0.8in,columnsep=0.3in}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\chapter{The First Chapter}
\begin{figure*}
\includegraphics{exampleimage}
\end{figure*}
\lipsum[1-11]
\end{document}
hnorHcan be used. How would you expect them to work? two-column floats always appear on the earliest on the next page, but you can move it earlier in the source so it is set on the page that you need. – David Carlisle Jun 24 '18 at 12:04\chapterwithimage{}{}or something to specify the chapter title and image? If so, I think this should be possible because it should be possible to use an amended version of the\chaptermacro which will include the image along with the title. – cfr Jun 24 '18 at 13:35