Latex中小括號的問題

Latex中小括號的問題

我的 LaTeX 腳本有問題。我用最大的括號、方括號、榮譽來寫作,但我總是得到太小的括號。

在這個例子中,

\documentclass[11pt]{article} 
\usepackage{etex} 
\RequirePackage{amsthm, amsmath, amsfonts, amssymb} 
\usepackage{oz} 
\begin{document} 
\[ \Bigg\{ A + B = C\Bigg\} \] 
\end{document} 

使用該包oz我得到小分隔符號。我使用該包oz來獲取兩個集合的串聯符號。

答案1

amsmath這似乎是由和之間的衝突引起的oz。一種解決方案是oz先載入。然後需要進行一些黑客攻擊才能使這兩個包很好地協同工作。

\documentclass[11pt]{article}

\makeatletter
\let\latex@dot\dot
\usepackage{oz}
\let\oz@implies\implies
\let\oz@mod\mod
\let\oz@dot\dot
\let\implies\relax
\let\mod\relax
\let\dot\latex@dot
\usepackage{amsmath}
\let\implies\oz@implies
\let\mod\oz@mod
\let\dot\oz@dot
\makeatother

\begin{document}
\[ \Bigg\{ A + B = C\Bigg\} \]
\end{document}

大括號

相關內容