
나는 다중성으로 테이블 루트에 표시하고 싶습니다. 이를 위해 이중선과 0 기호(점선 수직선 아님)를 사용하고 싶습니다. 하지만 \tkzTabLine{d,-,z,t}에는 3개의 명령이 있는데, 이들은 d, t, z 명령입니다. 이것들은 나에게 효과가 없습니다. d,t,z 명령 대신 새 명령을 어떻게 설정할 수 있나요?
- z는 점선을 배치하고 0을 중앙에 배치합니다.
- 점선을 중앙에 배치하지 않음
- d 이중 중앙 막대를 배치합니다.
예를 들어 새 명령을 정의하고 싶습니다.
- x는 이중선과 0을 중심으로 배치합니다.
- y는 실선을 중앙에 배치합니다.
\documentclass[11pt]{article}
\usepackage{color}
\usepackage{MnSymbol}
\usepackage{tkz-tab,amsmath}
\usetikzlibrary{arrows}
\begin{document}
\newcommand{\E}{\mathrm{e}}
\begin{tikzpicture}
\tikzset{arrow style/.style = {blue,->,> = latex',
shorten > = 6pt,
shorten < = 6pt}}
\tkzTabInit[espcl=2]{$x$ /1, $f'(x)$ /1.5, $f''(x)$ /2,$f(x)$/2.5}{$-
\infty$, $0$ ,$1$ , $2$ , $+\infty$}%
\tkzTabLine{ ,+,z,- ,d,-,z,+}%
\tkzTabLine{ ,-,t ,- ,d,+,t ,+}%
\tkzTabVar%
{ -/ , +/ ,-D+/ / , -/ ,+/ / }%
\end{tikzpicture}
\end{document}
답변1
상담 후 최종 결과물
http://ftp.cc.uoc.gr/mirrors/CTAN/macros/latex/contrib/tkz/tkz-tab/doc/tkz-tab-screen.pdf
그리고
네 번째 호는 OP에 대한 연습으로 남겨집니다. 마찬가지로 OP에 대한 연습으로 원이 있는 이중선
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{tkz-tab}
\usetikzlibrary{calc}
\usetikzlibrary {arrows.meta,bending}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[color,
colorT = yellow!20,
colorC = red!20,
colorL = green!20,
colorV = lightgray!20,
lgt=2,
espcl=2,
nocadre]
{$x$ /1,
$f''(x)$ /1,
$f'(x)$ /1,
$f(x)$ /1.2}
{$-\infty$ ,
$-1$,
$0$,
$1$,
$+\infty$};
\tkzTabLine{+,,+,,z,,-,,-}
\tkzTabLine{+,,-,,z,,-,,+}
\tkzTabLine{,,,,t,,,,}
% \draw[red,thick,->,shorten >= 2pt,shorten <= 4pt]
% ($.5*(N14) + .5*(M14) + (0,.5mm)$) to [bend right=30] ($.5*(N23) + .5*(M13)$);
% \draw[red,thick,->,shorten >= 7pt,shorten <= 7pt]
% ($.5*(N23) + .5*(M23) + (0,.5mm)$) to [bend right=25] ($.7*(N34) + .3*(M24) + (0,.7mm)$);
\begin{scope}[>->,line width=1pt,>=stealth]
\draw (3,-3) to [bend left=35] (2,-4);
\draw (4,-4.1) to [bend left=35] (5, -3.1);
\draw (7.7, -3.1)to [bend left=35] (8.8 , -4.1);
\end{scope}
\end{tikzpicture}
\end{document}
귀하의 요구 사항을 충족하는 경우 답변 왼쪽의 확인 표시를 선택하고 답변 왼쪽의 위쪽을 가리키는 삼각형에 찬성 투표를 할 수도 있습니다.