这是我当前的文件:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\usepackage[landscape]{geometry}
\begin{document}
\begin{center}
\begin{tikzpicture}
\path [decorate, decoration={text along path, text={ |\fontsize{60pt}{4em}\selectfont| Annual Picnic ||}}] (0,0) .. controls (8,2) .. (16,0);
\end{tikzpicture}
\end{center}
\end{document}
问题
(1)如何才能让它与基本上覆盖整个页面顶部的大字体配合使用?
(2) 还有哪些其他方法可以沿着页面顶部圆圈的一部分排列文字?
答案1
你需要告诉 latex 你有 cm 作为可缩放字体
\RequirePackage{fix-cm}
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\usepackage[landscape]{geometry}
\begin{document}
\begin{center}
\begin{tikzpicture}
\path [decorate, decoration={text along path, text={ |\fontsize{60pt}{4em}\selectfont| Annual Picnic ||}}] (0,0) .. controls (8,2) .. (16,0);
\end{tikzpicture}
\end{center}
\end{document}