Hey!
I am currently trying ti work with Lyx for my thesis, that are coming up this march. I am a crude beginner, so sorry for the questions, but since my english ist poor I could not find any help on the internet.
I want to change the caption of my pictures, that were inserted as float object. For example it know says "Abbildung 1:..." (its german, using the Koma script). But I want it to say: "Bild 1:...".
I am thankful for any help!
Greets
LyX ⇒ Changing the Caption of Pictures
NEW: TikZ book now 40% off at Amazon.com for a short time.
Changing the Caption of Pictures
Hi,
try this:
try this:
Code: Select all
\documentclass{scrartcl}
\usepackage[ngerman]{babel}
\addto\captionsngerman{%
\renewcommand\figurename{Bild}}
\begin{document}
\begin{figure}[!ht]
\centering
\rule{7cm}{4cm}
\caption{a test figure}
\label{fig:test}
\end{figure}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Changing the Caption of Pictures
Thank you very much my friend