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
| % \PassOptionsToPackage{draft}{graphicx} | |
| \documentclass[12pt,dvipdfmx,svgnames,uplatex,aspectratio=169]{beamer} | |
| % \documentclass[12pt,dvipdfmx,svgnames,uplatex,aspectratio=169,handout]{beamer} | |
| % | |
| % =========================================== | |
| % 図・表関係 | |
| % =========================================== | |
| \graphicspath{{./pics/}} % \includegraphicsで参照するディレクトリ | |
| \makeatletter | |
| \def\input@path{{/home/raraki/github/TikZ_figures/}} % \inputで参照するディレクトリ |
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
| % 雑誌名の短縮形リスト | |
| \DeclareSourcemap{% | |
| \maps[datatype=bibtex,overwrite=true]{ | |
| \map{ | |
| \step[ | |
| fieldsource=journal, | |
| match={Journal of Fluid Mechanics}, | |
| replace={J. Fluid Mech.}]% | |
| \step[ | |
| fieldsource=journal, |
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
| # ~/.config/starship.toml | |
| "$schema" = "https://starship.rs/config-schema.json" | |
| # NOTE: Emojis with variation selectors or unstable display widths may cause prompt rendering glitches. | |
| # Examples include ⚔️ 🏎️ 🗃️ 🗑️ ✒️ | |
| # If layout breaks, prefer colourful emojis without variation selectors. | |
| format = """ | |
| $username$hostname$directory$git_branch$git_commit$git_state$git_metrics$git_status$julia$python${custom.python_venv}$rust$typst$conda$direnv | |
| $character""" |
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
| #!/usr/bin/perl | |
| $latex = 'pdflatex %O -synctex=1 -interaction=nonstopmode %S'; | |
| $bibtex = 'biblatex'; | |
| $biber = 'biber --bblencoding=utf8 -u -U --output_safechars'; | |
| $dvipdf = 'dvipdfmx %O %S'; | |
| $max_repeat = 5; | |
| $pdf_mode = 3; | |
| $pvc_view_file_via_temporary = 0; | |
| $pdf_previewer = 'evince 2>/dev/null'; |