1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

vimでtexの文章を編集するときvimtex使って、出力結果をskimで表示するまで

Posted at

texの文章をtexで編集して、コンパイル作業をvimtexを使って\llで実行できる様にしている。

実際やってみると、なぜかpdfがアクロバットで表示されてしまう。
skimで開きたいのでどこで設定するか調べてみた。

vimtexはlatexmkというのを使ってコンパイルしてるみたいで、latexmkを使ってコンパイルしたとき、pdfを表示するアプリを指定するため.latexmkrcを編集してみた。

$pdf_previewer = "open -ga /Applications/Skim.app";

を追記してみた。

それで\llをしたり\lvをしてみたが、やはりまだアクロバットで開かれてしまう。

試しに、ターミナルからlatexmkで実行するとそのときはpdfはskimで開かれた。

なので、vimtexで表示するときのアプリは別のところで編集するのかと思い調べてみたらどうやら.vimrcのところに書き込むことが必要みたい。

let g:vimtex_view_method = 'skim'

を追記する必要があるらしい。

それを追記してみたら、うまく表示された。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?