我希望矢量线 1 和 2 具有该高度,但直线稍长。
我找到了解决办法这里但正如您在片段中看到的那样,这些线条并没有对齐。
梅威瑟:
\documentclass[11pt,article,oneside]{memoir}
\usepackage{pgfornament}
\usepackage{tikz} %draw circles, squares, etc.
%\usepackage{caption} %change caption style
\usetikzlibrary{calc}
\usepackage{geometry}
\geometry{
paper=a4paper,
top=3.5cm,
bottom=3.5cm,
left=3cm,
right=3cm,
}
\begin{document}
1)
\begin{center}
\pgfornament[scale=.35, width=5cm]{89}
\end{center}
2)
\begin{center}
\begin{tikzpicture}
\node (A) at (0,0) {};
\node (B) at (5,0) {};
\pgfornamentline{A}{B}{1}{88}
\end{tikzpicture}
\end{center}
3)
\begin{tikzpicture}\def\mylen{3cm}
\coordinate (A) at (0,0);
\coordinate (C) at (\mylen,0);
\coordinate (B) at (\textwidth,0);
\coordinate (D) at ($(\textwidth,0)-(\mylen,0)$);
\draw[line width=1.15pt,line cap=rect] ($(A)+.5*(1.15pt,0)$) -- (C) (D) -- ($(B)-.5*(1.15pt,0)$);
\path (C) to[ornament=88, options/.append style={yshift=.52pt}] (D);
\end{tikzpicture}
\end{document}