एक कालानुक्रम काल की सीमा सलाखों को हटाना

Aug 17 2020

मैं एक वर्णक्रम स्पेक्ट्रम बनाने के लिए क्रोनोसिस पैकेज का उपयोग कर रहा हूं और यही वह है जो मैं अब तक ले आया हूं:

\chronoperiodecoloralternation{red,blue,green,green}
\definechronoperiode{MyPeriod}[dates=false,arrow=false,textdepth=-60pt,textwidth=30pt,ifcolorbox=false]
\startchronology
[startyear=1,stopyear=20,startdate=false,stopdate=false]
\chronoperiode[dates=false]{1}{3}{Period 1}
\chronoperiode[dates=false]{3}{10}{Period 2}
\chronoperiode[dates=false]{10}{20}{Period 3}
\chronoMyPeriod[]{14}{17}{Description 1}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{1}{a}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{3}{b}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{10}{c}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{15}{d}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{18}{e}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{20}{f}
\stopchronology

दुर्भाग्य से, यह कोड "विवरण 1" भाग के ठीक नीचे मेरी टाइमलाइन में दो "पीरियड बॉर्डर" का निर्माण करता है। उन्हें कैसे हटाया जाए?

संपादित करें:

यह परिणामी आंकड़ा है:

मैं "d" से पहले और बाद में दो ऊर्ध्वाधर सलाखों से छुटकारा पाना चाहूंगा।

जवाब

1 DavidPurton Aug 17 2020 at 20:41

उन पंक्तियों को \dochronoperiodeमैक्रो में हार्ड-कोड किया गया है । आप उन्हें उपयोग करके पैच कर सकते हैं xpatch:

\documentclass{article}
\usepackage{chronosys}
\usepackage{xpatch}
\catcode`\@=11%
\catcode`\!=11%
\xpatchcmd{\dochronoperiode}
  {\begingroup{%
     \dimen@i\dimexpr\!chrperiodtopheight-\!chrperiodbottomdepth\relax
     \!chrusecolor{\!chr!periodeschwarzodergr@u}%
     \kern-0.2pt\relax\vrule height\dimen@i width0.4pt\relax  \kern-0.2pt\relax
     \kern\dimen@\relax
     \kern-0.2pt\relax\vrule height\dimen@i width0.4pt\relax  \kern-0.2pt\relax
   \kern-\dimen@\relax}%
   \endgroup}
  {}
  {}
  {}
\catcode`\@=12%
\catcode`\!=12%
\begin{document}
\chronoperiodecoloralternation{red,blue,green,green}
\definechronoperiode{MyPeriod}[dates=false,arrow=false,textdepth=-60pt,textwidth=30pt,ifcolorbox=false]
\startchronology
[startyear=1,stopyear=20,startdate=false,stopdate=false]
\chronoperiode[dates=false]{1}{3}{Period 1}
\chronoperiode[dates=false]{3}{10}{Period 2}
\chronoperiode[dates=false]{10}{20}{Period 3}
\chronoMyPeriod[]{14}{17}{Description 1}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{1}{a}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{3}{b}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{10}{c}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{15}{d}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{18}{e}
\chronoevent[date=false,markdepth=-20pt,textwidth=2pt]{20}{f}
\stopchronology
\end{document}