我正在尝试创建一个包含固定尺寸1024 像素 x 512 像素。以下是迄今为止的尝试:
\documentclass[11pt]{article}
\usepackage{geometry}
\usepackage{lipsum}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{siunitx} % for SI units (e.g. C, degree)
\usepackage{bm} % bold for some math symbols
\usepackage{xcolor}
\geometry{
paperwidth = 1024px,
paperheight = 512px,
margin = 1cm
}
\begin{document} \sloppy
Here is an example, the \textit{identity matrix} is given by
\begin{align*}
\mathbf{I} = \begin{pmatrix}
1 & 0 \\ 0 & 1
\end{pmatrix}.
\end{align*}
\end{document}
结果是这样的:
这样可以让文档保持固定宽度,但显然文本太小了。有没有更好的方法来实现这一点?