Giter VIP home page Giter VIP logo

rubby's Introduction

rubby (Typst package)

Usage

#import "@preview/rubby:0.10.1": get-ruby

#let ruby = get-ruby(
  size: 0.5em,         // Ruby font size
  dy: 0pt,             // Vertical offset of the ruby
  pos: top,            // Ruby position (top or bottom)
  alignment: "center", // Ruby alignment ("center", "start", "between", "around")
  delimiter: "|",      // The delimiter between words
  auto-spacing: true,  // Automatically add necessary space around words
)

// Ruby goes first, base text - second.
#ruby[ふりがな][振り仮名]

Treat each kanji as a separate word:
#ruby[とう|きょう|こう|ぎょう|だい|がく][東|京|工|業|大|学]

If you don't want automatically wrap text with delimiter:

#let ruby = get-ruby(auto-spacing: false)

See also https://github.com/rinmyo/ruby-typ/blob/main/manual.pdf and example.typ.

Notes

Original project is at https://github.com/rinmyo/ruby-typ which itself is based on the post of 齊藤敦志 (Saito Atsushi). This project is a modified version of this commit.

auto-spacing adds missing delimiter around the content/string which then adds space around base text if ruby is wider than the base text.

Problems appear only if ruby is wider than its base text and auto-spacing is not set to true (default is true).

You can always use a one-letter function (variable) name to shorten the function call length (if you have to use it a lot), e.g., #let r = get-ruby() (or f — short for furigana). But be careful as there are functions with names v and h and there could be a new built-in function with a name r or f which may break your document (Typst right now is in beta, so breaking changes are possible).

Although you can open issues or send PRs, I won't be able to always reply quickly (sometimes I'm very busy).

Development

This repository should exist as a @local package with the version from the typst.toml.

Here is a short description of the development process:

  1. run git checkout dev && git pull;
  2. make changes;
  3. test changes, if not done or something isn't working then go to step 1;
  4. when finished, run just change-version <new semantic version>;
  5. document changes in the CHANGELOG.md;
  6. commit all changes (only locally);
  7. create a @local Typst package with the new version and test it;
  8. if everything is working then run git push;
  9. realize that you've missed something and fix it (then push changes again);
  10. run git checkout master && git merge dev to sync master to dev;
  11. run just create-release.

Publishing a Typst package

  1. To make a new package version for merging into typst/packages repository run just mark-PR-version;
  2. copy newly created directory (with a version name) and place it in the appropriate place in your fork of the typst/packages repository;
  3. run git checkout main && git fetch upstream && git merge upstream/main to sync fork with typst/packages;
  4. go to a new branch with git checkout -b <package-version>;
  5. commit newly added directory with commit message: package:version;
  6. run gh pr create and follow further CLI instructions.
justfile snippet
sync:
  git checkout main
  git fetch upstream
  git merge upstream/main

pr:
  gh pr create --no-maintainer-edit

Changelog

You can view the change log in the CHANGELOG.md file in the root of the project.

License

This Typst package is licensed under AGPL v3.0. You can view the license in the LICENSE file in the root of the project or at https://www.gnu.org/licenses/agpl-3.0.txt. There is also a NOTICE file for 3rd party copyright notices.

Copyright (C) 2023 Andrew Voynov

rubby's People

Contributors

andrew15-5 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.