下载资源后端资源详情
typst-x86_64-pc-windows-msvc.zip
大小:13.98MB
价格:36积分
下载量:0
评分:
5.0
上传者:weixin_43838815
更新日期:2024-07-31

typst Windows 安装包

资源文件列表(大概)

文件名
大小
typst-x86_64-pc-windows-msvc/
-
typst-x86_64-pc-windows-msvc/LICENSE
9.67KB
typst-x86_64-pc-windows-msvc/NOTICE
62.68KB
typst-x86_64-pc-windows-msvc/README.md
10.62KB
typst-x86_64-pc-windows-msvc/typst.exe
32.32MB

资源内容介绍

typst Windows 安装包
<h1 align="center"> <img alt="Typst" src="https://user-images.githubusercontent.com/17899797/226108480-722b770e-6313-40d7-84f2-26bebb55a281.png"></h1><p align="center"> <a href="https://typst.app/docs/"> <img alt="Documentation" src="https://img.shields.io/website?down_message=offline&label=docs&up_color=007aff&up_message=online&url=https%3A%2F%2Ftypst.app%2Fdocs" /></a> <a href="https://typst.app/"> <img alt="Typst App" src="https://img.shields.io/website?down_message=offline&label=typst.app&up_color=239dad&up_message=online&url=https%3A%2F%2Ftypst.app" /></a> <a href="https://discord.gg/2uDybryKPe"> <img alt="Discord Server" src="https://img.shields.io/discord/1054443721975922748?color=5865F2&label=discord&labelColor=555" /></a> <a href="https://github.com/typst/typst/blob/main/LICENSE"> <img alt="Apache-2 License" src="https://img.shields.io/badge/license-Apache%202-brightgreen" /></a> <a href="https://typst.app/jobs/"> <img alt="Jobs at Typst" src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Ftypst.app%2Fassets%2Fdata%2Fshields.json&query=%24.jobs.text&label=jobs&color=%23A561FF&cacheSeconds=1800" /></a></p>Typst is a new markup-based typesetting system that is designed to be as powerfulas LaTeX while being much easier to learn and use. Typst has:- Built-in markup for the most common formatting tasks- Flexible functions for everything else- A tightly integrated scripting system- Math typesetting, bibliography management, and more- Fast compile times thanks to incremental compilation- Friendly error messages in case something goes wrongThis repository contains the Typst compiler and its CLI, which is everything youneed to compile Typst documents locally. For the best writing experience,consider signing up to our [collaborative online editor][app] for free. It iscurrently in public beta.## ExampleA [gentle introduction][tutorial] to Typst is available in our documentation.However, if you want to see the power of Typst encapsulated in one image, hereit is:<p align="center"> <img alt="Example" width="900" src="https://user-images.githubusercontent.com/17899797/228031796-ced0e452-fcee-4ae9-92da-b9287764ff25.png"/></p>Let's dissect what's going on:- We use _set rules_ to configure element properties like the size of pages or the numbering of headings. By setting the page height to `auto`, it scales to fit the content. Set rules accommodate the most common configurations. If you need full control, you can also use [show rules][show] to completely redefine the appearance of an element.- We insert a heading with the `= Heading` syntax. One equals sign creates a top level heading, two create a subheading and so on. Typst has more lightweight markup like this, see the [syntax] reference for a full list.- [Mathematical equations][math] are enclosed in dollar signs. By adding extra spaces around the contents of an equation, we can put it into a separate block. Multi-letter identifiers are interpreted as Typst definitions and functions unless put into quotes. This way, we don't need backslashes for things like `floor` and `sqrt`. And `phi.alt` applies the `alt` modifier to the `phi` to select a particular symbol variant.- Now, we get to some [scripting]. To input code into a Typst document, we can write a hash followed by an expression. We define two variables and a recursive function to compute the n-th fibonacci number. Then, we display the results in a center-aligned table. The table function takes its cells row-by-row. Therefore, we first pass the formulas `$F_1$` to `$F_8$` and then the computed fibonacci numbers. We apply the spreading operator (`..`) to both because they are arrays and we want to pass the arrays' items as individual arguments.<details> <summary>Text version of the code example.</summary> ```typst #set page(width: 10cm, height: auto) #set heading(numbering: "1.") = Fibonacci sequence The Fibonacci sequence is defined through the recurrence relation $F_n = F_(n-1) + F_(n-2)$. It can also be expressed in _closed form:_ $ F_n = round(1 / sqrt(5) phi.alt^n), quad phi.alt = (1 + sqrt(5)) / 2 $ #let count = 8 #let nums = range(1, count + 1) #let fib(n) = ( if n <= 2 { 1 } else { fib(n - 1) + fib(n - 2) } ) The first #count numbers of the sequence are: #align(center, table( columns: count, ..nums.map(n => $F_#n$), ..nums.map(n => str(fib(n))), )) ```</details>## InstallationTypst's CLI is available from different sources:- You can get sources and pre-built binaries for the latest release of Typst from the [releases page][releases]. Download the archive for your platform and place it in a directory that is in your `PATH`. To stay up to date with future releases, you can simply run `typst update`.- You can install Typst through different package managers. Note that the versions in the package managers might lag behind the latest release. - Linux: View [Typst on Repology][repology] - macOS: `brew install typst` - Windows: `winget install --id Typst.Typst`- If you have a [Rust][rust] toolchain installed, you can also install the latest development version with `cargo install --git https://github.com/typst/typst --locked typst-cli`. Note that this will be a "nightly" version that may be broken or not yet properly documented.- Nix users can use the `typst` package with `nix-shell -p typst` or build and run the bleeding edge version with `nix run github:typst/typst -- --version`.- Docker users can run a prebuilt image with `docker run -it ghcr.io/typst/typst:latest`.## UsageOnce you have installed Typst, you can use it like this:```sh# Creates `file.pdf` in working directory.typst compile file.typ# Creates PDF file at the desired path.typst compile path/to/source.typ path/to/output.pdf```You can also watch source files and automatically recompile on changes. This isfaster than compiling from scratch each time because Typst has incrementalcompilation.```sh# Watches source files and recompiles on changes.typst watch file.typ```Typst further allows you to add custom font paths for your project and list allof the fonts it discovered:```sh# Adds additional directories to search for fonts.typst compile --font-path path/to/fonts file.typ# Lists all of the discovered fonts in the system and the given directory.typst fonts --font-path path/to/fonts# Or via environment variable (Linux syntax).TYPST_FONT_PATHS=path/to/fonts typst fonts```For other CLI subcommands and options, see below:```sh# Prints available subcommands and options.typst help# Prints detailed usage of a subcommand.typst help watch```If you prefer an integrated IDE-like experience with autocompletion and instantpreview, you can also check out the [Typst web app][app], which is currently inpublic beta.## CommunityThe main place where the community gathers is our [Discord server][discord].Feel free to join there to ask questions, help out others, share cool thingsyou created with Typst, or just to chat.Aside from that there are a few places where you can find things built bythe community:- The official [package list](https://typst.app/docs/packages)- The [Awesome Typst](https://github.com/qjcg/awesome-typst) repositoryIf you had a bad experience in our community, please [reach out to us][contact].## ContributingWe would love to see contributions from the community. If you experience bugs,feel free to open an issue. If you would like to implement a new feature or bugfix, please follow the steps outlined in the [contribution guide][contributing].To build Typst yourself, first ensure that you have the[latest stable

用户评论 (0)

发表评论

captcha

相关资源

vm的远程登录软件SecureCRTPortable和MobaXterm-Personal

打开压缩包第一个目录下MobaXterm_Personal_23.2.exe是一个远程登录软件,打开03.SecureCRTSecureFX目录,此目录下SecureCRTPortable.exe是另一个登录软件。在用MobaXterm_Personal时,点击左上角的session中的ssh输入ip地址和名字即可连接设备;在用SecureCRTPortable时点击左上角第二个快速连接,点击协议ssh输入ip和用户名即可连接

64.19MB49积分

迈德威视SDK同时驱动4个工业相机实时视频采集及显示

通过MDVS-SDK,分别注册4个回调函数,实现4个工业RGB相机同时视频采集及显示,代码基于Qt 5.12和Opencv3开发。其中显示部分只完成一个相机的实时显示。

11.05KB25积分

spark课程设计任务

对数据文件data.csv在根据课程设计要求在IDEA中编写Spark程序并打包成jar包,并且将数据文件data.csv上传到HDFS中,提交jar包到Spark集群中运行。data.csv里面包含餐厅数据,可以用记事本打开查看,主要包含以下13个字段,字段之间由逗号分隔:"所属年月","商家名称","主营类型","店铺URL","特色菜","累计评论数","累计销售人次","店铺评分","本月销量","本月销售额","城市","商家地址","电话"课程设计要求完成以下任务,在IDEA中创建Maven项目,提供pom.xml文件给大家,完成以下任务。一、将data.csv文件上传到hdfs的/cateringdata/目录下。二、编写Spark程序,实现以下功能,并且将程序打包为jar包1.去掉"本月销量","本月销售额"(第8列和第9列)的数据异常(数据为空字符串或者null或者为0),并且统计去掉了多少条;这一步清洗获得的数据要以逗号分割,存到hdfs的/foodsparktask1目录下;2.去掉"店铺评分"数据为null的数据,并统计去掉了多少条;3.去掉"店

21MB10积分

windows11编译安装pysqlcipher3

windows11编译安装pysqlcipher3

152.5KB36积分