Embedding images

yWriter doesn't support image embedding directly into scenes, but you can embed HTML and LaTeX code which will then include images in your exported file.

For example, to embed an image in the current scene, just include this code and the precise point where you want the image:

(For HTML export:)

<HTM <img src="HalJnrFace.png" /> /HTM>

To adjust the size of the image, you need to resample the image itself. For HTML export the image must be saved to the same folder as your HTML export file, else the file won't be able to locate the image.

For LaTeX export:

<TEX \begin{center}

\includegraphics[width=3.0in]{ESection.png}

\end{center} /TEX>

(Adjust the 'width' parameter until the image is the right size).

Remember you can include any HTML and LaTeX code between these tags, and it will be saved to the relevant export file as-is. Note that you must include a space after the opening tag ("<TEX ", and not "<TEX") and another before the closing tag (" /TEX>" and not "/TEX>")