使用几何包的 mdframed 中没有换行符

使用几何包的 mdframed 中没有换行符

我正在尝试将 Python 代码(在彩色mdframed框内)包含到我的 tex 文件中。但是,我注意到当我使用几何学同时包装框架花式高清,会发生两件事:

1) mdframed 框内的自动换行不再起作用 2) 顶部和底部边距设置为大约 1cm 的值(无论我设置什么值)

当我删除几何学包,换行有效,但(默认)边距再次太大。

这是我的代码:

\documentclass[12pt, a4paper, titlepage]{article}

\usepackage[dvipsnames]{xcolor}
\usepackage[ngerman]{babel}

\usepackage[margin=2.54cm]{geometry}
\usepackage{fancyhdr}
\usepackage{mdframed}

\pagestyle{fancy}

\newcommand{\gbx}[1]{
\begin{mdframed}[backgroundcolor=black!20, leftmargin=0, rightmargin=0, innertopmargin=10pt, innerbottommargin=10pt, topline=false, bottomline=false, rightline=false, leftline=false]
#1
\end{mdframed}
}

\begin{document}

\gbx{\texttt{import numpy as np\\
import matplotlib.pyplot as plt\\\\
verteilung = np.random.normal(0., 1., 1000000)\\
bins = len(verteilung)/15000\\\\
fig = plt.figure()\\
ax = fig.add\_subplot(111)\\
plt.hist(verteilung, bins = bins, normed = 1, color = 'blue', label = 'Zufallswerte')\\
plt.xlabel('Wert')\\
plt.ylabel('Anzahl')\\
ax.annotate('Maximum', xy = (0, 0.4), xytext = (-0.75, 0.42))\\
plt.legend()\\
plt.grid()\\
plt.savefig('histo.svg', format='svg', dpi=1000)\\
plt.show()
}}

\end{document}

现在有人有解决方案吗?如何才能获得自动换行和 2.54 厘米的边距(使用时fancyhdr)?

多谢!

附言:任意尺寸包(用于设置边距)产生相同的输出。

相关内容