添加PDF稳定的下载直链 #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 使用不同的latex版本编译,需要放到不同文件中 | |
| # 放到不同-name中编译会报错: | |
| # Biber error: [336] Utils.pm:411> ERROR - Error: Found biblatex control file version 3.11, expected version 3.7. | |
| name: Compile Latex | |
| on: [push, pull_request] | |
| jobs: | |
| build_latex: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v3 | |
| - name: Compile document with latex 2020 | |
| uses: xu-cheng/latex-action@v3 | |
| with: | |
| root_file: PFC.tex | |
| texlive_version: 2020 | |
| latexmk_use_xelatex: true | |