LaTeX एक्सेंट मैक्रोज़ को लागू करें


11

परिचय

LaTeX टाइपसेटिंग सिस्टम एक्सेंट को परिभाषित करने के लिए मैक्रोज़ का उपयोग करता है। उदाहरण के लिए, ê अक्षर द्वारा निर्मित है \hat{e}। इस चुनौती में, आपका कार्य इस कार्यक्षमता के ASCII संस्करण को लागू करना है।

इनपुट

आपका इनपुट मुद्रण योग्य ASCII वर्णों का एक गैर-रिक्त स्ट्रिंग है। इसमें न्यूलाइन नहीं होंगे।

उत्पादन

आपका आउटपुट दो पंक्तियों से युक्त एक स्ट्रिंग है। पहली पंक्ति में उच्चारण होते हैं, और दूसरी पंक्ति में वे वर्ण होते हैं। यह इनपुट से निम्नानुसार प्राप्त होता है ( Aएक मनमाना चरित्र दर्शाता है):

  • हर \bar{A}की जगह Aके साथ _यह की चोटी पर।
  • हर \dot{A}की जगह Aके साथ .यह की चोटी पर।
  • हर \hat{A}की जगह Aके साथ ^यह की चोटी पर।
  • एक -10% बोनस के लिए: हर \tilde{A}की जगह Aके साथ ~यह की चोटी पर।
  • अन्य सभी पात्रों के ऊपर एक स्थान है।

उदाहरण के लिए, इनपुट

Je suis pr\hat{e}t.

परिणाम में परिणाम

          ^
Je suis pret.

नियम और स्कोरिंग

आप मान सकते हैं कि वर्ण \{}केवल मैक्रोज़ में होते हैं \bar{}, \dot{}और \hat{}( \tilde{}यदि आप बोनस के लिए जाते हैं)। सभी मैक्रो तर्क एक वर्ण लंबा है, तो सही कर रहे हैं \dot{foo}और \dot{}इनपुट में घटित नहीं होगा। आउटपुट न्यूलाइन-सेपरेटेड स्ट्रिंग या दो स्ट्रिंग्स की एक सूची / जोड़ी हो सकती है। जब तक उच्चारण सही स्थानों पर हैं, तब तक किसी भी राशि के पीछे और पूर्ववर्ती व्हाट्सएप की अनुमति है। विशेष रूप से, यदि कोई लहजे नहीं हैं, तो आउटपुट एकल स्ट्रिंग हो सकता है।

आप एक पूर्ण कार्यक्रम या एक फ़ंक्शन लिख सकते हैं। सबसे कम बाइट गिनती (बोनस के बाद) जीतती है, और मानक खामियों को रोक दिया जाता है।

परीक्षण के मामलों

बिना बोनस:

Input:
No accents.
Output:

No accents.
Input:
Ch\hat{a}teau
Output:
  ^
Chateau
Input:
Som\bar{e} \dot{a}cc\hat{e}nts.
Output:
   _ .  ^
Some accents.
Input:
dot hat\dot{h}a\hat{t}\hat{ }x\bar{x}dot
Output:
       . ^^ _
dot hathat xxdot
Input:
\hat{g}Hmi\hat{|}Su5Y(\dot{G}"\bar{$}id4\hat{j}gB\dot{n}#6AX'c\dot{[}\hat{)} 6\hat{[}T~_sR\hat{&}CEB
Output:
^   ^     . _   ^  .      .^  ^     ^
gHmi|Su5Y(G"$id4jgBn#6AX'c[) 6[T~_sR&CEB

बोनस के साथ:

Input:
Ma\tilde{n}ana
Output:
  ~
Manana
Input:
\dot{L}Vz\dot{[}|M.\bar{#}0\hat{u}U^y!"\tilde{I} K.\bar{"}\hat{m}dT\tilde{$}F\bar{;}59$,/5\bar{'}K\tilde{v}R \tilde{E}X`
Output:
.  .   _ ^     ~   _^  ~ _      _ ~  ~
LVz[|M.#0uU^y!"I K."mdT$F;59$,/5'KvR EX`

मैंने इसे गो में प्रोटोटाइप करना शुरू कर दिया लेकिन फिर मुझे एहसास हुआ कि पायथन कितना सरल होगा ...
बिल्ली

1
क्या हम मान सकते हैं कि प्रत्येक मार्कअप प्रविष्टि में केवल एक चार्ट है? या, दूसरे शब्दों में, \bar{foo}एक वैध इनपुट है?
पीटर टेलर

@PeterTaylor हां, प्रत्येक मैक्रो तर्क बिल्कुल एक वर्ण लंबा है। मैं स्पष्ट कर दूंगा।
ज़र्गब

जवाबों:


4

पायथ, 51 46 45 43 41 40 बाइट्स

मैं घुंघराले ब्रेसिज़ को हटाता हूं और \उसी तरह विभाजित करता हूं, जैसे कि रेटो कोराडी का सीजम उत्तर करता है। कोड bar, dotऔर hatपहले वर्ण के वर्ण कोड के अंतिम दशमलव अंक से पहचाने जाते हैं, modulo 3. मैं पहले भाग को विशेष रूप से जोड़ने के लिए कोड को बचाने के लिए पहले भाग में (RIP) जोड़ देता हूं और अंत में इसे हटा देता हूं ।barf """"

jtMsMCm,+@".^_"eChd*\ -ld4>d3c-+*4Nz`H\\

इसे ऑनलाइन आज़माएं। परीक्षण सूट।


1
" फिर मैं सिर्फ जोड़ देता हूं barf... " +1
एडिसन क्रम्प

3

जूलिया, 204 184 बाइट्स * 0.9 = 165.6

x->(r=r"\\(\w)\w+{(\w)}";t=[" "^endof(x)...];while ismatch(r,x) m=match(r,x);(a,b)=m.captures;t[m.offsets[1]-1]=a=="b"?'_':a=="d"?'.':a=="h"?'^':'~';x=replace(x,r,b,1)end;(join(t),x))

यह एक अनाम फ़ंक्शन है जो एक स्ट्रिंग को स्वीकार करता है और ऊपर और नीचे की रेखाओं के अनुरूप स्ट्रिंग्स का एक टपल देता है। शीर्ष पंक्ति में पीछे की ओर व्हॉट्सएप होगा। फ़ंक्शन को कॉल करने के लिए, इसे एक नाम दें, जैसेf=x->...

Ungolfed:

function f(x::AbstractString)
    # Store a regular expression that will match the LaTeX macro call
    # with capture groups for the first letter of the control sequence
    # and the character being accented
    r = r"\\(\w)\w+{(\w)}"

    # Create a vector of spaces by splatting a string constructed with
    # repetition
    # Note that if there is anything to replace, this will be longer
    # than needed, resulting in trailing whitespace
    t = [" "^endof(x)...]

    while ismatch(r, x)
        # Store the RegexMatch object
        m = match(r, x)

        # Extract the captures
        a, b = m.captures

        # Extract the offset of the first capture
        o = m.captures[1]

        # Replace the corresponding element of t with the accent
        t[o-1] = a == "b" ? '_' : a == "d" ? '.' : a == "h" ? '^' : '~'

        # Replace this match in the original string
        x = replace(x, r, b, 1)
    end

    # Return the top and bottom lines as a tuple
    return (join(t), x)
end

2

सीजेएम, 53 बाइट्स

Sl+'\/(_,S*\@{(i2/49-"_. ^"=\3>'}-_,(S*@\+@@+@@+\}/N\

इसे ऑनलाइन आज़माएं

स्पष्टीकरण:

S       Leading space, to avoid special case for accent at start.
l+      Get input, and append it to leading space.
'\/     Split at '\.
(       Split off first sub-string, which does not start with an accent.
_,      Get length of first sub-string.
S*      String of spaces with the same length.
\       Swap the two. First parts of both output lines are now on stack.
@       Rotate list of remaining sub-strings to top.
{       Loop over sub-strings.
  (       Pop first character. This is 'b, 'd, or 'h, and determines accent.
  i       Convert to integer.
  2/      Divide by two.
  49-     Subtract 49. This will result in 0, 1, or 4 for the different accents.
  "_. ^"  Lookup string for the accents.
  =       Get the correct accent.
  \       Swap string to top.
  3>      Remove the first 3 characters, which is the rest of the accent string
          and the '{.
  '}-     Remove the '}. All the macro stuff is removed now.
  _,(     Get the length, and subtract 1. This is the number of spaces for the first line.
  S*      Produce the spaces needed for the first line.
  @\+     Bring accent and spaces to top, and concatenate them.
  @@+     Get previous second line and new sub-string without formatting to top,
          and concatenate them.
  @@+     Get previous first line and new accent and spacing to top,
          and concatenate them.
  \       Swap the two lines to get them back in first/second order.
}/      End loop over sub-strings.
N\      Put newline between first and second line.

1

हास्केल, 156 * 0.9 = 140.4 बाइट्स

g('\\':a:r)=(q,l):g s where q|a=='b'='_'|a=='d'='.'|a=='h'='^'|a=='t'='~';(_,_:l:_:s)=span(<'{')r
g(a:b)=(' ',a):g b
g""=[('\n','\n')]
f=uncurry(++).unzip.g

उपयोग उदाहरण:

*Main> putStr $ f "\\dot{L}Vz\\dot{[}|M.\\bar{#}0\\hat{u}U^y!\"\\tilde{I} K.\\bar{\"}\\hat{m}dT\\tilde{$}F\\bar{;}59$,/5\\bar{'}K\\tilde{v}R \\tilde{E}X`"
.  .   _ ^     ~   _^  ~ _      _ ~  ~  
LVz[|M.#0uU^y!"I K."mdT$F;59$,/5'KvR EX`

यह कैसे काम करता है: चरित्र द्वारा इनपुट स्ट्रिंग चरित्र के माध्यम से जाएं और पात्रों के जोड़े की एक सूची बनाएं, ऊपरी आउटपुट स्ट्रिंग के लिए बाएं, निचले आउटपुट स्ट्रिंग के लिए सही। यदि एक \पाया जाता है, तो उचित उच्चारण करें, अन्यथा बाएं तत्व के लिए एक स्थान। अंत में जोड़े की सूची को एक स्ट्रिंग में बदल दें।


0

पायथन 3, 203 बाइट्स

बिना बोनस:

l=list(input())
b=list(" "*len(l))
try:
 while 1:s=l.index("\\");t=l[s+1];del l[s+6];del l[s:s+5];b[s] = "b"==t and "_" or "d"==t and "." or "h"==t and "^" or "*";
except:print("".join(b)+"\n"+"".join(l));

मुझे वास्तव में उम्मीद है कि एक छोटा संस्करण है।


1
बाइट काउंट की प्रगति को देखना हमेशा अच्छा होता है। c: मेरा सुझाव है कि पुरानी बाइट काउंट को छोड़ना है, फिर उसके चारों ओर <s></s>, फिर नई बाइट काउंट टाइप करना है ताकि हम कंसिस्टेंसी के चरणों को देख सकें।
Addison Crump
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.