我想用乳膠畫我的標誌。標誌非常簡單。它是一個文本,後面是一個從底線開始的角落。
角落的大小應根據文字的字體大小而變化。
與最好的
托斯頓
答案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 有助於將線置於基線。