web-dev-qa-db-ja.com

Ubuntu18にmiktexをインストールできません

最終的な目標は、HTMLをPDFに変換することです。私はこの解決策を見ました:

https://github.com/SebastiaanKlippert/go-wkhtmltopdf

しかし、上記のソリューションを実行するには、ヘッドレスchromeが必要なようです。その代わりに、 pandoc を使用してみます。 miktex HTMLからTeXを生成するには?

しかし、miktexをインストールすると、次のようになります。

$  Sudo apt-get install miktex
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 miktex : Depends: libcurl3 (>= 7.16.2) but it is not installable
          Depends: libhunspell-1.4-0 but it is not installable
          Depends: libicu57 (>= 57.1-1~) but it is not installable
          Depends: libjpeg62-turbo (>= 1.3.1) but it is not installable
          Depends: libmpfr4 (>= 3.1.3) but it is not installable
E: Unable to correct problems, you have held broken packages.

誰かがその依存関係の問題を解決する方法を知っていますか?

1
Alexander Mills

universeリポジトリを有効にする必要があります。

Sudo add-apt-repository universe
Sudo apt install miktex
1
GAD3R