I'd like to remove the standard text "Figure x.x" from captions inside floats.
Minimal example:
Code: Select all
\documentclass[a5paper,oneside]{book}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text,Numbers=OldStyle]{Junicode}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{float}
\usepackage{graphicx}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\pdfpageheight\paperheight
\pdfpagewidth\paperwidth
\newcommand{\noun}[1]{\textsc{#1}}
\@ifundefined{date}{}{\date{}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{xunicode}
\begin{document}
\chapter{}
\begin{figure}[H]
\begin{centering}
\caption{Caption}
\par\end{centering}
\end{figure}
\end{document}