如何修改类图中UML注释的默认字体大小?
/**
* @opt attributes
* @note How to modify font size of this text?
*/我尝试使用来自文献站点的所有文档化的fontsize选项,但它们都没有修改便笺文本字体大小。
/**
* @hidden
....
* @opt nodefontclasssize 22
* @opt nodefontsize 14
* @opt nodefonttagsize 14
* @opt nodefontpackagesize 14
* @opt edgefontsize 14
....
*/
class UMLOptions{}我正在使用UMLGraph-5.6
发布于 2017-04-14 13:50:04
将选项添加到名为UMLNoteOptions的类的注释中。请参见下面的示例和结果。
/**
* @hidden
* @opt nodefontsize 18
*/
class UMLNoteOptions{}
/**
* @opt attributes
* @note How to modify font size of this text?
*/
class Foo {}

https://stackoverflow.com/questions/43398596
复制相似问题