Follow the instructions here. Make sure you have enabled zotero:// links.
Should now be able to open link like this one: Aad. 2012. Observation of a new particle in the search for the Standard Model Higgs boson with the ATLAS detector at the LHC
| asdfasdf |
Follow the instructions here. Make sure you have enabled zotero:// links.
Should now be able to open link like this one: Aad. 2012. Observation of a new particle in the search for the Standard Model Higgs boson with the ATLAS detector at the LHC
| thiw is a demo |
| #!/usr/bin/env python3 | |
| """ | |
| Clean LaTeX build files with the option of doing so recursively. | |
| Asks before removing files. | |
| https://gist.github.com/klieret/b3e032095d78269c811f4f8c85f6227b | |
| Kilian Lieret 2020 | |
| MIT license |
| from typing import Callable, Optional, Dict, Any | |
| import itertools | |
| from tqdm.auto import tqdm | |
| def product_call( | |
| fct: Callable, | |
| static: Optional[Dict[str, Any]] = None, | |
| multi: Optional[Dict[str, Any]] = None, | |
| progress=False | |
| ) -> Tuple[List[Dict[str, Any]], List[Any]]: |
| #!/usr/bin/env python3 | |
| """ AVAILABLE AS A PACKAGE ON github.com/klieret/randomfiletree """ | |
| import sys | |
| import os | |
| import random | |
| import string | |
| from pathlib import Path |
| #!/bin/bash | |
| # script to go through all figures, search all of our *.tex | |
| # files to see if the figure is still included, and | |
| # if not, print it to standard output | |
| # pipe to rm to delete the unused ones then. | |
| set -e | |
| latex_dir="" |
| #!/bin/bash | |
| # Moves one file but searches through LaTeX source | |
| # and also changes all path references to the file | |
| # Arg 1: Current location of the file | |
| # Arg 2: Target location of the file | |
| set -e | |
| latex_dir="" |
| (* ::Package:: *) | |
| (* ::Code::Initialization::Plain:: *) | |
| superComplexContourPlot::usage="Plots a contour plot of a real expression in a complex variable, | |
| together with 1D projections of the depedence on the real/imaginary part of the variable. | |
| Arg 1: Expression to plot | |
| Arg 2: Variable to plot | |
| Opt 3: Plot label (def: '') | |
| Opt 5: {min real part, max real part} (def: {1,1}) | |
| Opt 6: {min im part, max im part} (def: {1,1})"; |
| #!/usr/bin/env pyton3 | |
| import re | |
| import sys | |
| subsup_regex = re.compile(r"\\text\{Subsuperscript\}\[([^\],]*),([^\],]*),([^\],]*)\]") | |
| minimal_braces = True | |