我正在使用该multicol
包创建一个三列公式表。我还使用该mdframed
包在不同颜色的框中写下定理、定义等。结果如下:
如您所见,出于某种原因,multicol
只是停止向页面添加内容并直接跳到下一页继续填充...您知道如何修复此问题吗?谢谢!
这是主文件(各个章节位于各自的文件中):
\documentclass{article}
\usepackage{indentfirst}
\usepackage{amssymb,amsmath,mathtools,bm,mathabx}
\usepackage{graphicx}
\usepackage{calc}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{eurosym}
\usepackage{wrapfig}
\usepackage[a4paper,margin=1mm,paperwidth=20.9cm,paperheight=29.5cm]{geometry}
\usepackage{tikz,tikzsymbols}
\usetikzlibrary{calc}
\usepackage{color,soul}
\usepackage{float}
\usepackage{parskip}
\usepackage{colortbl}
\usepackage{stackengine}
\usepackage{scalerel}
\usepackage{tcolorbox}
\usepackage{multicol}
\usepackage{tabularx}
\usepackage[inline]{enumitem}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{adjustbox}
\usepackage{sidecap}
\usepackage{enumitem}
%\usepackage{newclude}
\usepackage{hyperref}
\hypersetup{
% Something here
colorlinks=true,
linkcolor=blue
}
\usepackage{algorithm}
\usepackage{algpseudocode}
\input{page_style.tex}
\input{boxes.tex}
\input{newcommands.tex}
\input{tikz_styles.tex}
\begin{document}
\begin{multicols*}{3}
\tiny
\input{Proofs_and_Functions}
\input{Introduction_to_Algebra}
\input{Introduction_to_Analysis}
\input{Time_varying_linear_systems_Solutions}
\input{LTI_systems_solutions_and_tfs}
\input{Stability}
\input{Inner_product_spaces}
\input{Controllability_and_Observability}
\input{State_Feedback_and_Observer_Design}
\end{multicols*}
\end{document}