Can anyone point me in a direction of things to try? I am using the report style that comes with Lyx 2.0.1 Running Windows xp.
Below is some code I've copied in case that helps... I am not a genius at code, which is why I am using Lyx

Its a real bother to go back through the text and manual type in the .1 after each "see figure \ref{morph_computation_person}" I know there has to be a better way, but I haven't found it.
there is the code:
Code: Select all
% Preview source code
%% LyX 2.0.1 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{report}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{graphicx}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
%% A simple dot to overcome graphicx limitations
\newcommand{\lyxdot}{.}
\makeatother
\usepackage{babel}
\begin{document}
\chapter{test}
see figure \ref{morph_computation_person}. blah blah blah
\label{morph_computation_person}
\begin{figure}[h]
\caption{Morophological Computation}
\includegraphics[width=1\textwidth]{\lyxdot \lyxdot /\lyxdot \lyxdot /FIGURES/morphological_computation_slide}
\end{figure}
\end{document}