Graphics, Figures & Tables"figurefigure"-output

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Pawelbure
Posts: 2
Joined: Tue Nov 25, 2014 2:13 pm

"figurefigure"-output

Post by Pawelbure »

Hi, LaTeX puts "figurefigure" before each \input item (svg-Graphics) in the figure-environment in the pdf output file. Documentclass is "beamer". Anyone encountered this problem before or has a clou? The LaTeX-file is attached. Looking forward to suggestions! thx

Code: Select all

\documentclass{beamer}

\usepackage[ngerman]{babel}
\usepackage[german]{babel}
\usepackage[babel,german=quotes]{csquotes}
\usepackage{array}
\usepackage{lscape}
\usepackage{eurosans,booktabs}
\usepackage{colortbl}
\usepackage[latin1]{inputenc}
\usepackage{fancyhdr}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage[singlespacing]{setspace}
\usepackage{hyperref}
\usepackage[all]{hypcap}
\usepackage{amsfonts}
\usepackage{longtable}
\usepackage{geometry}
\usepackage{svg}
%\usepackage[pdftex]{graphics}
\usepackage{mathrsfs}
\usepackage{picins}
\usepackage{graphicx}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{verbatim}
\usepackage{pdfpages} 
\usepackage{subfigure}
\usepackage{sidecap}
\usepackage{color}
\usepackage{cite}
\usepackage[font=footnotesize,labelfont=bf,justification=justified,format=plain]{caption}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\usetheme{CambridgeUS}
\usecolortheme{crane}
%\definecolor{yellow}{yellow}{255,0,0}
\title[Das elektische Feld] %optional
{Elektrizitätslehre}
\subtitle{} 
\date[1. Semester, 2014/15] % (optional)

\begin{document}
\section{Grundlagen}
\subsection{Aufbau der Atome}
\begin{frame}
\begin{itemize}
\item Atome bestehen ... 
\end{itemize}
\begin{figure}
\resizebox{3.3cm}{!}{\input{Atom.pdf_tex}}
\caption{einfachstes Modell des Atoms.}
\end{figure}
\end{frame}

\end{document}
Attachments
präsi.tex
(1.52 KiB) Downloaded 226 times
Last edited by Johannes_B on Tue Nov 25, 2014 3:46 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

"figurefigure"-output

Post by Johannes_B »

Hi and welcome,

I get a whole bunch of errors and warnings running your code. Most of it looks like you should read something about templates (Minimale Vorlage vs. maximale Probleme).
Package subfigure is obsolete for about 10 years now. There are other packages that should not be used with beamer or are non functioinal with biber.

I recomennd to get a fresh start. You will not that package hypcap places the words where they are. You can find that out by doing the standard procedure: creating a minimal working example (Erstellen eines Minimalbeispiels).
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Pawelbure
Posts: 2
Joined: Tue Nov 25, 2014 2:13 pm

Re: "figurefigure"-output

Post by Pawelbure »

Thanks for the quick reply and advice!!
Post Reply