我用這個包創造了一個自己的環境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
不可能的 (but tabular
)。對此有什麼想法嗎?如果我在環境中使用數字,錯誤訊息loesung
是Float(s) lost
。
我正在寫一個較大的文檔,所以我多次遇到這個問題,這真的讓我很痛苦。我僅使用 解決了其他問題tabular
,但在這種情況下,我確實需要包含那裡的圖片。
多謝!
我附上了我的問題的屏幕截圖(我更改了文本,以便您可以更好地理解問題,文本的更改並不重要),我沒有帳戶,所以我必須給您屏幕截圖:
答案1
在\includegraphics
指令中,不要使用[scale=0.5]
;相反,使用[width=\textwidth]
.
另外,有兩個簡單的請求: 1. 在發布最小工作範例時,請消除所有拼字錯誤(參見\end{looesung}
:);請注意術語“最小工作範例”中的“工作”一詞。 2. 也請避免在 MWE 中載入並非說明和/或複製當前問題所必需的任何和所有套件。