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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}