我想做这个(在“S”处) 但我不知道如何在不使其成为新字段并因此产生新边框的情况下做到这一点,我的代码如下所示:
\documentclass[a4paper,12p]{scrartcl}
\usepackage{array}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{arrows.meta, automata, backgrounds, positioning, fit,petri}
\setlength\parindent{0pt}
\usepackage{xcolor}
\colorlet{temp}{blue}
\title{Hausaufgabe 22, CYK-Algorithmus}
\date{\today}
\begin{document}
\maketitle
\section*{Nr. 2}
\subsection*{a)}
\subsubsection*{abcabcca}
\[
\setlength\extrarowheight{2pt}
\begin{array}{|*{8}{c|}}
\cline{1-8}
{\color{temp} a} & {\color{temp} b} & {\color{temp} c} & {\color{temp} a} & {\color{temp} b} & {\color{temp} c} & {\color{temp} c} & {\color{temp} a} \\
\cline{1-8}
A & B/Y/X & C & A & B/Y/X & C & C & A \\
\cline{1-8}
V & Y/X & - & V & Y/X & Y/X & - \\
\cline{1-7}
V & W & - & V & X/Y & W \\
\cline{1-6}
- & - & - & V/X/Y/ & W \\
\cline{1-5}
- & - & - & W \\
\cline{1-4}
- & X/Y & - \\
\cline{1-3}
V & - \\
\cline{1-2}
S \\
\cline{1-1}
\end{array}
\]
\end{document}
我尝试了一种解决方法,用 \cellcolor \rowcolor 和 \Block[draw, fill = blue!15, rounded-corners] 填充该字段,然后将其写入下面,但甚至颜色都不起作用
答案1
\mathrlap
从包装中使用怎么样mathtools
?
这样做的原因是,里面的内容\mathrlap{}
不被认为有宽度(右边的重叠),所以表格不会受到影响。
PS
mathtools
自动加载amsmath
。
编辑:要用 突出显示单元格\cellcolor{}
,您需要加载“colortbl”。
\documentclass[a4paper,12p]{scrartcl}
\usepackage{array}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage{mathtools} % <- replace amsmath
\usepackage{amssymb}
\usepackage{colortbl} % <- use this
\setlength\parindent{0pt}
\usepackage{xcolor}
\colorlet{temp}{blue}
\title{Hausaufgabe 22, CYK-Algorithmus}
\date{\today}
\begin{document}
\maketitle
\section*{Nr. 2}
\subsection*{a)}
\subsubsection*{abcabcca}
\[
\setlength\extrarowheight{2pt}
\begin{array}{|*{8}{c|}}
\cline{1-8}
{\color{temp} a} & {\color{temp} b} & {\color{temp} c} & {\color{temp} a} & {\color{temp} b} & {\color{temp} c} & {\color{temp} c} & {\color{temp} a} \\
\cline{1-8}
A & B/Y/X & C & A & B/Y/X & C & C & A \\
\cline{1-8}
V & Y/X & - & V & Y/X & Y/X & - \\
\cline{1-7}
V & W & - & V & X/Y & W \\
\cline{1-6}
- & - & - & V/X/Y/ & W \\
\cline{1-5}
- & - & - & W \\
\cline{1-4}
- & X/Y & - \\
\cline{1-3}
V & - \\
\cline{1-2}
\cellcolor{green} S \mathrlap{\quad\Rightarrow abcabcca\in L(g'')} \\
\cline{1-1}
\end{array}
\]
\end{document}