LaTeX में कोड बनाओ * अच्छा * देखो [बंद]


133

मैं वर्तमान में एक प्रोजेक्ट रिपोर्ट लिख रहा हूं, और थोड़ा पागल अन-सहज कोड समझाने के लिए जो मैंने उपयोग किया है मुझे उदाहरण कोड के बहुत सारे और बहुत कम अंश डालने की आवश्यकता है।

मैं LaTeX में कोड कैसे प्राप्त कर सकता हूं:

  • अच्छा लगता है
  • यदि पंक्ति बहुत लंबी हो (पृष्ठ lstlisting या शब्दशः) तो पृष्ठ के किनारे से दूर न जाएं
  • बाकी पाठ के साथ अधिमानतः इनलाइन है

EDITED (समझी गई सेटिंग्स मैं लोगों को जोड़ना चाहूंगा ताकि उन्हें खुद को समझाना न पड़े और (wikibooks (आगे नीचे लिंक) से लिया जाए और सुंदरता के लिए संपादित किया जाए))

अच्छी सेटिंग्स:

\usepackage{color}
\usepackage{listings}
\lstset{ %
language=C++,                % choose the language of the code
basicstyle=\footnotesize,       % the size of the fonts that are used for the code
numbers=left,                   % where to put the line-numbers
numberstyle=\footnotesize,      % the size of the fonts that are used for the line-numbers
stepnumber=1,                   % the step between two line-numbers. If it is 1 each line will be numbered
numbersep=5pt,                  % how far the line-numbers are from the code
backgroundcolor=\color{white},  % choose the background color. You must add \usepackage{color}
showspaces=false,               % show spaces adding particular underscores
showstringspaces=false,         % underline spaces within strings
showtabs=false,                 % show tabs within strings adding particular underscores
frame=single,           % adds a frame around the code
tabsize=2,          % sets default tabsize to 2 spaces
captionpos=b,           % sets the caption-position to bottom
breaklines=true,        % sets automatic line breaking
breakatwhitespace=false,    % sets if automatic breaks should only happen at whitespace
escapeinside={\%*}{*)}          % if you want to add a comment within your code
}

\begin{lstlisting}
!!code!!
\end{lstlisting}

इन सेटिंग्स का एक उदाहरण:


लिस्टिंग पैकेज (टिप्पणियों और कोड के लिए उदाहरण के लिए अलग अलग आकार) काफी अच्छा है और बहुत लचीला है।
फाबियन स्टील

कुछ लंबी गुगली के बाद, यह पता चला है कि lstlisting कोड को अच्छी तरह से प्रारूपित करने में सक्षम है, लेकिन इसके लिए बहुत अधिक ट्विकिंग की आवश्यकता होती है। <a href=" en.wikibooks.org/wiki/LaTeX/Packages/…> आपके द्वारा दिए गए मापदंडों के लिए एक अच्छा उदाहरण है। (क्षमा करें मेरे स्वयं के प्रश्न का उत्तर देने के लिए!)
एड जेम्स

1
आश्चर्यजनक! मुझे अपने लेटेक्स-दस्तावेज़ में बस कुछ कॉपी-पेस्ट करने में सक्षम होना पसंद है और क्या यह तुरंत सुंदर हो गया है! आपने मुझे अब ट्विक करने के कुछ घंटों के लिए बचाया। धन्यवाद! :)
एस्पेन हर्सेथ हैल्वर्सन

12
उपरोक्त द्वारा निर्मित स्वरूपित कोड का स्क्रीनशॉट अच्छा होगा!
एड्रियन मौट

7
LaTeX पूरा ट्यूरिंग है, इसे बंद नहीं किया जाना चाहिए ..
dcow

जवाबों:



18

यह पता चला है कि lstlistingकोड को अच्छी तरह से प्रारूपित करने में सक्षम है, लेकिन इसके लिए बहुत अधिक ट्विकिंग की आवश्यकता होती है।

Wikibooks आपके द्वारा तय किए गए मापदंडों के लिए एक अच्छा उदाहरण है।


2

सरल दस्तावेज़ के लिए, मैं कभी-कभी शब्दशः का उपयोग करता हूं, लेकिन कोड के बड़े हिस्से के लिए लिस्टिंग अच्छी है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.