如何在文本末尾画一个角

如何在文本末尾画一个角

我想用乳胶画我的标志。标志很简单。它是一个文本,后面跟着一个角,从底线开始。

示例徽标

角落的大小应该根据文本的字体大小而变化。

尽享

托尔斯滕

答案1

因为它是一个徽标,所以我建议你使用tikz

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (a) {The end};
\draw[thick,red] (a.east) -- (a.north east) -- +(-2ex,0);
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案2

允许\scalebox您制作文本并标记任意大小

\documentclass{article}
\usepackage{stackengine}
\usepackage{graphicx}
\def\endmark{\def\stackalignment{r}\stackon[0pt]{%
  \kern1.5pt\rule{.75pt}{2.1ex}}{\llap{\rule{2.1ex+.75pt}{.75pt}}}}
\begin{document}
\scalebox{3}{\scshape The end\endmark}
\end{document}

在此处输入图片描述

答案3

\documentclass{article}
\usepackage{tikz}
\begin{document}  
\begin{tikzpicture}
\node(a) {The End};
\draw[very thick,black] (a.base east) -- (a.north east) -- +(-3ex,0);
\end{tikzpicture}
\end{document}

非常感谢。使用 a.base 有助于将线置于基线上。

相关内容