Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix indenting #94

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading