my study notes [to do]
- Cross-refs: link of definitions and theorems
- ToC: list of theorems, definitions, minitoc
- header and footer: hyperlink
- bib: hyperlink, backref, custom entry
- support index, glossary, symbol
- clean layout
- More glossary support at branch. Not work on Overleaf (see the discussion of the issue.
This template (this branch) works fine with the Overleaf online compiler.
.latexmkrc
configuration file
$pdflatex = 'lualatex -synctex=1 -interaction=nonstopmode --shell-escape %O %S';
@generated_exts = (@generated_exts, 'synctex.gz');
$pdf_mode = 1;
add_cus_dep('glo', 'gls', 0, 'makeglo2gls');
sub makeglo2gls {
system("makeindex -s '$_[0]'.ist -t '$_[0]'.glg -o '$_[0]'.gls '$_[0]'.glo");
}
Extension: Latex Workshop by James Yu
Extension Setting:
"latex-workshop.latex.recipe.default":"latexmk",
"latex-workshop.latex.recipes":[
{
"name": "latexmk",
"tools": [
"latexmk"
]
}
],
"latex-workshop.latex.tools":[
{
"name": "latexmk",
"command": "latexmk",
"args": [
// "-pdflatex=lualatex",
"-f",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
}
]
https://retorque.re/zotero-better-bibtex/
Creative Commons CC BY 4.0
Feel free to fork or modify this Repo. Give me a star if this template is helpful to you.
If you have any question or suggestion, you could open an issue on GitHub.