I've attached a small org file that reproduces my problem with getting
images to export to pdf. I've also attached the resulting .tex file.
I think my issue may have something to do with my misunderstanding of
inline tasks, since if I put my org code for inclusion of the image
elsewhere in the org file, under its own 2nd level heading (2 stars)
then it exports fine. The narrative text in the attached org file
explains my observations in more detail.
Thanks.
--Chris Ryan
Nick Dokos wrote:
suvayu ali<fatkasuvayu+li...@gmail.com> wrote:
On Mon, Mar 19, 2012 at 20:53, Nick Dokos<nicholas.do...@hp.com> wrote:
[[./DataLoggerImage.jpg]]
The figure does not appear in the resulting pdf. Any advice as to what
I am doing wrong?
Can you post your org file and the tex file that's produced on export?
Is the above correct syntax? Shouldn't it be as shown below?
[[file:./DataLoggerImage.jpg]]
I had the same reaction at first, but I tried it and the pdf export went
through without a hitch in either case. I'm not sure whether that's intended
behavior or an accident though.
Nick
#+OPTIONS: todo:nil toc:nil tags:nil
#+LATEX_HEADER: \usepackage[margin=1in]{geometry}
#+LATEX_HEADER: \usepackage{graphicx}
* I guess I don't understand enough about Org's hierarchical trees yet
** Study design
Here's what we'll do.
As patients of home care agencies, the subjects will all be considered
homebound by definition. Subjects with cognitive impairment or psychiatric
illness sufficiently severe to make them unable to consent to the study will
not be eligible.
****** TODO notice how "end" on next line is expandable
****** END
Somehow this text is under, hierarchically-speaking, the END statement of this
inline task.
So it does not show up in the final pdf
****** TODO there is text >>and the image file<< inside "end"
****** END
Neither does this paragraph.
Neither does this image, which must also be under the END statement of the
inline task
#+CAPTION: Temperature and humidity data logger
#+LABEL: datalogger
[[./DataLoggerImage.jpg]]
** But if I start a new 2-star heading
and put the image here, it works fine.
#+CAPTION: Temperature and humidity data logger
#+LABEL: datalogger
[[./DataLoggerImage.jpg]]
% Created 2012-03-20 Tue 00:04
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\providecommand{\alert}[1]{\textbf{#1}}
\title{WhereIsImage}
\author{Chris Ryan}
\date{\today}
\begin{document}
\maketitle
\section{I guess I don't understand enough about Org's hierarchical trees yet}
\label{sec-1}
\subsection{Study design}
\label{sec-1-1}
Here's what we'll do.
As patients of home care agencies, the subjects will all be considered homebound by definition. Subjects with cognitive impairment or psychiatric illness sufficiently severe to make them unable to consent to the study will not be eligible.
\subsection{But if I start a new 2-star heading}
\label{sec-1-2}
and put the image here, it works fine.
\begin{figure}[htb]
\centering
\includegraphics[width=10em]{./DataLoggerImage.jpg}
\caption{\label{datalogger}Temperature and humidity data logger}
\end{figure}
\end{document}