Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker authored May 10, 2024
2 parents a748521 + e4ec0ec commit 7972e80
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v4
uses: fkirc/skip-duplicate-actions@v5
with:
cancel_others: 'true'
paths: '["src/**", "Makefile", "fixdate.pl"]'

check:
name: Check LaTeX
needs: skip_check
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
if: ${{ needs.skip_check.outputs.should_skip != true }}
runs-on: ubuntu-latest
container: ghcr.io/xu-cheng/texlive-small:latest

Expand All @@ -40,7 +40,7 @@ jobs:
tlmgr install latexindent
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run ChkTeX
run: |
Expand All @@ -56,7 +56,7 @@ jobs:
build_latex:
name: Build LaTeX
needs: skip_check
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
if: ${{ needs.skip_check.outputs.should_skip != true }}
runs-on: ubuntu-latest
container: ghcr.io/xu-cheng/texlive-full:latest

Expand All @@ -70,7 +70,7 @@ jobs:
apk add py3-pygments
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
16 changes: 8 additions & 8 deletions src/basics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -689,33 +689,33 @@ \section{Packages}\index{package} While writing your document, you will
\caption{Examples of \LaTeX{} packages.}\label{packages}
\begin{tabular}{@{}lp{9cm}@{}}
\toprule
Package & Description \\
Package & Description \\
\midrule
\pai*{amsmath} & Provides additional commands for typesetting
mathematical symbols, and environments for aligning equations. Described
in \autoref{chap:math}. \\
in \autoref{chap:math}. \\

\pai*{polyglossia} & Makes it easy to write \LaTeX{} documents in
languages other than English, or even in multiple languages.
Described in \autoref{sec:polyglossia}. \\
Described in \autoref{sec:polyglossia}. \\

\pai*{booktabs} & Provides commands for producing beautifully
formatted tables for your document. Described in
\autoref{sec:tables}. \\
\autoref{sec:tables}. \\

\pai*{biblatex} & Provides commands for automatically specifying and
producing a bibliography for your document. Described in
\autoref{chap:bibliography}. \\
\autoref{chap:bibliography}. \\

\pai*{makeidx} & Provides commands for producing indexes. Described
in \autoref{sec:indexing}. \\
in \autoref{sec:indexing}. \\

\pai*{fancyhdr} & Lets you easily customise page headers and footers.
Described in \autoref{sec:fancy}. \\
Described in \autoref{sec:fancy}. \\

\pai*{beamer} & Provides a document class that changes output to
produce presentations and provides command to typeset slides.
Described in \autoref{sec:beamer}. \\
Described in \autoref{sec:beamer}. \\
\bottomrule
\end{tabular}
\end{table}
Expand Down

0 comments on commit 7972e80

Please sign in to comment.