Skip to content

Instantly share code, notes, and snippets.

View zr-tex8r's full-sized avatar
💭
🍣🦆⛄

Takayuki YATO zr-tex8r

💭
🍣🦆⛄
View GitHub Profile
@zr-tex8r
zr-tex8r / texadvent.md
Last active November 15, 2024 14:21
TeX & LaTeX Advent Calendar 実績

TeX & LaTeX Advent Calendar

「とっておきの TeX/LaTeX ネタを皆で持ち寄って楽しむ」 というコンセプトの技術系アドベントカレンダーです。

2012 年から始まっており、以降毎年開催されています。

最新のやつ

@zr-tex8r
zr-tex8r / bxbibwrite-README.md
Last active November 14, 2024 00:47
bxbibwrite:Typstで文献リストを直書きするやつ

bxbibwrite

Typst:文献リストを直書きするやつ

基本的な使い方

全項目importの形でパッケージを読み込む。

@zr-tex8r
zr-tex8r / ddsk.typ
Created June 11, 2023 04:26
Typst:ドドスコ(ラブ注入♡)する文書
#import "zrjasimple.typ"
#show: zrjasimple.doc.with(
title: "Typst でドドスコしてみた",
author: "某 ZR"
)
// ddsk(seed)は, 乱数種を seed としたときの
// "ドドスコ問題"の出力の文字列.
#let ddsk(seed) = {
@zr-tex8r
zr-tex8r / tcmathbold.sty
Created October 14, 2024 07:10
LaTeX: 太字数式(\boldmath)の太字(\mathbf)を極太ウェイトにする
%% This is file 'tcmathbold.sty'.
%% Copyright (c) 024 Takayuki YATO (aka. "ZR")
%% This package is distributed under the MIT License.
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{tcmathbold}[2024/10/10 v0.1]
% とりあえず, "極太"ウェイトの書体として
% "Crimson Pro Black"のフォントを借りることにする.
% Crimson Pro Black (立体) = OT1/CrimsonPro-TLF/ub/n
% Crimson Pro Black (斜体) = OT1/CrimsonPro-TLF/ub/it
@zr-tex8r
zr-tex8r / hello.tex
Last active September 20, 2024 04:09
LaTeX: Which kind of “LaTeX” am I using?
%%
%% This is file 'hello.tex'.
%%
%% Copyright (c) 2018-2023 Takayuki YATO (aka. "ZR")
%% GitHub: https://github.com/zr-tex8r
%% Twitter: @zr_tex8r
%%
%% This file is distributed under the MIT License.
%%
\documentclass[a4paper]{article}
@zr-tex8r
zr-tex8r / latex-emoji.lua
Last active August 29, 2024 09:55
Pandoc: To use color emoji font in convertion from Markdown to LaTeX
-- latex-emoji.lua
--
-- @copyright 2020 Takayuki YATO (aka. "ZR")
-- GitHub: https://github.com/zr-tex8r
-- Twitter: @zr_tex8r
-- This program is distributed under the MIT License.
--
local filter_name = 'latex-emoji'
---------------------------------------- helpers
@zr-tex8r
zr-tex8r / tcnicenumber.sty
Last active August 28, 2024 14:48
tcnicenumber: 素敵でかつ涼しそうなLaTeXのカウンタ出力命令🦆⛄
%%
%% This is file 'tcnicenumber.sty'.
%%
%% Copyright (c) 2024 Takayuki YATO (aka. "ZR")
%% GitHub: https://github.com/zr-tex8r
%% Twitter: @zr_tex8r
%%
%% This package is distributed under the MIT License.
%%
@zr-tex8r
zr-tex8r / ZRJCode.pm
Last active July 20, 2024 11:42
Perl: ZRJCode module: conversion between various Japanese kanji codes
# ZRJCode.pm
#
#### start package
package ZRJCode;
use strict qw( refs vars subs );
our $VERSION = 0.002_03;
our $mod_date = "2024/07/20";
require Exporter;
our @ISA = qw( Exporter );
@zr-tex8r
zr-tex8r / bxbango-README.md
Last active May 26, 2024 05:16
Typst:日本語用にnumberingを拡張したやつ

bxbango

Typst:日本語用にnumberingを拡張したやつ

Typstのnumbering関数の拡張版にあたるja-numbering関数を提供する。この関数は、標準のnumberingがサポートするカウンタスタイルに加えて、日本でよく使われる他のカウンタスタイル(例えば丸数字“①、②、③……”など)をサポートする。

同様の機能をもつ既存パッケージとして[numberingx][]があるが、numberingxが独自の書式文字列の文法を採用しているのに対して、本パッケージはnumbering関数の書式文字列の文法をそのまま踏襲している。すなわち、書式文字列内ではカウンタスタイルの部分は特定のUnicode文字1つ(例えば“①”)で表される。

@zr-tex8r
zr-tex8r / bxjaref-README.md
Last active May 26, 2024 05:16
bxjaref: Typstの参照の出力を日本語の習慣に合わせて調整する

bxjaref

Typst:参照の出力を日本語の習慣に合わせて調整する

基本的な使い方

全項目importの形でパッケージを読み込む。