includegraphics 后环境宽度错误

includegraphics 后环境宽度错误

我用这个包创建了一个自己的环境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。此外,也table不可能(但tabular)。对此有什么想法吗?如果我在环境中使用图形,错误消息loesungFloat(s) lost

我正在一个较大的文档上书写,因此我多次遇到这个问题,这真的让我很头疼。我使用 解决了其他问题tabular,但在这种情况下,我真的需要包含那里的图片。

多谢!

我附上了问题的截图(我改变了文本,以便你能够更好地理解问题,改变文本并不重要),我没有账户所以我必须给你截图:

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

答案1

\includegraphics指令中,不要使用[scale=0.5];,而是使用[width=\textwidth]

另外,有两个谦虚的请求:1. 在发布最小工作示例时,消除所有拼写错误(参见:)\end{looesung};请注意“最小工作示例”中的“工作”一词。2. 还请避免加载 MWE 中任何和所有不是严格需要说明和/或复制当前问题的包。

相关内容