From 13572dfbc6f0bb21a517ad25ca6a31fabfc632a1 Mon Sep 17 00:00:00 2001 From: "Mikolaj Kocikowski, PhD" <163681487+MikolajKocikowski@users.noreply.github.com> Date: Wed, 16 Oct 2024 03:27:58 +0200 Subject: [PATCH 1/6] Adding a star-link for an academic website. (#2780) I have added my website. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e7d3d3a100c1..06c654aab53f 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ Feel free to add your own page(s) by sending a PR. + From 587b27e414f385ab961b3f2365fc00ee341a6539 Mon Sep 17 00:00:00 2001 From: Martijn de Vos Date: Wed, 16 Oct 2024 03:47:53 +0200 Subject: [PATCH 2/6] Update README.md (#2771) Added my website Co-authored-by: George <31376482+george-gca@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 06c654aab53f..8abf84c465bf 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ Feel free to add your own page(s) by sending a PR. + From 7639ee82a8f54b9006d289228ae40b8e23808e6a Mon Sep 17 00:00:00 2001 From: Yulian Manchev <52214154+m-julian@users.noreply.github.com> Date: Wed, 16 Oct 2024 02:54:49 +0100 Subject: [PATCH 3/6] update dockerfile to render jupyter notebook equations (#2758) Hello, This pr should address the issue where the equations in jupter notebooks were not being rendered correctly in issue https://github.com/alshedivat/al-folio/issues/2757 . --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6843d3d0320b..f704814abe10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,10 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ imagemagick \ build-essential \ zlib1g-dev \ - jupyter-nbconvert \ + python3-pip \ inotify-tools procps && \ - apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* + apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* && \ + pip install nbconvert --break-system-packages RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ From 332a6dfcbba1c583e9b951d361ad4f27f84514cd Mon Sep 17 00:00:00 2001 From: suhyeon <36615016+shlee-lab@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:00:06 +0900 Subject: [PATCH 4/6] Update README.md (#2768) Added an academic case (my website) Co-authored-by: George <31376482+george-gca@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8abf84c465bf..1a29500949bd 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ Feel free to add your own page(s) by sending a PR. + From 977a47cb1824bb86d937d30d9f65b6b7c8c800bc Mon Sep 17 00:00:00 2001 From: Simmo Saan Date: Wed, 16 Oct 2024 17:06:04 +0300 Subject: [PATCH 5/6] Add DOI field button to bibliography (#2729) --- _layouts/bib.liquid | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_layouts/bib.liquid b/_layouts/bib.liquid index 3a1b6f1877d7..7ae3eb5638c4 100644 --- a/_layouts/bib.liquid +++ b/_layouts/bib.liquid @@ -192,6 +192,9 @@ {% if entry.abstract %} Abs {% endif %} + {% if entry.doi %} + DOI + {% endif %} {% if entry.arxiv %} arXiv {% endif %} From 0af4aecf50426fc1e35696ca4c47940737175b26 Mon Sep 17 00:00:00 2001 From: George <31376482+george-gca@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:52:16 -0300 Subject: [PATCH 6/6] Removed sync from template from INSTALL.md (#2781) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: George Araújo --- CUSTOMIZE.md | 4 ++-- INSTALL.md | 33 +-------------------------------- 2 files changed, 3 insertions(+), 34 deletions(-) diff --git a/CUSTOMIZE.md b/CUSTOMIZE.md index 90f9c30a625b..d68b5f3dc307 100644 --- a/CUSTOMIZE.md +++ b/CUSTOMIZE.md @@ -92,7 +92,7 @@ scholar: first_name: [Albert, A.] ``` -If the entry matches one form of the last names and the first names, it will be underlined. Keep meta-information about your co-authors in [\_data/coauthors.yml](_data/coauthors.yml) and Jekyll will insert links to their webpages automatically. The co-author data format is as follows, +If the entry matches one form of the last names and the first names, it will be underlined. Keep meta-information about your co-authors in [\_data/coauthors.yml](_data/coauthors.yml) and Jekyll will insert links to their webpages automatically. The co-author data format is as follows, with the last names lower cased and without accents as the key: ```yaml "adams": @@ -115,7 +115,7 @@ If the entry matches one form of the last names and the first names, it will be url: https://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach ``` -If the entry matches one of the combinations of the last names and the first names, it will be highlighted and linked to the url provided. +If the entry matches one of the combinations of the last names and the first names, it will be highlighted and linked to the url provided. Note that the keys **MUST BE** lower cased and **MUST NOT** contain accents. This is because the keys are used to match the last names in the BibTeX entries, considering possible variations. ### Buttons (through custom bibtex keywords) diff --git a/INSTALL.md b/INSTALL.md index ad81f760ecda..71c938ff18fe 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -184,38 +184,7 @@ In its default configuration, al-folio will copy the top-level `README.md` to th ## Upgrading from a previous version -If you installed **al-folio** as described above, you can configure a [GitHub action](https://github.com/AndreasAugustin/actions-template-sync) to automatically sync your repository with the latest version of the theme. - -Go to Settings -> Actions -> General -> Workflow permissions, give Read and write permissions to GitHub Actions, check "Allow GitHub Actions to create and approve pull requests", and save your changes. - -Then go to Actions -> New workflow -> set up a workflow yourself, setup the following workflow and commit your changes: - -```yaml -name: Sync from template -on: - # cronjob trigger - schedule: - - cron: "0 0 1 * *" - # manual trigger - workflow_dispatch: -jobs: - repo-sync: - runs-on: ubuntu-latest - steps: - # To use this repository's private action, you must check out the repository - - name: Checkout - uses: actions/checkout@v4 - - name: actions-template-sync - uses: AndreasAugustin/actions-template-sync@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - source_repo_path: alshedivat/al-folio - upstream_branch: master -``` - -You will receive a pull request within your repository if there are some changes available in the template. - -Another option is to manually update your code by following the steps below: +If you installed **al-folio** as described above, you can manually update your code by following the steps below: ```bash # Assuming the current directory is