如何将空单元格与填充单元格对齐以获取数据结构数组?

时间:2017-09-13 00:01:38

标签: latex

我正在尝试将填充单元格的空单元格排列成数据结构中的数组。请帮忙!!这是我到目前为止的代码:

$scope.description = "{{productName}} is a great product and also has
awesome {{additionalInfo}}. These are some more example words, blah 
blah..".replace(/{{(.*?)}}/g,
function(item,a){ var getter = $parse(a); return getter($scope); });

它看起来像这样:The boxes did not line up 1

我想排队,我该怎么办?

2 个答案:

答案 0 :(得分:0)

您是否尝试过解析0以获取4-7个单元格以查看是否存在值? 为了缓解我会建议解析一些东西..最好是null或''如果你想把盒子留空。

答案 1 :(得分:0)

我首先建议您在tex.stackexchange.com上发布有关LaTeX的问题。

解决您的问题非常简单!您在anchor=center中丢失了nodes={...}

Output

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix,backgrounds}

\begin{document}
\begin{tikzpicture}
\matrix (m) [matrix of nodes,
             nodes={draw, minimum size=8mm,anchor=center},
             nodes in empty cells, minimum height = 1cm,
             row 1/.style={nodes={draw=none}},]
{
  0 & 1 & 2 & 3 & 4 & 5 & 6 & 7  \\
  2 & 4 & 4 & 5 &   &   &   &  & \\
};
\end{tikzpicture}
\end{document}