如何使用 TikZ 装饰获得粗体文本?

如何使用 TikZ 装饰获得粗体文本?

梅威瑟:

\documentclass{article}
\usepackage{geometry}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\tikzset{mydecor/.style 2 args={decoration={text along path,
        text align={left indent=2em},
        text={|\Large|#2},
        },
      yshift=#1,
      decorate}}
      
\begin{document}
\thispagestyle{empty}

\begin{tikzpicture}
  \fill[brown!65!black] (-6,0) rectangle (6,9) (180:0.45cm) arc (180:360:0.45cm);
  \draw[line width=0.3cm,blue,fill=white,miter limit=1]
      (0,0.45) to[controls={+(150:2.25cm) and +(25:2.25cm)}] (-5.4,0.6) --
      (-5.4,9.6) to[controls={+(25:2.25cm) and +(150:2.25cm)}]
      (0,9) to[controls={+(30:2.25cm) and +(155:2.25cm)}] (5.4,9.6) --
      (5.4,0.6) to[controls={+(155:2.25cm) and +(30:2.25cm)}]
      (0,0.45) -- (0,9);
% Left page
  \path[mydecor={-7ex}{Bold text?}] (-5.4,9.6) to[controls={+(25:2.25cm) and +(150:2.25cm)}] (0,9);
 
% Right page
  \path[mydecor={-7ex}{Bold text?}] (0,9) to[controls={+(30:2.25cm) and +(155:2.25cm)}] (5.4,9.6);
\end{tikzpicture}
\end{document}

输出为:

在此处输入图片描述

我如何使显示的文本加粗?通常的方法似乎不起作用,除非我没有将命令放在正确的位置。我使用XeLaTeX.

谢谢。

答案1

\bfseries通过将文本放在...\Large内,文本将变为粗体。因此。||text={|\Large\bfseries|#2}

在此处输入图片描述

\documentclass{article}
\usepackage{geometry}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\tikzset{mydecor/.style 2 args={decoration={text along path,
        text align={left indent=2em},
        text={|\Large\bfseries|#2},
        },
      yshift=#1,
      decorate}}
      
\begin{document}
\thispagestyle{empty}

\begin{tikzpicture}
  \fill[brown!65!black] (-6,0) rectangle (6,9) (180:0.45cm) arc (180:360:0.45cm);
  \draw[line width=0.3cm,blue,fill=white,miter limit=1]
      (0,0.45) to[controls={+(150:2.25cm) and +(25:2.25cm)}] (-5.4,0.6) --
      (-5.4,9.6) to[controls={+(25:2.25cm) and +(150:2.25cm)}]
      (0,9) to[controls={+(30:2.25cm) and +(155:2.25cm)}] (5.4,9.6) --
      (5.4,0.6) to[controls={+(155:2.25cm) and +(30:2.25cm)}]
      (0,0.45) -- (0,9);
% Left page
  \path[mydecor={-7ex}{Bold text?}] (-5.4,9.6) to[controls={+(25:2.25cm) and +(150:2.25cm)}] (0,9);
 
% Right page
  \path[mydecor={-7ex}{Bold text?}] (0,9) to[controls={+(30:2.25cm) and +(155:2.25cm)}] (5.4,9.6);
\end{tikzpicture}
\end{document}

相关内容