Aurora:一个让你在word、PowerPoint、excel、visio等软件中使用LaTex的软件

Aurora

Aurora lets you use LaTeX in Microsoft® Word, PowerPoint®, Visio®, Excel®, and many other programs. It makes sure that your formulas look good, print prettily, and play nice with the rest of the text. Aurora takes care of the little things like numbering equations and positioning them on the page, and stays out of your way the rest of the time.

Here is what using Aurora looks like:

Screenshot of using Aurora

If you are a LaTeX veteran, Aurora will make you feel right at home. And even if you are not, Aurora's documentation, syntax highlighting, and preview features will have you TeX faster than write in no time.


Why Aurora is good for you

  • No more mouse-hunting for symbols—enter great-looking math quickly and efficiently using the standard language of scientific typesetting.
  • Express any scientific concept from mathematicscomputer science,chemistryengineering, and many other areas.
  • Full integration with Microsoft® Word, PowerPoint®Visio®, and Excel®.
  • Built-in LaTeX document converter.
  • Advanced support for equation numbering.
  • Works with any Windows application that has an “Insert Object...” function or lets you paste images.

Download

To see for yourself what Aurora has to offer, download the 30-day trial and give it a spin:

Download Aurora

Technical details

Aurora works with Microsoft Windows 2000, XP, and Vista. Microsoft Office integration requires Microsoft Office 2000 or above. It also helps to already have a working LaTeX installation; however, this is not required, since Aurora will automatically set you up with a micro version of MiKTeX if needed (an 11MB download).



from: http://elevatorlady.ca/
http://elevatorlady.ca/download.html




--------------------关于破解--------------------


Aurora是一款可以在Office中插入LaTeX公式的小软件。众所周知的是LaTeX输入公式的方式和显示效果都要比Office自带的公式编辑器好很多,而且也比MathType强,相关文章《可以在Word中插入LaTeX公式的软件——Aurora》。

注册机使用方法:
首先安装Aurora 2.x,然后下载注册机并运行,在文本框中随便输入点什么东西都行,然后点Register即可完成注册。然后再运行Aurora应该就不会再有需要注册的提示了。
需要注意的是输入的东西不要太长,而且不要输入中文,因为Aurora是基于Unicode的,而这个注册机不是Unicode的,所以输入中文会有问题。

下载地址

http://download.csdn.net/detail/studentalei/4600437


from: http://www.cnblogs.com/guolei/archive/2012/09/26/2704461.html


--------------------
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
当在Java项目使用LaTeX时,可以使用第三方库来实现。下面是一个示例,展示如何在Java项目使用LaTeX生成PDF文档: 1. 首先,确保项目已经引入了适当的依赖。一个常用的Java LaTeX库是 Apache FOP(Formatting Objects Processor),可以用于将XML和XSL-FO转换为PDF。 2. 创建一个包含LaTeX内容的文本文件,以`.tex`为扩展名。例如,创建一个名为`example.tex`的文件,并在其编写LaTeX代码,如下所示: ```tex \documentclass{article} \begin{document} Hello, \LaTeX! \end{document} ``` 3. 在Java代码使用Apache FOP库读取`.tex`文件,并将其转换为PDF。以下是一个简单的示例: ```java import java.io.File; import java.io.FileOutputStream; import org.apache.fop.apps.Fop; import org.apache.fop.apps.FopFactory; import org.apache.fop.apps.MimeConstants; public class LatexToPdfExample { public static void main(String[] args) throws Exception { // 设置输入和输出文件 File inputFile = new File("example.tex"); File outputFile = new File("output.pdf"); // 创建FopFactory对象 FopFactory fopFactory = FopFactory.newInstance(new File(".").toURI()); // 创建输出流 FileOutputStream outputStream = new FileOutputStream(outputFile); try { // 创建Fop对象 Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, outputStream); // 执行转换 fopFactory.newTransformer().transform(new javax.xml.transform.stream.StreamSource(inputFile), new javax.xml.transform.sax.SAXResult(fop.getDefaultHandler())); } finally { // 关闭输出流 outputStream.close(); } System.out.println("PDF生成成功!"); } } ``` 在上述示例,我们使用Apache FOP库的`FopFactory`类来设置转换参数,并使用`Fop`类将LaTeX内容转换为PDF。 请注意,此示例仅演示了在Java项目使用LaTeX生成PDF的基本过程。实际应用,您可能需要更复杂的LaTeX代码和更详细的配置来满足特定的需求。 希望这个示例能对您有所帮助!如果您有任何进一步的问题,请随时提问。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值