그래픽 포함 후 환경 너비가 잘못됨

그래픽 포함 후 환경 너비가 잘못됨

패키지 를 사용하여 자체 환경을 만들었습니다 mdframed. 내 문제는 자체 정의된 환경에 그림을 삽입하면 색상 상자의 너비가 잘못된다는 것입니다.

코드는 다음과 같습니다.

\documentclass{book}
\usepackage{geometry}

\geometry{left=4cm,right=3cm, top=2cm, bottom=2cm} 
\usepackage[ngerman]{babel}
\usepackage{mathptmx}
\usepackage{helvet}
\usepackage{wallpaper}
\usepackage[final]{pdfpages} 
\usepackage[colorlinks,linkcolor=black,bookmarksopen=false,
hypertexnames=TRUE,pdfpagelabels=true]{hyperref}[2011/02/05]

\usepackage{xcolor,bookmark}
\usepackage{scrextend}
\usepackage{titlepic}
\usepackage{shorttoc}
\usepackage{courier}
\usepackage{type1cm}         
\usepackage{zref-abspage}
\usepackage{makeidx}       
\usepackage{graphicx}        
\usepackage{multicol}        
\usepackage[bottom]{footmisc}
\usepackage{tocstyle}
\usetocstyle{allwithdot} 
\usepackage{thmbox}
\usepackage{shadethm}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{marginnote}
\usetocstyle{KOMAlike}
\usepackage{wrapfig}
\usepackage{paralist}
\usepackage{mdframed}
\makeindex  

\definecolor{shadethmcolor}{rgb}{.9,.9,.95}%
\definecolor{shadethmcolor2}{rgb}{1,.925,.545}%
\definecolor{aufgaben}{rgb}{0.9333,0.93333,0.933333}%
\definecolor{loesung}{rgb}{0.972,0.93725,0.85098}
\definecolor{textbeispiel}{rgb}{0.86666,0.78431,0.78431}  


\newtheoremstyle{mystyle}
  {\topsep}{\topsep}{}{}%
  {\bfseries}{:}{.5em}{}%

\newtheoremstyle{mystyle2}
  {\topsep}{\topsep}{}{}%
  {\bfseries}{}{.5em}{}%

\theoremstyle{mystyle}

\newmdtheoremenv[hidealllines=true,backgroundcolor=shadethmcolor,skipabove=\topsep,
skipbelow=\topsep]{beispiel}{Beispiel}

\newmdtheoremenv[hidealllines=true,
backgroundcolor=shadethmcolor2,skipabove=\topsep,
skipbelow=\topsep]{formel}{Formel}


\theoremstyle{mystyle2}

\newmdtheoremenv[hidealllines=true,
backgroundcolor=aufgaben,skipabove=\topsep,
skipbelow=\topsep]{aufgabe}{Aufgabe}


\newmdtheoremenv[hidealllines=true,
backgroundcolor=loesung,skipabove=\topsep,
skipbelow=\topsep]{loesung}{L\"osung}


\begin{document}
\begin{loesung}
\includegraphics[scale=0.5]{histloesungzeichnung.png}\\
c)\\
Here comes a lot of text which describes different things, but this complete area should have the same color background width as the solution below! : $\bar{x}=\frac{1}{99}(18*1.5+20*3.5+25*5+22*7+14*9)$
\end{loesung}
\begin{loesung}
here comes the next solution with the correct width of the color background box!
\end{looesung}
\end{document}

색상 상자의 너비를 동일하게 만들려면 어떻게 해야 합니까?

또한 일반적인 질문: 부동 소수점 숫자를 포함하려고 하면 작동하지 않습니다. 제가 보기에는 일반적으로 figure자체 정의된 환경에 부동소수점을 포함시키는 것이 가능하지 않은 것 같습니다 loesung. 또한 a는 table불가능합니다(그러나 tabular). 이것에 대한 아이디어가 있나요? 환경 에서 그림을 사용하는 경우 오류 메시지 loesung는 입니다 Float(s) lost.

나는 더 큰 문서에 글을 쓰고 있기 때문에 이 문제가 여러 번 발생했고 정말 마음이 찢어졌습니다. 을 사용하여 다른 문제를 해결했지만 tabular여기서는 그림이 꼭 포함되어야 합니다.

정말 감사합니다!

내 문제에 대한 스크린샷을 첨부했습니다(문제를 더 잘 이해할 수 있도록 텍스트를 변경했습니다. 텍스트 변경은 중요하지 않습니다). 계정이 없으므로 스크린샷을 제공해야 합니다.

http://tinypic.com/r/33wbhb6/6

답변1

지침 에서는 ; \includegraphics를 사용하지 마십시오 [scale=0.5]. 대신에 [width=\textwidth].

별도로 두 가지 겸손한 요청이 있습니다. 1. 최소한의 작업 예제를 게시할 때,제발모든 오타를 제거합니다(참조: \end{looesung}). "최소 작업 예"라는 용어에서 "작업 중"이라는 단어를 참고하세요. 2. 또한 당면한 문제를 설명 및/또는 복제하는 데 꼭 필요하지 않은 모든 패키지를 MWE에 로드하지 마십시오.

관련 정보