几天来我一直在尝试获取冰岛语字符。我已经安装了cm-super
字体包,顺便说一下,我在 Windows 8 Lenovo yoga 上使用 MiKTeX 2.9。
不管怎样,我已确保icelandic.ldf
并且icelandic.sty
在目录中\MiKTeX 2.9\tex\generic\babel\
。
该行\DeclareOption{icelandic}{\input{icelandic.ldf}}
位于文件中,并且我在目录中\MiKTeX 2.9\tex\generic\babel\babel.sty
有该文件。ishyph.tex
\MiKTeX 2.9\tex\generic\hyphen\
我找不到任何其他我遗漏的依赖项。我已确保在 MiKTeX 选项中选择了所有这些内容,并且每次更改后我都会刷新 FNDB 和更新格式。因此我推断我的错误出在文档中,而不是依赖项中。
\documentclass{article}
\usepackage[icelandic]{babel}
\usepackage[T1]{fontenc}
\selectlanguage{icelandic}
\begin{document}
I want these letters in amsart: þÞæÆöÖáÁíÍéÉúÚóÓýÝðÐ (I know I can get æ with \ae but that's useless without the others).
\end{document}
顺便说一下,这个方法有效,显示正确,没有问题。问题是我认为我需要我的文档类amsart
(我使用 LaTeX 做线性代数作业),但 AMS 似乎不支持icelandic
。有什么解决方法或我可以做的事情吗?
我需要做的就是制作增广矩阵,仅此而已。我现在的做法是添加以下内容:
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{%
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}}
\makeatother
到我的文档的前面,然后使用类似这样的语法:
$$
\begin{bmatrix}[cccc|c]
a_{11} & a_{21} & \cdots & a_{n1} & b_{1} \\
a_{12} & a_{22} & \cdots & a_{n2} & b_{2} \\
\vdots & \vdots & \ddots & \vdots & \vdots \\
a_{1n} & a_{2n} & \cdots & a_{nn} & b_{n} \\
\vdots & \vdots & \ddots & \vdots & \vdots \\
a_{1m} & a_{2m} & \cdots & a_{nm} & b_{m}
\end{bmatrix}
$$
我不知道它是如何工作的,但它确实有效,只是我没有冰岛字符。如果我能得到 amsart 中的字符或文章中的矩阵,我会很高兴。
答案1
只要文件保存为 UTF-8 即可
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[icelandic]{babel}
\begin{document}
\begin{verbatim}
I want these letters in amsart: þÞæÆöÖáÁíÍéÉúÚóÓýÝðÐ (I know
I can get æ with \ae\ but that's useless without the others).
\end{verbatim}
I want these letters in amsart: þÞæÆöÖáÁíÍéÉúÚóÓýÝðÐ (I know
I can get æ with \ae\ but that's useless without the others).
\end{document}