から私はRStudioからニットPDFファイルにしようとしています、と私は次のようなエラーになっています:ニットPDFファイルがRStudio
! LaTeX Error: File `framed.sty' not found.
- Rバージョン:3.2.2(2015年8月14日を)
- プラットフォーム:x86_64版-redhatの-のlinux-gnuのAWS EC2上
から私はRStudioからニットPDFファイルにしようとしています、と私は次のようなエラーになっています:ニットPDFファイルがRStudio
! LaTeX Error: File `framed.sty' not found.
R StudioからPDFファイルを編むしようとしていますが。
エラー-1:! LaTeXエラー:ファイル `framed.sty 'が見つかりません。
参考:https://github.com/rstudio/rmarkdown/issues/39
ソリューション:
あなたはフレームのLaTeXパッケージをインストールする必要があります。
yum -y install texlive-framed
エラー-2:! LaTeXエラー:ファイル `titling.sty 'が見つかりません。
参考:https://github.com/rstudio/rmarkdown/issues/359
ソリューション:
wget http://mirrors.ctan.org/macros/latex/contrib/titling.zip
unzip titling.zip # (might need to sudo yum install unzip)
cd titling
latex titling.ins
sudo mkdir -p /usr/share/texlive/texmf-dist/tex/latex/titling
sudo cp titling.sty /usr/share/texlive/texmf-dist/tex/latex/titling/
sudo texhash
私はtitling.styと同様の問題がありました。ソリューションは、不足しているファイルを含むパッケージをインストールすることでした。
それはだった:
sudo apt-file search titling.sty
:
sudo apt install texlive-latex-extra
あなたはいつものapt-ファイルを使用して、指定したファイルを含むパッケージを見つけることができることを、覚えておいてくださいもちろん、あなたが最初のapt-ファイルパッケージをインストールする必要があります(とファイルのデータベースを更新)あなたが前にそれを行っていない場合:
sudo apt install apt-file
sudo apt-file update
セッションに関する詳細情報(Rのバージョンとオペレーティングシステム)が必要です。おそらくインスタンスはUbuntuを実行していますか?その場合、LaTeXバックエンドをインストールする必要があります。 'sudo apt-get texlive-latex-extra'をインストールします。 – nrussell
Rバージョン3.2.2(2015-08-14) プラットフォーム:x86_64-redhat-linux-gnu – ronencozen
インターネットで回答を検索しましたか?これらの答えはどうですか? http://stackoverflow.com/questions/24314086/pdf-rendering-in-rmarkdown2 https://github.com/rstudio/rmarkdown/issues/39 http://stackoverflow.com/questions/9590134/why-is-ニット - 見つけることができない - フレーム - スティ - または - kpsewhich –