to. 4. mai 2006 08:44 skreiv Theo: > Hi, > i know this has been asked a thousand times and i've read many threads, but > stil can't get it to work: > > i want to import images into lyx. > - i have to use "insert figure float" first > - insert into that box "insert graphics", right? > - i dont want the image to float and i dont want the title ("Figure#") to > be centered. it should be left aligned. > > - how do i make a image description? > > do i just write below the image with "Standard" selected? > > thanx for your help. > > theo
Hi These are contoled by the LaTeX styles. You may want to find a style that are better for you or you may override the style by using LaTeX as described below. from: http://tug.org/TeXnik/mainFAQ.cgi?file=floats/caption Captions apart from Floats If you need your floats on own pages only with a caption like "Figure #" and additionally a list of corresponding captions, try the following (needs endfloat.sty): write in preamble: \usepackage{endfloat} \let\Caption\caption \renewcommand\caption[1]{% \Caption[#1]{}% } and insert your listoffigures in your text as usual. With this trick you can not use the short caption option like \caption[short for toc]{long for caption} and Left aligned Captions Write in preamble: \makeatletter [EMAIL PROTECTED] \vskip\abovecaptionskip [EMAIL PROTECTED]: #2}% \ifdim [EMAIL PROTECTED] >\hsize #1: #2\par \else \global [EMAIL PROTECTED] [EMAIL PROTECTED]@[EMAIL PROTECTED] \fi \vskip\belowcaptionskip} \makeatother Ingar