如何写出这种欧几里得算法的格式

如何写出这种欧几里得算法的格式

在此处输入图片描述

如何写出这种欧几里得算法的格式

答案1

你可以采取的众多方法之一是:

\documentclass[a4paper,12pt]{report}
\usepackage{amsmath}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
            \node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
\definecolor{blue}{rgb}{0, 0, 1}
\definecolor{orange}{rgb}{0.937, 0.568, 0}
\begin{document}
\begin{equation}
\begin{aligned}
52 & : & \color{blue}{36} & = &  1 &     &   &   &   & \: \: \: \: \: \:  \: \: \: \: \: \: \text{remainder} \left( {\color{orange}{16}} \right) \\
   &   & \color{blue}{36} & : & \color{orange}{16} & =   & 1 &   &   & \: \: \: \: \: \:  \: \: \: \: \: \: \: \: \text{remainder} \left( {\color{blue}{4}} \right)\\
   &   &    &   & \color{orange}{16} & : & \color{blue}{\text{\circled{4}}} & = & 4 & \: \: \: \: \: \:  \: \: \: \: \: \: \: \:  \text{remainder} \left( {\text{\textbf{0}}} \right)\\
\end{aligned}
\end{equation}
\end{document}

在此处输入图片描述

相关内容