Graphics, Figures & Tables ⇒ Caption package: problem changing caption name in LyX
-
- Posts: 4
- Joined: Tue Sep 08, 2009 7:22 pm
Caption package: problem changing caption name in LyX
Thank you.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Caption package: problem changing caption name in LyX
-
- Posts: 4
- Joined: Tue Sep 08, 2009 7:22 pm
Re: Caption package: problem changing caption name in LyX
Caption package: problem changing caption name in LyX
This one is running fine here:
Code: Select all
\documentclass{article}
\usepackage{caption}
\begin{document}
\begin{figure}
\centering
A figure
\caption{A figure}
\end{figure}
\begin{figure}
\captionsetup{name=Diagram}
\centering
A diagram
\caption{A diagram}
\end{figure}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{caption}
\DeclareCaptionType[fileext=lod]{diagram}
\begin{document}
\begin{figure}
\centering
A figure
\caption{A figure}
\end{figure}
\begin{diagram}
\centering
A diagram
\caption{A diagram}
\end{diagram}
\end{document}
Axel