Skip to content

A small Typst package for quick and easy in-document word counts.

License

Notifications You must be signed in to change notification settings

Jollywatt/typst-wordometer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wordometer

Manual Version Repo

A small Typst package for quick and easy in-document word counts.

Basic usage

#import "@preview/wordometer:0.1.3": word-count, total-words

#show: word-count

In this document, there are #total-words words all up.

#word-count(total => [
  The number of words in this block is #total.words
  and there are #total.characters letters.
])

Excluding elements

You can exclude elements by name (e.g., "caption"), function (e.g., figure.caption), where-selector (e.g., raw.where(block: true)), or label (e.g., <no-wc>).

#show: word-count.with(exclude: (heading.where(level: 1), strike))

= This Heading Doesn't Count
== But I do!

In this document #strike[(excluding me)], there are #total-words words all up.

#word-count(total => [
  You can exclude elements by label, too.
  #[That was #total.words, excluding this sentence!] <no-wc>
], exclude: <no-wc>)

Changelog

v0.1.4

  • Fix deprecated use of locate() for Typst >=0.12.0

v0.1.3

(No changes 🤡)

v0.1.2

  • Fix bugs when using labels and where-selectors to exclude elements

v0.1.1

  • Allow excluding elements by passing their element functions
  • Add basic element.where(..) selectors
  • Fix crash for figures without captions

v0.1.0

  • Initial version

About

A small Typst package for quick and easy in-document word counts.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages