Takashi Tamura
Takashi Tamura
It is a different issue. microsoft/vscode/issues/129178
Please open a new issue if it is not related to keyboard shortcuts of VS Code on Windows. Please fill out all the required in the [issue template](https://github.com/James-Yu/LaTeX-Workshop/blob/master/.github/ISSUE_TEMPLATE/bug-report.md)
A list of options is available `cwl` files in the `TexStudio` repository. - https://github.com/texstudio-org/texstudio/blob/master/completion/minted.cwl Notice that the license of `TexStudio` is GPL 3.0.
I think supporting `.dtx` is out of the scope of LaTeX Workshop.
If you are using Arch Linux or Manjaro, see https://github.com/microsoft/vscode/issues/107997#issuecomment-703245178. The same issue happens with VSCodium.
No. It keeps hidden.
I cannot reproduce the issue. Might be fixed. Version: 1.75.0-insider (Universal) Commit: b92894493e6f971a3c71912d823e699d3a05d643 Date: 2022-12-08T05:21:16.099Z Electron: 19.1.8 Chromium: 102.0.5005.167 Node.js: 16.14.2 V8: 10.2.154.15-electron.0 OS: Darwin arm64 20.6.0 Sandboxed: Yes
LaTeX ファイルを platex-dev でコンパイルして、dvipdfmx で PDF に変換したものを、さらに ImageMagick で PNG ファイルに変換したものと、想定されている PDF ファイルを PNG ファイルに変換したものを比較してテストするサンプルを作ってみました。Web開発で使用されている、reg-cli というブラウザのスクリーンショット同士を比較するソフトを使っています。画像同士が異なる場合、異なっている場所をわかりやすく表示してくれます。 - https://github.com/reg-viz/reg-cli 以下を git clone する。 - https://github.com/tamuratak/reg_cli_sample 以下を docker pull する。 - https://hub.docker.com/repository/docker/tamuratak/reg_cli_sample...
> docker で走る platex-dev のソースコードを更新することは可能でしょうか? 開発に必要なパッケージ(make や gcc)を更に追加で Docker のイメージにインストールした上で、Docker コンテナ内で platex のソースコードをビルドして、Docker コンテナ内の TeX Live に対してインストール( `make install`)するのが良いと思います。 開発版の platex をビルドして、すでにインストールされている TeX Live のファイルに上書きする方法(`make install`だけで十分?)を分かっていないのですが、教えていただければ私の手元で試してみます。
以下のような Dockerfile で上記の LaTeX ファイルをコンパイルすることができました。 - https://github.com/tamuratak/reg_cli_sample/blob/a83d9dc2e54c7d92ac82906b0505af8259c76340/Dockerfile/platex_dev/Dockerfile - https://hub.docker.com/r/tamuratak/platex_dev ``` $ cat t.tex \documentclass{tarticle} \begin{document} \RawShipout\hbox{\yoko ABC} \end{document}% $ docker run -i --rm -v "$PWD":/home/app -w /home/app tamuratak/platex_dev platex-dev -halt-on-error...