India Languages, asked by tapasyammehra, 10 months ago

pls help skt lang pls fast​

Attachments:

Answers

Answered by Rebecca1017
0

Answer:

ohh PLZZ yrr sanskrit se itni mushkil se to chutkara milla hai mujhe, aur tum sanskrit ke questions puch rhe ho yrr, bookai answers honge dekhlo na.

Explanation:

PLZZ MARK AS BRAINLIEST.....

Answered by gunduravimudhiraj76
0

Answer:

want to enter Sanskrit quotes in my thesis. I have downloaded the "skt" package from CTAN. Also I have texlive-full installed. But I am unable to follow subsequent steps of how to incorporate this packages. I am using Ubuntu and though there are so many solutions mentioned on the net and as well as this site, still I am not able to follow. Can any body give step by step procedure about how to go about it ? As an example I want to type the following as quotation

सर्वधर्मान् परित्यज्य मामेकं शरणं व्र्ज

अहं त्वां सर्वपापेभ्यो मोक्षयिष्यामि मा शुचः

Thanks for your help in advance !

share improve this question follow

asked

Feb 23 '16 at 10:00

creative

261●22 silver badges●1111 bronze badges edited

Feb 23 '16 at 11:50

user2478

Could you please specify where your problem lies? Do you struggle with creating a template to typeset a test sentece? Or does your tex program spit out errors you can't resolve? Please provide a Minimal Example that shows where problems lie, so we can help you. – HATEthePLOT Feb 23 '16 at 11:06

add a comment

5 Answers

order by

Up vote

12

Down vote

Accepted

If I understand well what you are expecting, you want a document written in English, but with sanskrit quotes within. For this, you may use the package polyglossia and define your main language (English) and other sub languages for the document (for example sanskrit here). In your case, you will also need to declare the fonts for sanskrit, a possibility is devanagarifont.

This is a minimal working example that I expect to fit your needs:

\documentclass[12pt]{article}

\usepackage{fontspec}

\usepackage{polyglossia}

\setmainlanguage{english}

\setotherlanguages{sanskrit} %% or other languages

\newfontfamily\devanagarifont[Script=Devanagari]{Lohit Devanagari}

\begin{document}

The main text is in English, and you can add sanskrit quote...

\begin{sanskrit}

सर्वधर्मान् परित्यज्य मामेकं शरणं व्र्ज

अहं त्वां सर्वपापेभ्यो मोक्षयिष्यामि मा शुचः

\end{sanskrit}

\end{document}

The output is as below :

enter image description here

For information, this was compiled using Ubuntu 14.04 with a full install of Texlive-2015 (not the one in the official repos).

EDIT

Compiled with XeLaTeX (other not

Similar questions