如何定位较小的嵌套框,使其出现在右上角(请参见下图)?
这是我当前的错误实现:
\newcommand\TBox[3][]{%
\tikz\node[draw,ultra thick,text width=#2,align=left,#1] {#3};}
\TBox{14cm}{%
\TBox{10cm}{xxx \vspace{9cm}} \TBox{3cm} \\
}
答案 0 :(得分:1)
最好将所有框放在一个 import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
show = false;
log=[];
name = 'Angular';
toggle() {
this.show = !this.show;
this.log.push(this.log.length + 1);
}
bgColor() {
if(this.log.length >=5) {
return this.log.length
}
}
}
中,因为现在您要嵌套它们,这通常不是一个好主意。
要回到最初的问题,可以使用tikzpicture
使框顶部对齐:
baseline=(current bounding box.north)