QTeXEngine

码农软件 · 软件分类 · 图形/图像处理 · 2019-09-09 10:42:58

软件介绍

QTeXEngine 是一个 QtiPlot 的扩展插件,用来将二维的图形转成 TeX 格式文档,所有通过 QtiPlot 的 QPainter 绘制的图形都可以通过它来导出,下面是一个例子:

void MyClass::exportTeX(const QString& fileName)
{
QTeXPaintDevice tex(fileName, QSize(500, 400));
QPainter paint.begin(&tex);
// ... perform your painting operations here ...
paint.end();
}

下图是一个实际的例子:

本文地址:https://www.codercto.com/soft/d/14207.html

Learning Web App Development

Learning Web App Development

Semmy Purewal / O'Reilly Media / 2014-3-3 / USD 29.99

Grasp the fundamentals of web application development by building a simple database-backed app from scratch, using HTML, JavaScript, and other open source tools. Through hands-on tutorials, this pract......一起来看看 《Learning Web App Development》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具