Skip to content

Commit e4ec0ec

Browse files
authored
fix indenting (#94)
* fix indenting * updated checks
1 parent ac87e25 commit e4ec0ec

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Diff for: .github/workflows/CI.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
should_skip: ${{ steps.skip_check.outputs.should_skip }}
2020
steps:
2121
- id: skip_check
22-
uses: fkirc/skip-duplicate-actions@v4
22+
uses: fkirc/skip-duplicate-actions@v5
2323
with:
2424
cancel_others: 'true'
2525
paths: '["src/**", "Makefile", "fixdate.pl"]'
2626

2727
check:
2828
name: Check LaTeX
2929
needs: skip_check
30-
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
30+
if: ${{ needs.skip_check.outputs.should_skip != true }}
3131
runs-on: ubuntu-latest
3232
container: ghcr.io/xu-cheng/texlive-small:latest
3333

@@ -40,7 +40,7 @@ jobs:
4040
tlmgr install latexindent
4141
4242
- name: Checkout the repository
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444

4545
- name: Run ChkTeX
4646
run: |
@@ -56,7 +56,7 @@ jobs:
5656
build_latex:
5757
name: Build LaTeX
5858
needs: skip_check
59-
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
59+
if: ${{ needs.skip_check.outputs.should_skip != true }}
6060
runs-on: ubuntu-latest
6161
container: ghcr.io/xu-cheng/texlive-full:latest
6262

@@ -70,7 +70,7 @@ jobs:
7070
apk add py3-pygments
7171
7272
- name: Checkout the repository
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474
with:
7575
submodules: recursive
7676

Diff for: src/basics.tex

+8-8
Original file line numberDiff line numberDiff line change
@@ -689,33 +689,33 @@ \section{Packages}\index{package} While writing your document, you will
689689
\caption{Examples of \LaTeX{} packages.}\label{packages}
690690
\begin{tabular}{@{}lp{9cm}@{}}
691691
\toprule
692-
Package & Description \\
692+
Package & Description \\
693693
\midrule
694694
\pai*{amsmath} & Provides additional commands for typesetting
695695
mathematical symbols, and environments for aligning equations. Described
696-
in \autoref{chap:math}. \\
696+
in \autoref{chap:math}. \\
697697

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

702702
\pai*{booktabs} & Provides commands for producing beautifully
703703
formatted tables for your document. Described in
704-
\autoref{sec:tables}. \\
704+
\autoref{sec:tables}. \\
705705

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

710710
\pai*{makeidx} & Provides commands for producing indexes. Described
711-
in \autoref{sec:indexing}. \\
711+
in \autoref{sec:indexing}. \\
712712

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

716716
\pai*{beamer} & Provides a document class that changes output to
717717
produce presentations and provides command to typeset slides.
718-
Described in \autoref{sec:beamer}. \\
718+
Described in \autoref{sec:beamer}. \\
719719
\bottomrule
720720
\end{tabular}
721721
\end{table}

0 commit comments

Comments
 (0)