我想删除彩色框周围的黑色边框。我该怎么做?同时更改框的长度和宽度
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amsthm,amssymb,amsfonts, fancyhdr, color, comment, graphicx, environ}
\usepackage{xcolor}
\usepackage{mdframed}
\begin{mdframed}[backgroundcolor=blue!20]
text here.
\end{mdframed}
答案1
假设页面背景是白色,你需要做的就是添加选项
linecolor=white
传递给环境的选项列表mdframed
:
\begin{mdframed}[backgroundcolor=blue!20,linecolor=white]
答案2
mdframed
可以选择hidealllines
隐藏所有线条。
该功能在手册中有详细记录。
\documentclass{article}
\usepackage{xcolor}
\usepackage{mdframed}
\begin{document}
\begin{mdframed}[backgroundcolor=blue!20, hidealllines=true]
text here.
\end{mdframed}
\end{document}