mesolitica / research-paper

Preprint under Mesolitica.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

research-paper

Preprint under Mesolitica.

how-to Linux

  1. Install Latex plugin,
apt install texlive-extra-utils latexmk -y
  1. Install VSCode Latex extension, https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop

  2. Everytime you save the tex file, it will automatically generate the pdf file.

how-to macos

  1. Install mactex plugin here https://www.tug.org/mactex/mactex-download.html or
brew install mactex
  1. Install VSCode Latex extension, https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop

  2. Configure vscode user settings.

  • Press Command+Shift+P, and open “Preferences: Open User Settings(JSON)” and append these lines:
"latex-workshop.latex.tools": [
      {
        "name": "latexmk",
        "command": "latexmk",
        "args": [
          "-synctex=1",
          "-interaction=nonstopmode",
          "-file-line-error",
          "-pdf",
          "-outdir=%OUTDIR%",
          "%DOC%"
        ],
        "env": {
          "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/Library/Apple/usr/bin"
        }
      },
    ],
    "latex-workshop.latex.recipes": [
      {
        "name": "latexmk 🔃",
        "tools": [
          "latexmk"
        ],
      },
    ],
    "latex-workshop.latex.clean.fileTypes": [
        "*.aux",
        "*.bbl",
        "*.blg",
        "*.idx",
        "*.ind",
        "*.lof",
        "*.lot",
        "*.out",
        "*.toc",
        "*.acn",
        "*.acr",
        "*.alg",
        "*.glg",
        "*.glo",
        "*.gls",
        "*.ist",
        "*.fls",
        "*.log",
        "*.fdb_latexmk",
        "*.snm",
        "*.nav",
    ],
  • Reload window

arXiv.org link

  1. malaysian-mistral, https://arxiv.org/abs/2401.13565
  2. MaLLaM, https://arxiv.org/abs/2401.14680
  3. malaysian embedding, https://arxiv.org/abs/2402.03053

About

Preprint under Mesolitica.


Languages

Language:TeX 100.0%