有人能告诉我如何在 PDF 标题周围创建方框吗?我正在考虑这样的事情:
我可以在标题周围写些东西(例如“测试测试...”)。
答案1
我很确定字体格式选项包含一些基本错误,但这里尝试制作简单的标题页。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\vspace*{30mm}
\thispagestyle{empty}
\begin{center}
\begin{tikzpicture}
\node[align=center,draw,thick,minimum width=\textwidth,inner sep=6mm] (titlebox)%
{\textsc{\large Mathematical Minutae}\\[\baselineskip]\textbf{\huge Test Test Test Test}};
\node[fill=white] (W) at (titlebox.north) {\bfseries \Huge W};
\node (feat) at ([yshift=9mm]titlebox.north) {\textsc{\Large Feature}};
\end{tikzpicture}
\end{center}
\end{document}
这使:
我不太明白你写的最后一句话围绕标题,但我希望我是对的。
顺便说一句,我想随时提到,我期待着 Altermundus 备受期待的作品,pgfvectorian 包,将 psvectorian 好东西的装饰品带到 TikZ/PGF,(我认为考虑一下就是一个很好的尝试)。这样我们甚至可以放更多漂亮的东西而不是普通的盒子(不是说它丑陋,但总是有莫尔选项)。
编辑一个简单的宏来实现更多的自动化
\documentclass{article}
\usepackage{tikz}
\newcommand{\titlebox}[1]{%
\begin{center}
\begin{tikzpicture}
\node[align=center,draw,thick,text width=\textwidth,inner sep=6mm] (titlebox)%
{\textsc{\large Mathematical Minutae}\\[\baselineskip]\textbf{\huge #1}};
\node[fill=white] (W) at (titlebox.north) {\bfseries \Huge W};
\node (feat) at ([yshift=9mm]titlebox.north) {\textsc{\Large Feature}};
\end{tikzpicture}
\end{center}
}
\begin{document}
\vspace*{30mm}% This introduces some space you can remove or change it.
\titlebox{My title test is a test that tests \\ my title} % An example use
\end{document}