I want to use a coloured box on a 2-column document but it keeps breaking the page and leaving a huge gap.
MWE:
%Document definitions
\documentclass[a4paper, twoside]{report}
\usepackage[left=1cm, right=1cm, top=1.25cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{xcolor}
%Maths Stuff
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{nccmath}
\usepackage{mathtools}
%Image handling
%Custom commands
\usepackage{tikz}
\usepackage{multicol}
\setlength{\columnsep}{1cm}
\pagestyle{empty}
% \pagestyle{fancy}
% \fancyhf{}
% \fancyhead[LE,RO]{Thermal \& Nuclear Physics}
% \chead{Henry T. Carr, Spring 2019}
% \fancyhead[RE,LO]{Exam Cheat Sheet}
%\fancyfoot[CE,CO]{\leftmark}
%\fancyfoot[LE,RO]{\thepage}
% \renewcommand{\headrulewidth}{2pt}
\renewcommand\thesection{\arabic{section}}
\numberwithin{equation}{section}
\usepackage{amsmath}
\usepackage{mathtools}
\newcommand{\dbar}{d\hspace*{-0.08em}\bar{}\hspace*{0.1em}}
\usepackage{mhchem,chemmacros}
\usepackage{sans}
\usepackage{tikz,lipsum,lmodern}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{multicols}{2}
%[
%==============================================================================================================================
%\chapter{Thermodynamics}
\section{\color{blue}Introduction}
\begin{tcolorbox}[colback=blue!5!white,colframe=blue!75!black,title=My title]
My box with my title.
\end{tcolorbox}
Throughout the 17th and 18th centuries , experimentation lead to the formulation of the following:
memes
%==============================================================================================================================
%==============================================================================================================================
%]
\end{multicols}
\end{document}



breakableoption in your tcolorbox? – Ignasi Apr 03 '22 at 20:51