LyX ⇒ Changing the Caption of Pictures
Changing the Caption of Pictures
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
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
Changing the Caption of Pictures
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}