From 83ac9b17a3690cc8453b3bdb70fd9c758f51da71 Mon Sep 17 00:00:00 2001 From: Rocky Zhang Date: Wed, 10 Jan 2024 21:43:07 +0800 Subject: [PATCH 1/5] docs: \makeatletter and \makeatother should match (#1305) Co-authored-by: Rocky Zhang --- doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex b/doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex index 0128ec2af..243c1bf73 100644 --- a/doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex +++ b/doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex @@ -663,6 +663,7 @@ \subsubsection{Defining New Coordinate Systems} \define@key{cylindricalkeys}{angle}{\def\myangle{#1}} \define@key{cylindricalkeys}{radius}{\def\myradius{#1}} \define@key{cylindricalkeys}{z}{\def\myz{#1}} +\makeatother \tikzdeclarecoordinatesystem{cylindrical}% {% \setkeys{cylindricalkeys}{#1}% From dd0e2538b43bfb983c59731b71245ec11f839af9 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Wed, 10 Jan 2024 21:47:10 +0800 Subject: [PATCH 2/5] chore(docs): add new contributor Signed-off-by: Yukai Chou --- doc/generic/pgf/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/generic/pgf/CHANGELOG.md b/doc/generic/pgf/CHANGELOG.md index 4ee4c2de0..d27a1ab42 100644 --- a/doc/generic/pgf/CHANGELOG.md +++ b/doc/generic/pgf/CHANGELOG.md @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Matthias Hetzenberger - Qrrbrbirlbel - quark67 +- Rocky Zhang (@rockyzhz) - Yukai Chou (@muzimuzhi) - Alexander Grahn From ed5d70b658391c69321849d1f5bafbb6d0f78acd Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Mon, 15 Jan 2024 02:52:25 +0800 Subject: [PATCH 3/5] build: drop deprecated l3build target `revisionfile` The functionality of customized l3build target (`target_list` entry) `revisionfile` has been replaced with `l3build tag` in 9efb7e40 (refactor(ci)!: use l3build tagfiles, 2021-12-15), and the definition of `revisionfile()` has been removed in the same commit. Signed-off-by: Yukai Chou --- build.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.lua b/build.lua index e54dbc4a5..570f7df5b 100644 --- a/build.lua +++ b/build.lua @@ -80,9 +80,3 @@ function tag_hook(tagname, tagdate) return 0 end -target_list = target_list or { } -target_list.revisionfile = - { - desc = "Create revision data file", - func = revisionfile - } From 94d99a16360eafc87d084529a89d3397c3eec324 Mon Sep 17 00:00:00 2001 From: "Alan D. Salewski" Date: Tue, 5 Mar 2024 22:03:57 -0500 Subject: [PATCH 4/5] docs: fix typo in intro: "questions" => "question" (#1309) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix in context -- "question" should be singular: I wish to start with the question “What is TikZ?” Signed-off-by: Alan D. Salewski --- doc/generic/pgf/pgfmanual-en-introduction.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/generic/pgf/pgfmanual-en-introduction.tex b/doc/generic/pgf/pgfmanual-en-introduction.tex index 36670f485..afe6c808d 100644 --- a/doc/generic/pgf/pgfmanual-en-introduction.tex +++ b/doc/generic/pgf/pgfmanual-en-introduction.tex @@ -19,7 +19,7 @@ \section{Introduction} will teach you almost all you should know about \tikzname\ without your having to read the rest. -I wish to start with the questions ``What is \tikzname?'' Basically, it just +I wish to start with the question ``What is \tikzname?'' Basically, it just defines a number of \TeX\ commands that draw graphics. For example, the code |\tikz \draw (0pt,0pt) -- (20pt,6pt);| yields the line \tikz \draw (0pt,0pt) -- (20pt,6pt); and the code |\tikz \fill[orange] (1ex,1ex) circle (1ex);| yields From 3007c426586a4c160ab3d668e4803f702f12e33b Mon Sep 17 00:00:00 2001 From: "Alan D. Salewski" Date: Fri, 8 Mar 2024 01:22:33 -0500 Subject: [PATCH 5/5] docs: fix typo in pgfmanual: "which where" => "which were" (#1310) Fix in context (in section "Repeating Things: The Foreach Statement"): Normally, when a list item '...' is encountered, there should already have been /two/ list items before it, which were numbers. Signed-off-by: Alan D. Salewski --- doc/generic/pgf/pgfmanual-en-pgffor.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/generic/pgf/pgfmanual-en-pgffor.tex b/doc/generic/pgf/pgfmanual-en-pgffor.tex index 94a41fbfe..f76f6fe64 100644 --- a/doc/generic/pgf/pgfmanual-en-pgffor.tex +++ b/doc/generic/pgf/pgfmanual-en-pgffor.tex @@ -100,7 +100,7 @@ \section{Repeating Things: The Foreach Statement} ``missing values''. More precisely, the following happens: Normally, when a list item |...| is encountered, there should already have - been \emph{two} list items before it, which where numbers. Examples of + been \emph{two} list items before it, which were numbers. Examples of \emph{numbers} are |1|, |-10|, or |-0.24|. Let us call these numbers $x$ and $y$ and let $d := y-x$ be their difference. Next, there should also be one number following the three dots, let us call this number~$z$.