3

Here's the problem. The list counter appears at the bottom of the image.enter image description here I'm simply trying to enumerate a list of images, no text is involved in the list.

How do I fix this to appear at the top-left side of the image like it's supposed to?

Foon
  • 193

2 Answers2

3

For a clean, LyX-like approach, add

\usepackage[export]{adjustbox}

to your preamble, and then insert the image with the LaTeX and LyX options valign=t:

enter image description here

The above approach avoids you having to use ERTs which may impede readability. While the input may show a different vertical alignment

enter image description here

the output provides the desired display

enter image description here

Werner
  • 603,163
2

The question was answered twice before here and here, but both times for latex. So I'm just writing the lyx edition.

I added \usepackage{adjustbox}to my preamble

and wrote (using the ERT) \adjustbox{valign=t}{before the image then a } after it to close the code. enter image description here

And it got me this result. enter image description here

Foon
  • 193