├── .gitignore ├── Appendix └── Apndx.tex ├── AuxFiles ├── Glossaries.tex ├── Packages.tex └── ProjectBib.bib ├── CODE_OF_CONDUCT.md ├── Chapter1 ├── Figures │ └── universe.jpeg └── chapter1-Intro.tex ├── Chapter2 └── chapter2-Funda.tex ├── Chapter3 └── chapter3-design.tex ├── Chapter4 └── chapter4-implement.tex ├── Chapter5 └── chapter5-result.tex ├── Chapter6 └── chapter6-conclution.tex ├── CoverPages ├── Abstract.tex ├── Ack.tex ├── Certificate.tex └── Declaration.tex ├── Figures ├── RV_logoVec.png ├── RV_logoW.jpg ├── RV_newLogo.png ├── RVlogoVecW.png └── universe.jpeg ├── LICENSE ├── Main-blx.bib ├── Main.pdf ├── Main.tex ├── README.md ├── _config.yml └── ecproject.sty /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore all logs 2 | *.log 3 | *.bak 4 | Main.* 5 | !Main.pdf 6 | !Main.tex 7 | CODE_OF_CONDUCT.md 8 | 9 | -------------------------------------------------------------------------------- /Appendix/Apndx.tex: -------------------------------------------------------------------------------- 1 | \chapter{Code} 2 | \section{First Appendix} 3 | You can use \texttt{tcblisting} for creating the code snippets. The following example illustrates how one can customize the \texttt{tcblisting} to achieve the \texttt{tcl} script. Similarly, one can use it for other programming language listing, including HDL. 4 | 5 | \begin{tcblisting}{listing only,colback=gray!10!white, breakable, boxsep=0pt,top=1mm,bottom=1mm,left=1mm,right=1mm, 6 | listing options={ 7 | language= tcl, 8 | basicstyle=\small\ttfamily, 9 | otherkeywords={create_clock, set_clock_latency, set_input_delay, set_output_delay, set_load, set_max_fanout, set_fanout_load}, 10 | keywordstyle=\color{blue}, 11 | %keywordstyle=[2]{\color{red}}, 12 | commentstyle=\color{gray}, 13 | backgroundcolor=\color{gray!25}, 14 | %morekeywords=[2]{arg,pos}, 15 | %moredelim=[is][\color{violet}]{''}{''}, 16 | escapechar=!}} 17 | # Since our design has a clock with name clk, 18 | ## specify that name under [get_port ] 19 | create_clock -period 40 -waveform {0 20} [get_ports clk] 20 | 21 | # Setting a 'delay' on the clock: 22 | set_clock_latency 0.3 clk 23 | 24 | # Setting up constraints on your I/P and O/P pins 25 | set_input_delay 2.0 -clock clk [all_inputs]!\tikz[remember picture]\node[](c1){};! 26 | set_output_delay 1.65 -clock clk [all_outputs]!\tikz[remember picture]\node[](c2){};! 27 | 28 | # Set realistic 'loads' on each output pin 29 | set_load 0.1 [all_outputs] 30 | 31 | # Set 'maximum' fanin and fan-out for the input and output pins 32 | set_max_fanout 1 [all_inputs] 33 | set_fanout_load 8 [all_outputs] 34 | \end{tcblisting} -------------------------------------------------------------------------------- /AuxFiles/Glossaries.tex: -------------------------------------------------------------------------------- 1 | %\newglossaryentry{length}{name=$l$, description={Diffusion length}} 2 | %\gls{length} 3 | 4 | \newglossaryentry{rc}{name=$\tau$, description={Time constant}, type=symbolList} 5 | \newglossaryentry{wavelength}{name=$\lambda$, description={Wavelength of a light in a medium}, type=symbolList} 6 | \newglossaryentry{c}{name=$c$, description={Speed of light}, type=symbolList} 7 | \newglossaryentry{freq}{name=$f$, description={Frequncy of light in a medium}, type=symbolList} 8 | 9 | %A 10 | \newacronym{ade}{ADE}{Analog Design Environment} 11 | %B 12 | 13 | %C 14 | \newacronym{cad}{CAD}{Computer Aided Design} 15 | \newacronym{cpa}{CPA}{Carry-Propagate Adder} 16 | \newacronym{cs}{CS}{Common Source} 17 | \newacronym{csa}{CSA}{Carry-Save Adder} 18 | \newacronym{ciw}{CIW}{Command Interpreter Window} 19 | %D 20 | \newacronym{drc}{DRC}{Design Rule Check} 21 | %E 22 | \newacronym{erc}{ERC}{Electrical Rule Check} 23 | %F 24 | 25 | %G 26 | 27 | %H 28 | 29 | %I 30 | \newacronym{ic}{IC}{Integrated Circuit} 31 | %J 32 | 33 | %L 34 | \newacronym{lvs}{LVS}{Layout Versus Schematic} 35 | \newacronym{lsw}{LSW}{Layer Selection Window} 36 | 37 | %M 38 | \newacronym{mo}{M-O}{Metal-Oxide} 39 | \newacronym{mom}{M-O-M}{Metal-Oxide-Metal} 40 | \newacronym{mos}{M-O-S}{Metal-Oxide-Semiconductor} 41 | 42 | 43 | %N 44 | %O 45 | \newacronym{1d}{1D}{One-dimentional} 46 | \newacronym{os}{O-S}{Oxide-Semiconductor} 47 | %P 48 | %Q 49 | %R 50 | 51 | %S 52 | %T 53 | \newacronym{3d}{3D}{Three-dimentional} 54 | %U 55 | %V 56 | \newacronym{vtc}{VTC}{Voltage Transfer Characteristic} 57 | %W 58 | %X 59 | %Y 60 | %Z 61 | -------------------------------------------------------------------------------- /AuxFiles/Packages.tex: -------------------------------------------------------------------------------- 1 | %Packages 2 | \usepackage{ecproject} 3 | \usepackage{graphicx} 4 | \usepackage{tikz} 5 | \usetikzlibrary{calc} 6 | \usepackage[a4paper, margin=1in]{geometry} 7 | \usepackage{float} 8 | \usepackage{qrcode} 9 | %%%Page related 10 | \usepackage{fancyhdr} % for header & footer 11 | \usepackage[hidelinks]{hyperref} 12 | \usepackage[toc, nonumberlist]{glossaries} %For Glossaries - to be loaded only after hyperref package 13 | % For code snippets 14 | \usepackage[listings]{tcolorbox} 15 | \tcbuselibrary{skins,breakable} 16 | \tcbuselibrary{theorems} 17 | %\ifIndentPara 18 | \usepackage{indentfirst} 19 | %\fi 20 | \usepackage{setspace} 21 | %%%Table Related 22 | %\usepackage{booktabs} 23 | %\usepackage{makecell} 24 | %\usepackage{multirow} 25 | %\usepackage{multicol} 26 | -------------------------------------------------------------------------------- /AuxFiles/ProjectBib.bib: -------------------------------------------------------------------------------- 1 | % Encoding: UTF-8 2 | 3 | @Book{Razavi2000, 4 | author = {Behzad Razavi}, 5 | title = {Design of Analog CMOS Integrated Circuits}, 6 | year = {2000}, 7 | publisher = {McGraw-Hill Education}, 8 | isbn = {978-0072380323}, 9 | } 10 | 11 | @Comment{jabref-meta: databaseType:biblatex;} 12 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | narashimaraja@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /Chapter1/Figures/universe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Chapter1/Figures/universe.jpeg -------------------------------------------------------------------------------- /Chapter1/chapter1-Intro.tex: -------------------------------------------------------------------------------- 1 | \chapter{Introduction to Analog and Digital converters} 2 | 3 | \section[Introduction]{\textbf{Introduction}} 4 | The title of the project can be introduced in this section. This section should neatly elaborate the context of the project, the relevance of the area chosen and the title. You can bring a brief history and arrive at the title of the project. Use appropriate number of paragraphs within this section. 5 | 6 | You are allowed to use figures or diagrams which can help in introducing the topic acknowledging the source. For example , if you are introducing a particular topic, an appropriate figure can be used. The figure should be referenced in the text as Figure. \ref{fig:universe} 7 | \begin{figure}[htb] 8 | \centering 9 | \includegraphics[scale=1]{Figures/universe} 10 | \caption{Sample picture of universe } 11 | \label{fig:universe} 12 | \end{figure} 13 | 14 | These guidelines are provided to formally expose you to the various ethical and technical issues involved in writing up your work and the format you are required to adhere to while submitting your project report. 15 | 16 | \section[Motivation]{\textbf{Motivation}} 17 | 18 | Brief the motivation of selecting your project title. You can elaborate the challenges in the specific area, relevance and importance of the chosen topic. 19 | 20 | \section[Problem statement]{\textbf{Problem statement}} 21 | 22 | Define the problem statement in this section, in one paragraph. 23 | 24 | \section[Objectives]{\textbf{Objectives}} 25 | The objectives of the project are 26 | \begin{enumerate} 27 | \item To design a pipelined ADC for audio frequency range 28 | \item List all the objectives in the above format , starting with "To" 29 | \item Limit the number of objectives to a maximum of three 30 | \end{enumerate} 31 | 32 | \section[Literature Review]{\textbf{Literature Review}} 33 | 34 | A literature review is a text of a scholarly paper, which includes the current knowledge including substantive findings, as well as theoretical and methodological contributions to a particular topic. Literature reviews are secondary sources, and do not report new or original experimental work. Most often associated with academic-oriented literature, such reviews are found in academic journals, and are not to be confused with book reviews that may also appear in the same publication. Literature reviews are a basis for research in nearly every academic field . A narrow-scope literature review may be included as part of a peer-reviewed journal article presenting new research, serving to situate the current study within the body of the relevant literature and to provide context for the reader. In such a case, the review usually precedes the methodology and results sections of the work. 35 | 36 | \subsection{Sample} 37 | The main types of literature reviews are: evaluative, exploratory, and instrumental. A fourth type, the systematic review, is often classified separately, but is essentially a literature review focused on a research question, trying to identify, appraise, select and synthesize all high-quality research evidence and arguments relevant to that question. A meta-analysis is typically a systematic review using statistical methods to effectively combine the data used on all selected studies to produce a more reliable result. 38 | \subsubsection[Review types]{\textbf{Review types}} 39 | 40 | The main types of literature reviews are: evaluative, exploratory, and instrumental. A fourth type, the systematic review, is often classified separately, but is essentially a literature review focused on a research question, trying to identify, appraise, select and synthesize all high-quality research evidence and arguments relevant to that question. A meta-analysis is typically a systematic review using statistical methods to effectively combine the data used on all selected studies to produce a more reliable result. 41 | 42 | 43 | \subsubsection[Process and product]{\textbf{Process and product}} 44 | 45 | Distinguish between the process of reviewing the literature and a finished work or product known as a literature review. The process of reviewing the literature is often ongoing and informs many aspects of the empirical research project. All of the latest literature should inform a research project. Scholars need to be scanning the literature long after a formal literature review product appears to be completed. 46 | 47 | \subsubsection{\textbf{Page limitation}} 48 | 49 | A careful literature review is usually 15 to 30 pages and could be longer. The process of reviewing the literature requires different kinds of activities and ways of thinking and link the activities of doing a literature review with Benjamin Bloom’s revised taxonomy of the cognitive domain (ways of thinking: remembering, understanding, applying, analysing, evaluating, and creating). 50 | 51 | This section should contain the review of the literature in the past.You should review a minimum of 10 papers from standard reference journals. Kindly avoid local conference papers and papers from predatory journals. Kindly consult with your guide and finalize papers to be considered for review before adding in this section.Report the major observations and findings from each paper in one paragraph in the format given below. 52 | 53 | proposed various techniques for adders and multipliers.Add the reference papers to the bibliography section using Jabref and cite it here using the instructions given in further chapters. 54 | 55 | 56 | \subsubsection{\textbf{Plagiarism}} 57 | 58 | To use someone else's exact words without quotation marks and appropriate credit, or to use the unique ideas of someone else without acknowledgement, is known as plagiarism. In publishing, plagiarism is illegal; in other circumstances, it is, at the least, unethical. You may quote or paraphrase the words or ideas of another if you document your source. Although you need not enclose the paraphrased material in quotation marks, you must document the source. 59 | 60 | Paraphrased ideas are taken from someone else whether or not the words are identical. Paraphrasing a passage without citing the source is permissible only when the information paraphrased is common knowledge in a field. (Common knowledge refers to historical, scientific, geographical, technical, and other type of information on a topic readily available in handbooks, manuals, atlases and other references). 61 | 62 | \subsubsection{How to add Reference} 63 | Use \texttt{Jabref} which will help in adding the reference in a separate file, from which one can use \verb|\citep\{\}| command to add reference. A sample, referring to a textbook would look something like this,\cite{Razavi2000}. 64 | 65 | \section[Brief Methodology of the project]{\textbf{Brief Methodology of the project}} 66 | Discuss about the methodology you identified to execute the objectives of your project in brief. Methodology is a system of practices, techniques, procedures, and rules used to execute a particular project. You can elaborate the methodology in a later chapter. Here you can present in the form of a flow diagram and explain the methodology in a paragraph. 67 | 68 | \section[Assumptions made / Constraints of the project]{\textbf{Assumptions made / Constraints of the project}} 69 | 70 | List the assumptions made for the execution of the project in this section. You can also elaborate on the major constraints of the project. This section should clearly state under what conditions your project is valid. It is mandatory to have this section in your project report. 71 | 72 | \section[Organization of the report]{\textbf{Organization of the report}} 73 | 74 | This report is organized as follows. Write the discussions in each chapter. A sample is as follows. 75 | \begin{itemize} 76 | \item Chapter 2 discusses the fundamentals of ADC and the performance parameters for evaluation. 77 | \item Chapter 3 discusses . 78 | \item Chapter 4 discusses . 79 | \item Chapter 5 discusses . 80 | \item Chapter 6 discusses . 81 | \end{itemize} 82 | 83 | . -------------------------------------------------------------------------------- /Chapter2/chapter2-Funda.tex: -------------------------------------------------------------------------------- 1 | \chapter{Theory and Fundamentals of Analog to Digital converter} 2 | 3 | From Chapter 2 onwards, every chapter should start with an introduction paragraph. This paragraph should brief about the flow of the chapter. This introduction can be limited within 4 to 5 sentences. The chapter heading should be appropriately modified (a sample heading is shown for this chapter).But don't start the introduction paragraph in the chapters 2 to end with "This chapter deals with....". Instead you should bring in the highlights of the chapter in the introduction paragraph. 4 | 5 | \section{Contents of this chapter} 6 | 7 | This chapter should discuss about the prerequisite learnings before the execution of the project. Organise and elaborate the theory and necessary fundamentals required for the execution of the project. You can use \verb|\subsections| and \verb|subsubsections| in this chapter. 8 | \section{Contents of this chapter} 9 | If a specific programming language is required for the project, a section can be allotted in this chapter to discuss it. 10 | \section{Contents of this chapter} 11 | Tools used could be another possible section to discuss about the software tools used in the work. 12 | \section{Contents of this chapter} 13 | The details in this chapter can be added in consultation with the project guide. For an internship based projects, subsections can be modified accordingly. 14 | 15 | \section{Use of Acronyms and Glossaries} 16 | Acronyms are nothing but the short form of regular repeated word. Say for example, you have a repeat word "Integrated Circuits" and you want to use a short form for it as "IC". For which you have to first define the word and use it wherever you wanted to refer it. 17 | 18 | First, let's look at the definition, which has to be entered in \texttt{Glossaries.tex} under \texttt{CoverPages} directory. 19 | \begin{verbatim} 20 | %\newacronym{}{}{} 21 | \newacronym{ic}{IC}{Integrated Circuits} 22 | \end{verbatim} 23 | In order to use the defined acronym, use the commands \verb|\gls{}| as shown below 24 | 25 | As an example, call the definition with \verb|\gls{ic}| and the outcome of it is reflected as, \gls{ic}. 26 | 27 | Note: For the First time, the expanded form appears along with the Short-form definition inside parenthesis. But when the \verb|\gls{}| is repeated, only Short-form appears inside the parenthesis. 28 | 29 | Now, let's look at the definition of symbols. Follow the syntax to define the symbol first, inside \texttt{Glossaries.tex} under \texttt{CoverPages} directory. 30 | \begin{verbatim} 31 | %\newglossaryentry{}{name=, description={}, type=} 32 | \newglossaryentry{rc}{name=$\tau$, description={Time constant}, type=symbolList} 33 | \end{verbatim} 34 | 35 | As an example, the rate of change is defined with \verb|\gls{rc}| and the outcome of it is reflected as, the rate of change is defined with \gls{rc}. 36 | 37 | \vspace{0.75cm} 38 | 39 | \textbf{The chapters should not end with figures, instead bring the paragraph explaining about the figure at the end followed by a summary paragraph.} 40 | 41 | After elaborating the various sections of the chapter (From Chapter 2 onwards), a summary paragraph should be written discussing the highlights of that particular chapter. This summary paragraph should not be numbered separately. This paragraph should connect the present chapter to the next chapter. 42 | -------------------------------------------------------------------------------- /Chapter3/chapter3-design.tex: -------------------------------------------------------------------------------- 1 | \chapter{Design of Pipelined Analog to Digital converter} 2 | 3 | \indent\indent From Chapter 2 onwards, every chapter should start with an introduction paragraph. This paragraph should brief about the flow of the chapter. This introduction can be limited within 4 to 5 sentences. The chapter heading should be appropriately modified (a sample heading is shown for this chapter).But don't start the introduction paragraph in the chapters 2 to end with "This chapter deals with....". Instead you should bring in the highlights of the chapter in the introduction paragraph. 4 | \section{Contents of this Chapter} 5 | This chapter should contain the following sections and subsections in detail. 6 | \begin{enumerate} 7 | \item Specifications for the Design 8 | \item Pre analysis work for the design or Models used 9 | \item Design methodology in detail 10 | \item Design Equations 11 | \item Experimental techniques (if any) 12 | \end{enumerate} 13 | Apart from the aforementioned sections, you can add sections as per the requirements of the project in consultation with your guide. 14 | 15 | \section{Paraphrasing} 16 | When you paraphrase a written passage, you rewrite it to state the essential ideas in your own words. Because you do not quote your source word for word when paraphrasing, it is unnecessary to enclose the paraphrased material in quotation marks. However, the paraphrased material must be properly referenced because the ideas are taken from someone else whether or not the words are identical. 17 | 18 | Ordinarily, the majority of the notes you take during the research phase of writing your report will paraphrase the original material. Paraphrase only the essential ideas. Strive to put original ideas into your own words without distorting them." 19 | 20 | \section{Quotations} 21 | When you have borrowed words, facts, or idea of any kind from someone else's work, acknowledge your debt by giving your source credit in footnote (or in running text as cited reference). Otherwise, you will be guilty of plagiarism. Also, be sure you have represented the original material honestly and accurately. Direct word to word quotations are enclosed in quotation marks." 22 | 23 | \vspace{0.75cm} 24 | 25 | \textbf{The chapters should not end with figures, instead bring the paragraph explaining about the figure at the end followed by a summary paragraph.} 26 | 27 | After elaborating the various sections of the chapter (From Chapter 2 onwards), a summary paragraph should be written discussing the highlights of that particular chapter. This summary paragraph should not be numbered separately. This paragraph should connect the present chapter to the next chapter. -------------------------------------------------------------------------------- /Chapter4/chapter4-implement.tex: -------------------------------------------------------------------------------- 1 | \chapter{Implementation of Pipelined Analog to Digital converter} 2 | 3 | \indent\indent From Chapter 2 onwards, every chapter should start with an introduction paragraph. This paragraph should brief about the flow of the chapter. This introduction can be limited within 4 to 5 sentences. The chapter heading should be appropriately modified (a sample heading is shown for this chapter).But don't start the introduction paragraph in the chapters 2 to end with "This chapter deals with....". Instead you should bring in the highlights of the chapter in the introduction paragraph. 4 | 5 | \section{Contents of this chapter} 6 | This chapter should elaborate the following in detail. 7 | \begin{enumerate} 8 | \item Implementation details for hardware based projects 9 | \item Top level Design for software based projects 10 | \end{enumerate} 11 | 12 | You can add sections and sub sections to elaborate your project work done. 13 | 14 | \vspace{0.75cm} 15 | 16 | \textbf{The chapters should not end with figures, instead bring the paragraph explaining about the figure at the end followed by a summary paragraph.} 17 | 18 | After elaborating the various sections of the chapter (From Chapter 2 onwards), a summary paragraph should be written discussing the highlights of that particular chapter. This summary paragraph should not be numbered separately. This paragraph should connect the present chapter to the next chapter. 19 | 20 | -------------------------------------------------------------------------------- /Chapter5/chapter5-result.tex: -------------------------------------------------------------------------------- 1 | \chapter{Results \& Discussions} 2 | \indent\indent From Chapter 2 onwards, every chapter should start with an introduction paragraph. This paragraph should brief about the flow of the chapter. This introduction can be limited within 4 to 5 sentences. The chapter heading should be appropriately modified (a sample heading is shown for this chapter).But don't start the introduction paragraph in the chapters 2 to end with "This chapter deals with....". Instead you should bring in the highlights of the chapter in the introduction paragraph. 3 | \section{Contents of this chapter} 4 | All the results obtained for your objectives should be discussed in this chapter. This chapter should contain the following sections as per the project. 5 | \begin{enumerate} 6 | \item Simulation results 7 | \item Experimental results 8 | \item Performance Comparison 9 | \item Inferences drawn from the results obtained 10 | \end{enumerate} 11 | All the figures should be properly explained by bringing the scenarios of the design done in the project. A detailed discussion of results obtained should be done in this chapter. 12 | 13 | \section{Tables in thesis} 14 | \begin{itemize} 15 | \item All Table Caption should be in Sentence Case, TNR 10 Pt. It should be of the Format: 16 | \begin{itemize} 17 | \item Table 1.1 Results of the experiment ….(Centered) 18 | \end{itemize} 19 | \item It should be cited as Table 1.1. 20 | \item Caption should appear above the Table. 21 | \item Table Header and the entries should be of Font TNR 10 Pt, Justified. 22 | \item For wider Table, the page orientation can be Landscape. 23 | \item For Larger Table, it can run to pages and the header should be repeated for each page of the Table. 24 | \item Table must be adjusted to fit in the page and no single row is left out for a new page. 25 | \end{itemize} 26 | 27 | Sample Table \ref{c5:tab1} is given below for your reference, 28 | 29 | \begin{table}[htb] 30 | \fontsize{10}{12}\selectfont 31 | \caption{Country List} 32 | \label{c5:tab1} 33 | \begin{tabular}{|p{3cm}|c|c|c|} 34 | %\hline 35 | %\multicolumn{4}{|c|}{Country List} \\ 36 | \hline 37 | \textbf{Country Name or Area Name}& \textbf {ISO ALPHA 2 Code} & \textbf {ISO ALPHA 3 Code} & \textbf{ISO numeric Code}\\ 38 | \hline 39 | \textbf{Afghanistan} & AF & AFG & 004\\\hline 40 | \textbf{Aland Islands}& AX & ALA & 248\\\hline 41 | \textbf{Albania} & AL & ALB& 008\\\hline 42 | \textbf{Algeria} &DZ & DZA& 012\\\hline 43 | \textbf{American Samoa}& AS & ASM&016\\\hline 44 | \textbf{Andorra}& AD & AND & 020\\\hline 45 | \textbf{Angola}& AO & AGO& 024\\ 46 | \hline 47 | \end{tabular} 48 | \end{table} 49 | 50 | %\begin{table}[htp] 51 | %\fontsize{10}{12}\selectfont 52 | %\centering 53 | %\caption{Data units, sources, and dates} \label{c5:tab2} 54 | %\begin{tabular}{| *4{>{\arraybackslash}m{1in}|} @{}m{0pt}@{}} 55 | % \hline 56 | % \textbf{Variable} & \textbf{Dates} & \textbf{Units} & 57 | % \textbf{Source} &\\[2ex] 58 | % \hline 59 | % \textbf{Nominal Physical Capital Stock} & 1950-1990 & Billions 60 | % US\$ & Nehru and Dhareshwar (1993) &\\[0ex] 61 | % \hline 62 | % \textbf{Total Population} & 1950-1990 & Billions & Nehru and 63 | % Dhareshwar (1993) &\\[0ex] 64 | % \hline 65 | % \textbf{Nominal GDP} & 1950-1990 & Billions US\$ & PWT &\\[5ex] 66 | % \hline 67 | % \textbf{Real GDP per capita} & 1950-1990 & 2005 US\$ per capita & PWT &\\[5ex] 68 | % \hline 69 | %\end{tabular} 70 | %\end{table} 71 | 72 | \section{Math equation in thesis} 73 | All equation should be written using equation editor or using an equivalent tool. 74 | \begin{itemize} 75 | \item Equations should be numbered as : 1.1, 1.2 ... 76 | \item Equation should be Centered, 12 Pt, TNR. 77 | \item Equation number should be right Justified 78 | \item It should be cited as Eqn. 1.1. 79 | \item If the sentence starts by citing an equation, then it should be written as Equation 1.1 For example, Equation 5.1 states the Pythagoras theorem. 80 | 81 | 82 | \end{itemize} 83 | 84 | For example in Eqn. \ref{c5:eqn1}, The well known Pythagorean theorem $x^2 + y^2 = z^2$ was 85 | proved to be invalid for other exponents. 86 | Meaning the next equation has no integer solutions: 87 | 88 | \begin{equation} 89 | \label{c5:eqn1} 90 | x^n + y^n = z^n 91 | \end{equation} 92 | 93 | The mass-energy equivalence is described by the famous equation in Eqn. \ref{c5:eqn2} 94 | \begin{equation} 95 | \label{c5:eqn2} 96 | E=mc^2 97 | \end{equation} 98 | 99 | discovered in 1905 by Albert Einstein. 100 | 101 | \vspace{0.75cm} 102 | 103 | \textbf{The chapters should not end with figures, instead bring the paragraph explaining about the figure at the end followed by a summary paragraph.} 104 | 105 | After elaborating the various sections of the chapter (From Chapter 2 onwards), a summary paragraph should be written discussing the highlights of that particular chapter. This summary paragraph should not be numbered separately. This paragraph should connect the present chapter to the next chapter. 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /Chapter6/chapter6-conclution.tex: -------------------------------------------------------------------------------- 1 | \chapter{Conclusion and Future Scope} 2 | 3 | \section{Conclusion} 4 | This chapter should not contain an introduction paragraph like other chapters. You can directly write conclusion of the work done under this section. Typically this section can have 3 to 4 paragraphs. 5 | 6 | First paragraph should bring in the scenario of the project and every objective should be explained here. 7 | 8 | Second paragraph should say how the objectives are implemented and achieved. 9 | 10 | Last paragraph should draw the conclusions from each objective with quantitative results, performance improvement etc. 11 | 12 | \section{Future Scope} 13 | Briefly discuss the constraints and limitations of the project and state the possibilities of extending the work in future. 14 | \section{Learning Outcomes of the Project} 15 | \begin{itemize} 16 | \item List the learning outcomes here 17 | \item List a minimum of 5 learning outcomes 18 | \end{itemize} 19 | 20 | -------------------------------------------------------------------------------- /CoverPages/Abstract.tex: -------------------------------------------------------------------------------- 1 | \addcontentsline{toc}{chapter}{Abstract}\vspace{-1cm} 2 | %Border 3 | \begin{tikzpicture}[remember picture, overlay] 4 | \draw[line width = 4pt] ($(current page.north west) + (0.75in,-0.75in)$) rectangle ($(current page.south east) + (-0.75in,0.75in)$); 5 | \end{tikzpicture} 6 | 7 | 8 | Highlights of significant contributions: One page with 3 to 4 paragraphs\\ 9 | 10 | Paragraph 1: Importance and relevance of Topic, reported issues and limitations of the topic in performance or computation etc, issues involved in those limitations, need for addressing those issues and a short note on how that is addressed in this report. 11 | 12 | 13 | Paragraph 2 Objectives of this work, short note on algebraic methods used and formulations achieved, computational procedures developed. \gls{ic}. 14 | 15 | 16 | Paragraph 3: Description of simulation procedure including SW tools used and choice of test cases. Short note on results achieved and significant highlights of improvements if any in terms of percentage , for example the architecture presented in this report shows 22 \% improve in power consumption as compared to the previously reported articles. 17 | \gls{ic} 18 | 19 | Paragraph 4:The last para needed only if emulation (after simulation) or Hardware developed to validate simulation results in para 3. 20 | 21 | \pagebreak -------------------------------------------------------------------------------- /CoverPages/Ack.tex: -------------------------------------------------------------------------------- 1 | %%ecproject package is created by P Narashimaraja, Assistant Professor, ECE, RVCE. 2 | %%Border 3 | \begin{tikzpicture}[remember picture, overlay] 4 | \draw[line width = 4pt] ($(current page.north west) + (0.75in,-0.75in)$) rectangle ($(current page.south east) + (-0.75in,0.75in)$); 5 | \end{tikzpicture} 6 | \thispagestyle{empty} 7 | 8 | \begin{center} 9 | %.\hspace{1cm}\\ \par 10 | \Large\textbf{\underline{ACKNOWLEDGEMENTS}} \par 11 | \end{center} 12 | 13 | \ifPG I am \else 14 | \ifStuNameBUsed We are \else I am \fi\fi indebted to \ifPG my \else\ifStuNameBUsed our \else my \fi\fi guide, \textbf{\printGuideNameA}, \printGuideDesigA, \printGuideOrgA$\,.$ for the wholehearted support, suggestions and invaluable advice throughout \ifPG my \else\ifStuNameBUsed our \else my \fi\fi project work and also helped in the preparation of this thesis.\\ \par 15 | 16 | \ifPG I \else \ifStuNameBUsed We \else I \fi\fi also express our gratitude to \ifPG my \else\ifStuNameBUsed our \else my \fi\fi panel members \textbf{\printPanelMemberA}, \printPanelMemberDesigA $\,$ and \textbf{\printPanelMemberB}, \printPanelMemberDesigB , Department of \printDepartmentLF\, for their valuable comments and suggestions during the phase evaluations. \\ \par 17 | 18 | \ifPG My \else \ifStuNameBUsed Our \else My \fi\fi sincere thanks to the project coordinator\ifProjectMemBUsed s\fi\; \textbf{\printProjectMemberA}\ifProjectMemBUsed \ifProjectMemCUsed,\; \else\; and\; \fi\textbf{\printProjectMemberB} \ifProjectMemCUsed\; and \textbf{\printProjectMemberC} \fi\fi\; for \ifProjectMemBUsed their \else the \fi timely instructions and support in coordinating the project.\\ \par 19 | 20 | \ifPG My \else \ifStuNameBUsed Our \else My \fi\fi gratitude to \textbf{Prof. Narashimaraja P} for the organized latex template which made report writing easy and interesting.\\ \par 21 | 22 | 23 | \ifPG My \else \ifStuNameBUsed Our \else My \fi\fi sincere thanks to \textbf{\printHOD}, Professor and Head, Department of \printDepartmentLF, RVCE for the support and encouragement.\\ \par 24 | 25 | \ifPG I \else \ifStuNameBUsed We \else I \fi\fi express sincere gratitude to our beloved Principal, \textbf{\printPrincipal} for the appreciation towards this project work.\\ \par 26 | 27 | \ifPG I \else\ifStuNameBUsed We \else I \fi\fi thank all the teaching staff and technical staff of \printDepartmentLF\, department, RVCE for their help.\\ \par 28 | 29 | Lastly, \ifPG I \else\ifStuNameBUsed we \else I \fi\fi take this opportunity to thank \ifPG my \else\ifStuNameBUsed our \else my \fi\fi family members and friends who provided all the backup support throughout the project work.\\ \par 30 | 31 | %\pagebreak -------------------------------------------------------------------------------- /CoverPages/Certificate.tex: -------------------------------------------------------------------------------- 1 | %%ecproject package is created by P Narashimaraja, Assistant Professor, ECE, RVCE 2 | %Border 3 | \begin{tikzpicture}[remember picture, overlay] 4 | \draw[line width = 4pt] ($(current page.north west) + (0.75in,-0.75in)$) rectangle ($(current page.south east) + (-0.75in,0.75in)$); 5 | \end{tikzpicture} 6 | \thispagestyle{empty} 7 | \vspace{-1cm} 8 | \begin{center} 9 | \Large\textbf{RV College of Engineering\textsuperscript{\small\textregistered}, Bengaluru} \par 10 | \large{(\textit{Autonomous institution affiliated to VTU, Belagavi})} \par 11 | \large\textbf{Department of \printDepartmentLF}\\ 12 | .\hspace{2cm}\\ 13 | \includegraphics[width=4cm]{Figures/RV_logoVec}\par 14 | \Large\textbf{\underline{CERTIFICATE}} \par 15 | \end{center} 16 | %\begin{minipage}[b]{\linewidth} 17 | %\large 18 | \begin{spacing}{1.5} 19 | \noindent Certified that the \ifMinor{minor\;}\else{ major\;}\fi project (\printCode)work titled \textbf{\textit{\printTitle}} is carried out by 20 | \ifPG{% 21 | \textbf{\printStuNameA} (\textbf{\printStuUSNA}) who is bonafide student 22 | } 23 | \else{ 24 | \ifStuNameDUsed{% 25 | \textbf{\printStuNameA } (\textbf{\printStuUSNA}), \textbf{\printStuNameB } (\textbf{\printStuUSNB}), \textbf{\printStuNameC } (\textbf{\printStuUSNC}) and \textbf{\printStuNameD } (\textbf{\printStuUSND}) who are bonafide students 26 | }\else{% 27 | \ifStuNameCUsed{% 28 | \textbf{\printStuNameA } (\textbf{\printStuUSNA}), \textbf{\printStuNameB } (\textbf{\printStuUSNB}) and \textbf{\printStuNameC } (\textbf{\printStuUSNC}) who are bonafide students 29 | }\else{% 30 | \ifStuNameBUsed{% 31 | \textbf{\printStuNameA} (\textbf{\printStuUSNA}) and \textbf{\printStuNameB} (\textbf{\printStuUSNB}) who are bonafide students 32 | }\else{% 33 | \textbf{\printStuNameA} (\textbf{\printStuUSNA}) who is bonafide student 34 | } 35 | \fi 36 | }\fi 37 | }\fi 38 | }\fi 39 | of RV College of Engineering, Bengaluru, in partial fulfillment of the requirements for the degree of \ifPG \textbf{\printMastersInLF} in \textbf{\printMastersPrgName} \else\textbf{Bachelor of Engineering} in \textbf{\printDepartmentLF} \fi of the Visvesvaraya Technological University, Belagavi during the year \printAcadYear. It is certified that all corrections/suggestions indicated for the Internal Assessment have been incorporated in the \ifMinor{minor\;}\else{major\;}\fi project report deposited in the departmental library. The \ifMinor{minor\;}\else{ major\;}\fi project report has been approved as it satisfies the academic requirements in respect of \ifMinor{minor\;}\else{ major\;}\fi project work prescribed by the institution for the said degree.\\ \par 40 | \end{spacing} 41 | 42 | \begin{table}[H] 43 | \centering 44 | \resizebox{1\textwidth}{!}{% 45 | \begin{tabular}{ccc} 46 | \Large &&\\ 47 | \large Guide &\large Head of the Department &\large Principal\\ 48 | & &\\ 49 | \large\printGuideNameA & \large\printHOD & \large\printPrincipal\\ 50 | & & \\ 51 | \end{tabular}% 52 | } 53 | \end{table} 54 | 55 | \begin{table}[H] 56 | \centering 57 | %\resizebox{\textwidth}{!}{% 58 | \begin{tabular}{lccp{6cm}cc} 59 | &&&\textbf{\Large External Viva}&&\\ 60 | &&&&&\\ 61 | &Name of Examiners &&& & Signature with Date\\ 62 | &&&&&\\ 63 | 1.&&&&&\\ 64 | &&&&&\\ 65 | 2.&&&&&\\ 66 | \end{tabular}% 67 | %} 68 | \end{table} 69 | %\pagebreak 70 | -------------------------------------------------------------------------------- /CoverPages/Declaration.tex: -------------------------------------------------------------------------------- 1 | %%ecproject package is created by P Narashimaraja, Assistant Professor, ECE, RVCE 2 | %%Border 3 | \begin{tikzpicture}[remember picture, overlay] 4 | \draw[line width = 4pt] ($(current page.north west) + (0.75in,-0.75in)$) rectangle ($(current page.south east) + (-0.75in,0.75in)$); 5 | \end{tikzpicture} 6 | 7 | \thispagestyle{empty} 8 | 9 | \begin{center} 10 | \Large\textbf{\underline{DECLARATION}} \par 11 | \end{center} 12 | 13 | 14 | \noindent \ifPG I \else \ifStuNameBUsed We\else I\fi\fi, \textbf{\printStuNameA} \ifPG \else\ifStuNameBUsed \ifStuNameCUsed ,$\,$ \else{$\,$ and $\,$}\fi \textbf{\printStuNameB} \ifStuNameCUsed \ifStuNameDUsed ,$\,$ \else{$\,$ and $\,$}\fi \textbf{\printStuNameC}$\,$ \ifStuNameDUsed and $\,$ \textbf{\printStuNameD}$\,$ \fi \fi \fi \fi \ifPG student\; \else \ifStuNameBUsed students\;\else student\;\fi\fi of \ifPG \ifMinor {third\;} \else {fourth\;} \fi \else \ifMinor{sixth\;}\else{eighth\;}\fi \fi semester \ifPG \printMastersInSF\, in \printMastersPrgName \else B.E.\fi, Department of \printDepartmentLF, RV College of Engineering, Bengaluru, hereby declare that the \ifMinor{minor\;}\else{ major\;}\fi project titled `\textbf{\printTitle}' has been carried out by \ifStuNameBUsed us \else me \fi and submitted in partial fulfilment for the award of degree of \ifPG \textbf{\printMastersInLF} in \textbf{\printMastersPrgName} \else\textbf{Bachelor of Engineering} in \textbf{\printDepartmentLF} \fi during the year \printAcadYear.\\ \par 15 | 16 | \noindent Further \ifPG I \else\ifStuNameBUsed we \else I \fi \fi declare that the content of the dissertation has not been submitted previously by anybody for the award of any degree or diploma to any other university.\\ \par 17 | 18 | \noindent \ifPG I \else\ifStuNameBUsed We \else I \fi \fi also declare that any Intellectual Property Rights generated out of this project carried out at RVCE will be the property of RV College of Engineering, Bengaluru and we will be one of the authors of the same. 19 | 20 | \vspace{1cm} 21 | \noindent Place: Bengaluru\par 22 | \vspace{0.5cm} 23 | \noindent Date: \par 24 | 25 | \vspace{2cm} 26 | \begin{table}[H] 27 | \centering 28 | %\resizebox{\textwidth}{!}{% 29 | \begin{tabular}{llcp{5cm}cc} 30 | &&&&&\\ 31 | &&&&&\\ 32 | &Name &&& Signature& \\ 33 | &&&&&\\ 34 | 1.&\printStuNameA (\printStuUSNA)&&&&\\ 35 | &&&&&\\ 36 | \ifPG% 37 | \else% 38 | \ifStuNameBUsed% 39 | 2.&\printStuNameB (\printStuUSNB)&&&&\\ 40 | &&&&&\\ 41 | \else% 42 | \fi% 43 | \ifStuNameCUsed% 44 | 3.&\printStuNameC (\printStuUSNC)&&&&\\ 45 | &&&&&\\ 46 | \else% 47 | \fi% 48 | \ifStuNameDUsed% 49 | 4.&\printStuNameD (\printStuUSND)&&&&\\ 50 | &&&&&\\ 51 | \else% 52 | \fi% 53 | \fi% 54 | \end{tabular}% 55 | %} 56 | \end{table} 57 | %\pagebreak 58 | 59 | -------------------------------------------------------------------------------- /Figures/RV_logoVec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Figures/RV_logoVec.png -------------------------------------------------------------------------------- /Figures/RV_logoW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Figures/RV_logoW.jpg -------------------------------------------------------------------------------- /Figures/RV_newLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Figures/RV_newLogo.png -------------------------------------------------------------------------------- /Figures/RVlogoVecW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Figures/RVlogoVecW.png -------------------------------------------------------------------------------- /Figures/universe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Figures/universe.jpeg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Narashimaraja 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Main-blx.bib: -------------------------------------------------------------------------------- 1 | @Comment{$ biblatex control file $} 2 | @Comment{$ biblatex bcf format version 3.10 $} 3 | % Do not modify this file! 4 | % 5 | % This is an auxiliary file used by the 'biblatex' package. 6 | % This file may safely be deleted. It will be recreated as 7 | % required. 8 | 9 | @Control{biblatex-control, 10 | options = {3.10:0:0:1:0:1:1:0:0:0:0:0:3:3:6:3:0:0:3:1:79:+:+:none}, 11 | } 12 | -------------------------------------------------------------------------------- /Main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvce-latex/Project-Report-Template/d0adacb68597aef775dcb78bd85626df81b83588/Main.pdf -------------------------------------------------------------------------------- /Main.tex: -------------------------------------------------------------------------------- 1 | \documentclass[12pt,oneside,a4paper]{book} % This style for A4 format. 2 | 3 | \input{./AuxFiles/Packages} 4 | 5 | %% Document settings 6 | \title{Design and Analysis of Oversampling ADC} 7 | \subCode{18EC81} 8 | \Department[ECE]{Electronics and Communication Engineering} 9 | \academicYear{2023-24} 10 | 11 | %%%%%%%%%%%%%%%Minor (or) Major report%%%%%%%%%%%%%%% 12 | %% Uncomment \MinorProject line, if the report is for Minor project. 13 | %\MinorProject 14 | 15 | %%%%%%%%%%%%%%%%%%%For PG program%%%%%%%%%%%%%%%%%%% 16 | %% Uncomment \pgProgram command and define appropriate values for \MastersIn{} and \pgProgramName{} 17 | 18 | %\pgProgram% 19 | \MastersIn[M.Tech]{Master of Technology} 20 | \pgProgramName{VLSI Design \& Embedded Systems} 21 | 22 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 23 | %% Student Details%%% 24 | \stuNameA{P Narashimaraja} 25 | \stuUSNA{1RV16EC005} 26 | %\stuNameB{Nithin M} 27 | %\stuUSNB{1RV16EC006} 28 | %\stuNameC{Subrahmanya K N} 29 | %\stuUSNC{1RV16EC007} 30 | %\stuNameD{Subrahmanya K N} 31 | %\stuUSND{1RV16EC007} 32 | 33 | %% Internal Guide%%%% 34 | \guideNameA{Mr. Ramavenkateshwaran} 35 | \guideDesignationA{Assistant Professor} 36 | \guideDeptA{Dept. of ECE} 37 | \guideOrgA{RV College of Engineering} 38 | 39 | %%%External Guide%%%% 40 | %\guideNameB{Dr. Ramavenkateshwaran} 41 | %\guideDesignationB{Assistant Professor} 42 | %\guideDeptB{Dept. of ECE} 43 | %\guideOrgB{RV College of Engineering} 44 | 45 | %\guideNameC{Dr. Ramavenkateshwaran} 46 | %\guideDesignationC{Assistant Professor} 47 | %\guideDeptC{Dept. of ECE} 48 | %\guideOrgC{RV College of Engineering} 49 | 50 | \panelMemberA{Dr. Kariyappa} 51 | \panelMemberDesigA{Professor} 52 | \panelMemberB{Prof. P N Jayanthi} 53 | \panelMemberDesigB{Assistant Professor} 54 | 55 | % Added Ver 3.6 56 | %% Project co-ordonators 57 | \projectMemberA{Dr. Veena Devi S V} 58 | \projectMemberDesigA{Associate Professor} 59 | \projectMemberB{Prof. Sindhu Rajendran} 60 | \projectMemberDesigB{Assistant Professor} 61 | \projectMemberC{Prof. Subramanya K N} 62 | \projectMemberDesigC{Assistant Professor} 63 | 64 | %%%%%%%%%%%%%%%%% Esteemed Members %%%%%%%%%%%%%%%%%% 65 | \HOD{Dr. K S Geetha} 66 | \Principal{Dr. K. N. Subramanya} 67 | 68 | %%%%%%%%%%%%%%%%%%%%% QRL %%%%%%%%%%%%%%%%%%%%%%%%%% 69 | \QRurl{} 70 | %\QRurl{https://drive.google.com/open?id=1jm-POmuq-ZZ1tT5m-xAdCDRnwvLZH8q-} 71 | 72 | %%%%%%%%%%%%%%%%%%Draft report%%%%%%%%%%%%%%%%%% 73 | \DraftCopy %Not yet implemented, if anyone interested, do contact me at pnarashimaraja@rvce.edu.in (or) narashimaraja@gmail.com 74 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 75 | 76 | %%%%%%%%%%%%%%%%%% Glossaries & Acronyms %%%%%%%%%%%%%%%%%% 77 | \newglossary[sym]{symbolList}{sym1}{sym2}{List of Symbols} 78 | \makeglossaries 79 | % Acronyms 80 | \loadglsentries{./AuxFiles/Glossaries} 81 | \renewcommand{\glspostdescription}{}% To remove dot at the end 82 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 83 | 84 | %%%%%%%%%%%%%%%% Bibliography %%%%%%%%%%%%%%%%%%%%% 85 | \usepackage[backend=bibtex,style=ieee]{biblatex} 86 | % If backend is set to bibtex, then configure texmaker Bi(La)Tex with "bibtex %" 87 | \addbibresource{./AuxFiles/ProjectBib.bib}%Add bib file with extention 88 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 89 | 90 | %%%%%%%%%%%%%%%%WaterMark%%%%%%%%%%%%%%%%%%%%% 91 | %% Use it only after Biblatex 92 | %% Uncomment the following lines for watermarking and run it more than 2 times for proper alignment 93 | \usepackage{background} 94 | \backgroundsetup{scale=1, angle=0, firstpage = false, opacity=1, contents={ 95 | \begin{tikzpicture}[remember picture, overlay] 96 | \node at ([yshift=0pt, xshift=0pt]current page.center){\includegraphics[width=0.6\textwidth]{Figures/RVlogoVecW}}; 97 | \end{tikzpicture} 98 | }} 99 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 100 | 101 | \begin{document} 102 | \NoBgThispage% Don't remove this command, even if you want logo on the first page. 103 | \maketitle 104 | %\pagestyle{empty} 105 | \newpage 106 | \begin{spacing}{1.5} 107 | \input{./CoverPages/Certificate} 108 | \newpage 109 | \input{./CoverPages/Declaration} 110 | \newpage 111 | \input{./CoverPages/Ack} 112 | \newpage 113 | \pagenumbering{roman} 114 | \chapter*{Abstract} 115 | \input{./CoverPages/Abstract} 116 | \end{spacing} 117 | \newpage 118 | \pagestyle{fplain} 119 | \begin{spacing}{1.5} 120 | \tableofcontents 121 | \end{spacing} 122 | \newpage 123 | \begin{spacing}{1.5} 124 | \cleardoublepage 125 | \addcontentsline{toc}{chapter}{\listfigurename} 126 | \listoffigures 127 | \end{spacing} 128 | \newpage 129 | \begin{spacing}{1.5} 130 | \cleardoublepage 131 | \addcontentsline{toc}{chapter}{\listtablename} 132 | \listoftables 133 | \end{spacing} 134 | \newpage 135 | \printglossary[type=\acronymtype, title= Abbreviations, toctitle=Abbreviations] 136 | \newpage 137 | \printglossary[type=symbolList, title= List of Symbols, toctitle=List of Symbols] 138 | 139 | \mainmatter 140 | \pagestyle{mplain} 141 | \glsresetall 142 | \begin{spacing}{1.5} 143 | %Chapter 1 144 | \input{./Chapter1/chapter1-Intro} 145 | 146 | %Chapter 2 147 | \input{./Chapter2/chapter2-Funda} 148 | 149 | %Chapter 3 150 | \input{./Chapter3/chapter3-design} 151 | 152 | %Chapter 4 153 | \input{./Chapter4/chapter4-implement} 154 | 155 | %Chapter 5 156 | \input{./Chapter5/chapter5-result} 157 | 158 | %Chapter 6 159 | \input{./Chapter6/chapter6-conclution} 160 | 161 | %% Uncomment the following 2 commands to add Appendix chapters 162 | \appendix 163 | \input{./Appendix/Apndx}%Appendix Chapter 1 164 | 165 | \backmatter 166 | \clearpage 167 | \printbibliography% 168 | 169 | \end{spacing} 170 | \end{document} 171 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RVCE-Latex-Project-Report-Template 2 | This is a Latex template is only for RV College of Engineering students for their report writing in latex. You can use this template for both UG and PG mini/major project report writing in Latex. 3 | 4 | The template, by defalut generates UG main project. 5 | 6 | ## For PG project report, uncomment the following command in `Main.tex` file 7 | 8 | ``` 9 | %\pgProgram% 10 | ``` 11 | 12 | This will automatically takes in the values specified in the commands given below, for PG: 13 | ``` 14 | \MastersIn[M.Tech]{Master of Technology} 15 | \pgProgramName{VLSI Design & Embedded Systems} 16 | ``` 17 | >> Note: `\MastersIn` command has 2 fields, where the field inside `[]` is used for specifying the shorter form of the type of master you are studying and is used inside the document for processing. So do specify this value for generating successful report. 18 | 19 | ## For mini project generation, uncomment the following command in "Main.tex" file 20 | ``` 21 | %\MinorProject 22 | ``` 23 | ## To add Appendix chapter 24 | Uncomment the following lines in "Main.tex" file 25 | ``` 26 | %\appendix 27 | %\input{./Appendix/Apndx}%Appendix Chapter 1 28 | ``` 29 | Add contents to ``Apndx.tex`` file under `Appendix` folder. 30 | 31 | ## To access old Project template with old Logos 32 | You can access the older versions from the side pannel under Releases. You might probably use `v3.6` `Version 3.6 (31 Jan 2024)` release. 33 | 34 | ![giit_release](https://github.com/rvce-latex/Project-Report-Template/assets/85557733/9a427471-7c07-4df6-a5d1-0da7b9ecf40c) 35 | 36 | 37 | 38 | ## Further Help 39 | For further help regarding the setup, follows the [Wiki link](https://github.com/rvce-latex/Project-Report-Template/wiki). 40 | 41 | --- 42 | >Use the youtube play list to know how to use this template: https://youtube.com/playlist?list=PLXnaDu1KFWvaIh-jh9ME8mp5ca-PEtch4 43 | --- 44 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /ecproject.sty: -------------------------------------------------------------------------------- 1 | % Copyright note: This package defines how titles should 2 | % be typeset at the RV College of Engineering 3 | % Author: P Narashimaraja, Assistant Professor, ECE, RVCE 4 | % Added: \ifMinor in Ver.3.2 5 | % Fix: spacing issue for 3 guides & 4 students in Ver.3.4 6 | % Added: \appendix command support in Ver.3.5 7 | \NeedsTeXFormat{LaTeX2e} 8 | \ProvidesPackage{ecproject}[2021/09/01 v.3.5 an project report package for RVCE] 9 | \RequirePackage{graphicx} 10 | \RequirePackage{tikz} 11 | \RequirePackage{xifthen} 12 | \RequirePackage{fancyhdr} 13 | \RequirePackage{qrcode} 14 | \RequirePackage{background} 15 | 16 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 17 | \newcommand*{\subCode}[1]{\gdef\@subCode{#1}} 18 | \newcommand*{\@subCode}{\texttt{\string\subCode} \texttt{currently not set. Please fix this.}} 19 | \newcommand*{\academicYear}[1]{\gdef\@acadYear{#1}} 20 | \newcommand*{\@acadYear}{\texttt{\string\academicYear} \texttt{currently not set. Please fix this.}} 21 | 22 | % Department & program cmd set 23 | \newcommand*{\Department}[2][ECE]{\gdef\@departmentSF{#1}\gdef\@departmentLF{#2}} 24 | \newcommand*{\@departmentSF}{\texttt{Department Name ShortForm is not defined.} \texttt{ Fix this by placing inside square brackets.}} 25 | \newcommand*{\@departmentLF}{\texttt{Department Name LongForm is not defined.} \texttt{ Fix this by placing inside curly brackets.}} 26 | \newcommand*{\MastersIn}[2][M.Tech]{\gdef\@mastersInSF{#1}\relax \def\@mastersInLF{#2}\relax} 27 | \newcommand*{\@mastersInSF}{\texttt{Masters ShortForm is not defined.} \texttt{ Fix this by placing inside square brackets.}} 28 | \newcommand*{\@mastersInLF}{\texttt{Masters LongForm is not defined.} \texttt{ Fix this by placing inside curly brackets.}} 29 | \newcommand*{\pgProgramName}[1]{\gdef\@PGprgName{#1} } 30 | \newcommand*{\@PGprgName}{\texttt{\string\pgProgramName} \texttt{currently not set. Please fix this.}} 31 | 32 | % Panel members cmd set 33 | \newcommand*{\panelMemberA}[1]{\gdef\@panelMemA{#1}} 34 | \newcommand*{\@panelMemA}{\texttt{\string\panelMemberA} \texttt{currently not set. Please fix this.}} 35 | \newcommand*{\panelMemberDesigA}[1]{\gdef\@panelMemDesigA{#1}} 36 | \newcommand*{\@panelMemDesigA}{\texttt{\string\panelMemberDesigA} \texttt{currently not set. Please fix this.}} 37 | \newcommand*{\panelMemberB}[1]{\gdef\@panelMemB{#1}} 38 | \newcommand*{\@panelMemB}{\texttt{\string\panelMemberB} \texttt{currently not set. Please fix this.}} 39 | \newcommand*{\panelMemberDesigB}[1]{\gdef\@panelMemDesigB{#1}} 40 | \newcommand*{\@panelMemDesigB}{\texttt{\string\panelMemberDesigB} \texttt{currently not set. Please fix this.}} 41 | 42 | % Esteemed members cmd set 43 | \newcommand*{\HOD}[1]{\gdef\@hod{#1}} 44 | \newcommand*{\@hod}{\texttt{\string\HOD} \texttt{currently not set. Please fix this.}} 45 | \newcommand*{\Principal}[1]{\gdef\@principal{#1}} 46 | \newcommand*{\@principal}{\texttt{\string\Principal} \texttt{currently not set. Please fix this.}} 47 | 48 | % QR code generator 49 | \newcommand*{\QRurl}[1]{\gdef\@qrurl{#1}} 50 | \newcommand*{\@qrurl}{\qrset{draft, version=20}} 51 | 52 | % initial state: false 53 | \newif\ifGuideNameBUsed 54 | \newif\ifGuideNameCUsed\GuideNameCUsedfalse 55 | \newif\ifProjectMemBUsed\ProjectMemBUsedfalse 56 | \newif\ifProjectMemCUsed\ProjectMemCUsedfalse 57 | \newif\ifStuNameBUsed % ditto 58 | \newif\ifStuNameCUsed % ditto 59 | \newif\ifStuNameDUsed % ditto 60 | \newif\ifPG\PGfalse % ditto 61 | \newif\ifDrft\Drftfalse % ditto 62 | \newif\ifMinor\Minorfalse % ditto 63 | % Students cmd set 64 | \newcommand*{\stuNameA}[1]{\gdef\@stuNameA{#1}} 65 | \newcommand*{\@stuNameA}{\texttt{\string\stuNameA} \texttt{currently not set. Please fix this.}} 66 | \newcommand*{\stuUSNA}[1]{\gdef\@stuUSNA{#1}} 67 | \newcommand*{\@stuUSNA}{\texttt{\string\stuUSNA} \texttt{currently not set. Please fix this.}} 68 | \newcommand*{\stuNameB}[1]{\gdef\@stuNameB{#1}\global\StuNameBUsedtrue} 69 | \newcommand*{\@stuNameB}{} 70 | \newcommand*{\stuUSNB}[1]{\gdef\@stuUSNB{#1}} 71 | \newcommand*{\@stuUSNB}{} 72 | \newcommand*{\stuNameC}[1]{\gdef\@stuNameC{#1}\global\StuNameCUsedtrue} 73 | \newcommand*{\@stuNameC}{} 74 | \newcommand*{\stuUSNC}[1]{\gdef\@stuUSNC{#1}} 75 | \newcommand*{\@stuUSNC}{} 76 | \newcommand*{\stuNameD}[1]{\gdef\@stuNameD{#1}\global\StuNameDUsedtrue} 77 | \newcommand*{\@stuNameD}{} 78 | \newcommand*{\stuUSND}[1]{\gdef\@stuUSND{#1}} 79 | \newcommand*{\@stuUSND}{} 80 | 81 | % Guides cmd set 82 | \newcommand*{\guideNameA}[1]{\gdef\@guideNameA{#1}} 83 | \newcommand*{\@guideNameA}{\texttt{\string\guideNameA} \texttt{currently not set. Please fix this.}} 84 | \newcommand*{\guideDesignationA}[1]{\gdef\@guideDesigA{#1}} 85 | \newcommand*{\@guideDesigA}{\texttt{\string\guideDesignationA} \texttt{currently not set. Please fix this.}} 86 | \newcommand*{\guideOrgA}[1]{\gdef\@guideOrgA{#1}} 87 | \newcommand*{\@guideOrgA}{\texttt{\string\guideOrgA} \texttt{currently not set. Please fix this.}} 88 | \newcommand*{\guideDeptA}[1]{\gdef\@guideDeptA{#1}} 89 | \newcommand*{\@guideDeptA}{\texttt{\string\guideDeptA} \texttt{currently not set. Please fix this.}} 90 | 91 | \newcommand*{\guideNameB}[1]{\gdef\@guideNameB{#1}\global\GuideNameBUsedtrue} 92 | \newcommand*{\@guideNameB}{} 93 | \newcommand*{\guideDesignationB}[1]{\gdef\@guideDesigB{#1}} 94 | \newcommand*{\@guideDesignationB}{} 95 | \newcommand*{\guideDeptB}[1]{\gdef\@guideDeptB{#1}} 96 | \newcommand*{\@guideDeptB}{} 97 | \newcommand*{\guideOrgB}[1]{\gdef\@guideOrgB{#1}} 98 | \newcommand*{\@guideOrgB}{} 99 | 100 | \newcommand*{\guideNameC}[1]{\gdef\@guideNameC{#1}\global\GuideNameCUsedtrue} 101 | \newcommand*{\@guideNameC}{} 102 | \newcommand*{\guideDesignationC}[1]{\gdef\@guideDesigC{#1}} 103 | \newcommand*{\@guideDesignationC}{} 104 | \newcommand*{\guideDeptC}[1]{\gdef\@guideDeptC{#1}} 105 | \newcommand*{\@guideDeptC}{} 106 | \newcommand*{\guideOrgC}[1]{\gdef\@guideOrgC{#1}} 107 | \newcommand*{\@guideOrgC}{} 108 | 109 | % Added:Ver 3.6 110 | % Project Co-ordinates member cmd set 111 | \newcommand*{\projectMemberA}[1]{\gdef\@projectMemA{#1}} 112 | \newcommand*{\@projectMemA}{\texttt{\string\projectMemberA} \texttt{currently not set. Please fix this.}} 113 | \newcommand*{\projectMemberDesigA}[1]{\gdef\@projectMemDesigA{#1}} 114 | \newcommand*{\@projectMemDesigA}{\texttt{\string\projectMemberDesigA} \texttt{currently not set. Please fix this.}} 115 | 116 | \newcommand*{\projectMemberB}[1]{\gdef\@projectMemB{#1}\global\ProjectMemBUsedtrue} 117 | \newcommand*{\@projectMemB}{} 118 | \newcommand*{\projectMemberDesigB}[1]{\gdef\@projectMemDesigB{#1}} 119 | \newcommand*{\@projectMemDesigB}{} 120 | 121 | \newcommand*{\projectMemberC}[1]{\gdef\@projectMemC{#1}\global\ProjectMemCUsedtrue} 122 | \newcommand*{\@projectMemC}{} 123 | \newcommand*{\projectMemberDesigC}[1]{\gdef\@projectMemDesigC{#1}} 124 | \newcommand*{\@projectMemDesigC}{} 125 | 126 | \let\pgProgram\PGtrue% 127 | \let\DraftCopy\Drfttrue% 128 | \let\MinorProject\Minortrue% 129 | 130 | %%%To get the definitions out of package: 131 | \newcommand*{\printTitle}{\leavevmode\@title} 132 | \newcommand*{\printCode}{\leavevmode\@subCode} 133 | \newcommand*{\printAcadYear}{\leavevmode\@acadYear} 134 | %% Program & Department 135 | \newcommand*{\printMastersInLF}{\leavevmode\@mastersInLF} 136 | \newcommand*{\printMastersInSF}{\leavevmode\@mastersInSF} 137 | \newcommand*{\printMastersPrgName}{\leavevmode\@PGprgName} 138 | 139 | \newcommand*{\printDepartmentSF}{\leavevmode\@departmentSF} 140 | \newcommand*{\printDepartmentLF}{\leavevmode\@departmentLF} 141 | %% Principal & HOD Name 142 | \newcommand*{\printPrincipal}{\leavevmode\@principal} 143 | \newcommand*{\printHOD}{\leavevmode\@hod} 144 | %%Guide Name 145 | \newcommand*{\printGuideNameA}{\leavevmode\@guideNameA} 146 | \newcommand*{\printGuideDesigA}{\leavevmode\@guideDesigA} 147 | \newcommand*{\printGuideOrgA}{\leavevmode\@guideOrgA} 148 | \newcommand*{\printGuideNameB}{\leavevmode\@guideNameB} 149 | \newcommand*{\printGuideDesigB}{\leavevmode\@guideDesigB} 150 | \newcommand*{\printGuideOrgB}{\leavevmode\@guideOrgB} 151 | \newcommand*{\printGuideNameC}{\leavevmode\@guideNameC} 152 | \newcommand*{\printGuideDesigC}{\leavevmode\@guideDesigC} 153 | \newcommand*{\printGuideOrgC}{\leavevmode\@guideOrgC} 154 | %%Panel Member 155 | \newcommand*{\printPanelMemberA}{\leavevmode\@panelMemA} 156 | \newcommand*{\printPanelMemberDesigA}{\leavevmode\@panelMemDesigA} 157 | \newcommand*{\printPanelMemberB}{\leavevmode\@panelMemB} 158 | \newcommand*{\printPanelMemberDesigB}{\leavevmode\@panelMemDesigB} 159 | %%Student Name 160 | \newcommand*{\printStuNameA}{\leavevmode\@stuNameA} 161 | \newcommand*{\printStuUSNA}{\leavevmode\@stuUSNA} 162 | \newcommand*{\printStuNameB}{\leavevmode\@stuNameB} 163 | \newcommand*{\printStuUSNB}{\leavevmode\@stuUSNB} 164 | \newcommand*{\printStuNameC}{\leavevmode\@stuNameC} 165 | \newcommand*{\printStuUSNC}{\leavevmode\@stuUSNC} 166 | \newcommand*{\printStuNameD}{\leavevmode\@stuNameD} 167 | \newcommand*{\printStuUSND}{\leavevmode\@stuUSND} 168 | % Added:Ver 3.6 169 | %%Project co-ordinator Names 170 | \newcommand*{\printProjectMemberA}{\leavevmode\@projectMemA} 171 | \newcommand*{\printProjectMemberDesigA}{\leavevmode\@projectMemDesigA} 172 | \newcommand*{\printProjectMemberB}{\leavevmode\@projectMemB} 173 | \newcommand*{\printProjectMemberDesigB}{\leavevmode\@projectMemDesigB} 174 | \newcommand*{\printProjectMemberC}{\leavevmode\@projectMemC} 175 | \newcommand*{\printProjectMemberDesigC}{\leavevmode\@projectMemDesigC} 176 | 177 | %Added: Ver 3.4 178 | %Added to count the number of lines used in the title - to adjust the spacing of title page 179 | %Ref: https://tex.stackexchange.com/questions/528391/count-the-number-of-lines-of-a-long-title-with-a-specific-line-width 180 | \newcounter{numtitlelines} 181 | \newcount\titlelines % auxiliary counter 182 | %\newcommand*{\titlelinescount}[1]{% 183 | % \setbox\titlebox=\vbox{\huge\bfseries %Use the setting of title here 184 | % #1\unskip\strut\par 185 | % \global\titlelines=\the\prevgraf 186 | % } 187 | % \setcounter{numtitlelines}{\the\titlelines} 188 | %} % Use \thenumtitlelines to know the count value 189 | 190 | %%%%%% Title Page %%%%%%%%%%% 191 | \renewcommand*{\maketitle}{% 192 | \begin{titlepage} 193 | %Added in Ver 3.6 [13/08/2023] 194 | \NoBgThispage 195 | \begin{tikzpicture}[remember picture, overlay] 196 | \draw[line width = 4pt] ($(current page.north west) + (0.75in,-0.75in)$) rectangle ($(current page.south east) + (-0.75in,0.75in)$); 197 | \end{tikzpicture} 198 | \begin{tikzpicture}[remember picture, overlay] 199 | \node[anchor=north east,inner sep=0, fill=white] (image) at ($(current page.north east) + (-0.15in,-0.15in)$) {\fbox{\qrcode[hyperlink,height=1.75cm]{\@qrurl}}}; 200 | \end{tikzpicture} 201 | \begin{center} 202 | \vspace{-1cm} 203 | {\includegraphics[width=1\textwidth]{Figures/RV_newLogo}\par} 204 | \vspace{1cm} 205 | 206 | {\huge\bfseries\@title\unskip\strut\par \global\titlelines=\the\prevgraf}% To count the number of lines used in the title - to adjust the spacing of title page 207 | \setcounter{numtitlelines}{\the\titlelines} 208 | \vspace{1cm} 209 | {\Large\itshape A \ifMinor Minor \else Major \fi Project Report (\@subCode)\unskip\strut\par} 210 | \vspace{0.25cm} 211 | {\Large\bfseries Submitted by,\unskip\strut\par} 212 | \end{center} 213 | {\noindent\large\bfseries\@stuNameA\unskip\strut}\hfill{\large\bfseries\@stuUSNA\unskip\strut\par} 214 | \vspace{0.25cm} 215 | \ifPG 216 | \vspace{0.5cm} 217 | \else 218 | {\noindent\large\bfseries\@stuNameB\unskip\strut}\hfill{\large\bfseries\@stuUSNB\unskip\strut\par} 219 | \vspace{0.25cm} 220 | {\noindent\large\bfseries\@stuNameC\unskip\strut}\hfill{\large\bfseries\@stuUSNC\unskip\strut\par} 221 | \vspace{0.25cm} 222 | {\noindent\large\bfseries\@stuNameD\unskip\strut}\hfill{\large\bfseries\@stuUSND\unskip\strut\par} 223 | \fi 224 | 225 | %Updated in Ver 3.4 [4/6/2021] 226 | \ifGuideNameCUsed 227 | \ifnum\value{numtitlelines}>2 %Hope this vl fix the issue. 228 | {\vspace{0.25cm}} 229 | \else 230 | {\vspace{0.5cm}} 231 | \fi 232 | \else 233 | \vspace{1cm} 234 | \fi 235 | 236 | \begin{center} 237 | {\Large\bfseries Under the guidance of \unskip\strut\par} 238 | \end{center} 239 | 240 | \ifGuideNameBUsed 241 | {% Both 242 | {\noindent\large\bfseries\@guideNameA\unskip\strut}\hfill{\large\bfseries\@guideNameB\unskip\strut\par} 243 | \vspace{0.1cm} 244 | {\noindent\large\@guideDesigA\unskip\strut}\hfill{\large\@guideDesigB\unskip\strut\par} 245 | \vspace{0.1cm} 246 | {\noindent\large\@guideDeptA\unskip\strut}\hfill{\large\@guideDeptB\unskip\strut\par} 247 | \vspace{0.1cm} 248 | {\noindent\large\@guideOrgA\unskip\strut}\hfill{\large\@guideOrgB\unskip\strut\par} 249 | } 250 | \else 251 | {% Internal guide 252 | \begin{center} 253 | {\large\bfseries\@guideNameA\unskip\strut\par} 254 | \vspace{0.1cm} 255 | {\large\@guideDesigA\unskip\strut\par} 256 | \vspace{0.1cm} 257 | {\large\@guideDeptA\unskip\strut\par} 258 | \vspace{0.1cm} 259 | {\large\@guideOrgA\unskip\strut\par} 260 | \end{center} 261 | } 262 | \fi 263 | \ifGuideNameCUsed 264 | {% 265 | \begin{center} 266 | {\large\bfseries\@guideNameC\unskip\strut\par} 267 | \vspace{0.1cm} 268 | {\large\@guideDesigC\unskip\strut\par} 269 | \vspace{0.1cm} 270 | {\large\@guideDeptC\unskip\strut\par} 271 | \vspace{0.1cm} 272 | {\large\@guideOrgC\unskip\strut\par} 273 | \end{center} 274 | } 275 | \else{ 276 | \vspace{2cm} 277 | } 278 | \fi 279 | 280 | \begin{center}% May be try use \vbox cmd for equal spacing, but I need to know the better location (lower) 281 | {\large\bfseries In partial fulfillment of the requirements for the degree of \par} 282 | \vspace{0.25cm} 283 | {\large\bfseries \ifPG \@mastersInLF\, \else Bachelor of Engineering \fi in \par} 284 | \vspace{0.25cm} 285 | {\ifPG \Large\bfseries \@PGprgName\unskip\strut\par \else \Large\bfseries \@departmentLF\unskip\strut\par \fi} 286 | \vspace{0.25cm} 287 | {\Large\bfseries\@acadYear \par} 288 | \end{center} 289 | %\end{tcolorbox} 290 | %\newpage 291 | %\thispagestyle{empty} 292 | \end{titlepage} 293 | } 294 | 295 | %%%%%%%%%%%%%%%%%% Page Style %%%%%%%%%%%%%%%%%%%%%%%% 296 | % 297 | \fancypagestyle{mplain}{% 298 | \fancyhf{}% 299 | \renewcommand{\headrulewidth}{0.2pt}% 300 | \renewcommand{\footrulewidth}{0.2pt}% 301 | \ifPG 302 | \fancyfoot[C] {\@mastersInSF\, in \@PGprgName, Department of \@departmentSF,\space\@acadYear}% 303 | \else 304 | \fancyfoot[L] {UG\space\ifMinor Minor\else Major\fi\space Project Report}% 305 | \fancyfoot[C] {Department of \@departmentSF,\space\@acadYear}% 306 | \fi 307 | \fancyfoot[R] {\thepage}% 308 | \fancyhead[C] {RV College of Engineering\textsuperscript{\small\textregistered}, Bengaluru - 560059}% 309 | } 310 | \fancypagestyle{emptypg}{% 311 | \fancyhf{}% 312 | \renewcommand{\headrulewidth}{0.2pt}% 313 | \renewcommand{\footrulewidth}{0.2pt}% 314 | \ifPG 315 | \fancyfoot[C] {\@mastersInSF\, in \@PGprgName, Department of \@departmentSF,\space\@acadYear}% 316 | \fancyfoot[R] {}% 317 | \else 318 | \fancyfoot[L] {UG\space\ifMinor Minor\else Major\fi\space Project Report}% 319 | \fancyfoot[C] {Department of \@departmentSF}% 320 | \fancyfoot[R] {\@acadYear}% 321 | \fi 322 | \fancyhead[C] {RV College of Engineering\textsuperscript{\small\textregistered}, Bengaluru - 560059}% 323 | } 324 | \fancypagestyle{fplain}{% 325 | \fancyhf{}% 326 | \renewcommand{\headrulewidth}{0.2pt}% 327 | \renewcommand{\footrulewidth}{0.2pt}% 328 | % \fancyhead[L]{\vrule depth \textheight \toc}% 329 | \fancyfoot[C] {\thepage}% 330 | } 331 | 332 | %%%%%%%%%%%%%%%% Section Style %%%%%%%%%%%%%%%%%%%%%%% 333 | \renewcommand\section{\@startsection {section}{1}{\z@}% 334 | {0.1pt }%\@plus 0.1ex \@minus -.05ex}% 335 | {0.1ex }%\@plus.2ex}% 336 | {\normalfont\Large\bfseries}} 337 | \renewcommand\subsection{\@startsection {subsection}{2}{\z@}% 338 | {-1ex }%\@plus 0.1ex \@minus -.05ex}% 339 | {0.1ex }%\@plus.2ex}% 340 | {\normalfont\large\bfseries}} 341 | \renewcommand\subsubsection{\@startsection {subsubsection}{3}{\z@}% 342 | {-1ex }%\@plus 0.1ex \@minus -.05ex}% 343 | {0.1ex }%\@plus.2ex}% 344 | {\normalfont\normalsize\bfseries}} 345 | %%%%%%%%%%%%%%%% Chapter Style %%%%%%%%%%%%%%%%%%%%%%% 346 | % helper macros 347 | \gdef\thinrule{\rule{\textwidth}{0.4pt}} 348 | \gdef\mediumrule{\rule{\textwidth}{0.8pt}} 349 | %% broad positions 350 | \newif\if@pgone\@pgonefalse 351 | \newif\if@pgtwo\@pgtwofalse 352 | \newif\if@left\@leftfalse 353 | \newif\if@right\@rightfalse 354 | \newif\if@center\@centerfalse 355 | \newif\if@leftpgone 356 | \newif\if@rightpgone 357 | \newif\if@centerpgone 358 | \newif\if@leftpgtwo 359 | \newif\if@rightpgtwo 360 | \newif\if@centerpgtwo 361 | %Default values 362 | \@leftpgonefalse 363 | \@rightpgonefalse 364 | \@centerpgonefalse 365 | \@leftpgtwofalse 366 | \@rightpgtwofalse 367 | \@centerpgtwofalse 368 | % newifs for number position 369 | \newif\if@lefttitle 370 | \newif\if@righttitle 371 | \newif\if@leftname 372 | \newif\if@rightname 373 | % 374 | % Define a family for chapter styling keys 375 | \pgfkeys{/chapter/.is family} 376 | \pgfkeys{/schapter/.is family} 377 | \pgfkeys{/apndx/.is family} 378 | 379 | \def\pnrset{\pgfqkeys{/chapter}} %Notice this is pgf q keys 380 | % We define keys for all major components 381 | \def\cxset{\pgfqkeys{/schapter}} 382 | \def\apnset{\pgfqkeys{/apndx}} 383 | 384 | \pnrset{% 385 | name/.code={\gdef\chaptername{#1}}, 386 | % 387 | chapter font-family/.store in=\chapterfontfamily@pnr, 388 | chapter font-family/.default=\sffamily, 389 | chapter font-weight/.store in=\chapterfontweight@pnr, 390 | chapter font-size pgone/.store in=\chapterfontsizepgone@pnr, 391 | chapter font-size pgtwo/.store in=\chapterfontsizepgtwo@pnr, 392 | chapter color/.store in=\chaptercolor@pnr, 393 | chapter color/.default=black, 394 | chapter before/.store in=\chapterbefore@pnr, 395 | chapter after/.store in=\chapterafter@pnr, 396 | % 397 | number font-family/.store in=\numberfontfamily@pnr, 398 | number font-family/.default=\sffamily, 399 | number font-weight/.store in=\numberfontweight@pnr, 400 | number font-size pgone/.store in=\numberfontsizepgone@pnr, 401 | number font-size pgtwo/.store in=\numberfontsizepgtwo@pnr, 402 | number color/.store in=\numbercolor@pnr, 403 | number color/.default=black, 404 | number before/.store in=\numberbefore@pnr, 405 | number after/.store in=\numberafter@pnr, 406 | % title keys 407 | title font-family/.store in=\titlefontfamily@pnr, 408 | title font-family/.default=\rmfamily, 409 | title font-weight/.store in=\titlefontweight@pnr, 410 | title font-size pgone/.store in=\titlefontsizepgone@pnr, 411 | title font-size pgtwo/.store in=\titlefontsizepgtwo@pnr, 412 | title color/.store in=\titlefontcolor@pnr, 413 | title color/.default=black, 414 | title before/.store in=\titlebefore@pnr, 415 | title after/.store in=\titleafter@pnr, 416 | title beforeskip/.store in=\titlebeforeskip@pnr, 417 | title afterskip/.store in=\titleafterskip@pnr, 418 | % 419 | position pgone/.is choice, 420 | position pgone/left/.code={\@leftpgonetrue}, 421 | position pgone/right/.code={\@rightpgonetrue}, 422 | position pgone/center/.code={\@centerpgonetrue}, 423 | position pgtwo/.is choice, 424 | position pgtwo/left/.code={\@leftpgtwotrue}, 425 | position pgtwo/right/.code={\@rightpgtwotrue}, 426 | position pgtwo/center/.code={\@centerpgtwotrue}, 427 | % numbering options that are required 428 | numbering/.is choice, 429 | numbering/roman/.code={\gdef\thechapter{\@roman\c@chapter}}, 430 | numbering/Roman/.code={\gdef\thechapter{\@Roman\c@chapter}}, 431 | numbering/arabic/.code={\gdef\thechapter{\@arabic\c@chapter}}, 432 | numbering/none/.code={\gdef\thechapter{}}, 433 | number dot/.store in=\numberpunctuation@pnr, 434 | number position/.is choice, 435 | number position/leftname/.code={\@leftnametrue\@rightnamefalse}, 436 | number position/rightname/.code={\@rightnametrue\@leftnamefalse}, 437 | number position/absolute/.code={}, 438 | number position/righttitle/.code={\@righttitletrue}, 439 | number position/lefttitle/.code={\@lefttitletrue}, 440 | % headers and footers 441 | header style/.store in=\headerstyle@pnr, 442 | } 443 | 444 | \cxset{% 445 | % title keys 446 | title font-family/.store in=\titlefontfamily@cx, 447 | title font-family/.default=\rmfamily, 448 | title font-weight/.store in=\titlefontweight@cx, 449 | title font-size/.store in=\titlefontsize@cx, 450 | title color/.store in=\titlefontcolor@cx, 451 | title color/.default=black, 452 | title before/.store in=\titlebefore@cx, 453 | title after/.store in=\titleafter@cx, 454 | title beforeskip/.store in=\titlebeforeskip@cx, 455 | title afterskip/.store in=\titleafterskip@cx, 456 | % 457 | position/.is choice, 458 | position/left/.code={\@lefttrue}, 459 | position/right/.code={\@righttrue}, 460 | position/center/.code={\@centertrue}, 461 | % headers and footers 462 | header style/.store in=\headerstyle@cx, 463 | } 464 | % Appendix pgfkey setup 465 | % Added to Ver.3.5 [01/09/2021] 466 | \apnset{% 467 | name/.code={\gdef\chaptername{#1}}, 468 | % 469 | chapter font-family/.store in=\chapterfontfamily@pnr, 470 | chapter font-family/.default=\sffamily, 471 | chapter font-weight/.store in=\chapterfontweight@pnr, 472 | chapter font-size pgone/.store in=\chapterfontsizepgone@pnr, 473 | chapter font-size pgtwo/.store in=\chapterfontsizepgtwo@pnr, 474 | chapter color/.store in=\chaptercolor@pnr, 475 | chapter color/.default=black, 476 | chapter before/.store in=\chapterbefore@pnr, 477 | chapter after/.store in=\chapterafter@pnr, 478 | % 479 | number font-family/.store in=\numberfontfamily@pnr, 480 | number font-family/.default=\sffamily, 481 | number font-weight/.store in=\numberfontweight@pnr, 482 | number font-size pgone/.store in=\numberfontsizepgone@pnr, 483 | number font-size pgtwo/.store in=\numberfontsizepgtwo@pnr, 484 | number color/.store in=\numbercolor@pnr, 485 | number color/.default=black, 486 | number before/.store in=\numberbefore@pnr, 487 | number after/.store in=\numberafter@pnr, 488 | % title keys 489 | title font-family/.store in=\titlefontfamily@pnr, 490 | title font-family/.default=\rmfamily, 491 | title font-weight/.store in=\titlefontweight@pnr, 492 | title font-size pgone/.store in=\titlefontsizepgone@pnr, 493 | title font-size pgtwo/.store in=\titlefontsizepgtwo@pnr, 494 | title color/.store in=\titlefontcolor@pnr, 495 | title color/.default=black, 496 | title before/.store in=\titlebefore@pnr, 497 | title after/.store in=\titleafter@pnr, 498 | title beforeskip/.store in=\titlebeforeskip@pnr, 499 | title afterskip/.store in=\titleafterskip@pnr, 500 | % 501 | position pgone/.is choice, 502 | position pgone/left/.code={\@leftpgonetrue}, 503 | position pgone/right/.code={\@rightpgonetrue}, 504 | position pgone/center/.code={\@centerpgonetrue}, 505 | position pgtwo/.is choice, 506 | position pgtwo/left/.code={\@leftpgtwotrue}, 507 | position pgtwo/right/.code={\@rightpgtwotrue}, 508 | position pgtwo/center/.code={\@centerpgtwotrue}, 509 | % numbering options that are required 510 | numbering/.is choice, 511 | numbering/roman/.code={\gdef\thechapter{\@roman\c@chapter}}, 512 | numbering/Roman/.code={\gdef\thechapter{\@Roman\c@chapter}}, 513 | numbering/Alphabet/.code={\gdef\thechapter{\@Alph\c@chapter}}, % Added to Ver.3.5 [01/09/2021] 514 | numbering/alphabet/.code={\gdef\thechapter{\@alph\c@chapter}}, % Added to Ver.3.5 [01/09/2021] 515 | numbering/arabic/.code={\gdef\thechapter{\@arabic\c@chapter}}, 516 | numbering/none/.code={\gdef\thechapter{}}, 517 | number dot/.store in=\numberpunctuation@pnr, 518 | number position/.is choice, 519 | number position/leftname/.code={\@leftnametrue\@rightnamefalse}, 520 | number position/rightname/.code={\@rightnametrue\@leftnamefalse}, 521 | number position/absolute/.code={}, 522 | number position/righttitle/.code={\@righttitletrue}, 523 | number position/lefttitle/.code={\@lefttitletrue}, 524 | % headers and footers 525 | header style/.store in=\headerstyle@pnr, 526 | } 527 | %% This is the Default Chapter tile setting, if \setdefaults is not called inside documnet 528 | 529 | \pnrset{% 530 | name={Chapter}, 531 | % 532 | chapter font-family=\sffamily, 533 | chapter font-weight=\bfseries, 534 | chapter font-size pgone=\Huge, 535 | chapter font-size pgtwo=\Large, 536 | chapter color=gray, 537 | chapter before=,%{\leavevmode\par},%need to correct for 0pt 538 | chapter after=,%{\leavevmode\par}, 539 | % 540 | number font-size pgone=\Huge, 541 | number font-size pgtwo=\Large, 542 | number font-family=\sffamily, 543 | number font-weight=\bfseries, 544 | number color=\color{gray}, 545 | number before=, 546 | number after=, 547 | % 548 | title font-family=\rmfamily, 549 | title font-weight=\bfseries, 550 | title font-size pgone=\Huge, 551 | title font-size pgtwo=\Large, 552 | title color=\color{purple}, 553 | title after=, 554 | title before=, 555 | title afterskip={\vskip0pt}, 556 | title beforeskip={\vskip0pt}, 557 | % 558 | position pgone=right, 559 | position pgtwo=center, 560 | % 561 | numbering=arabic, 562 | number dot=, 563 | number position=rightname, 564 | % 565 | header style=mplain, 566 | }%\fi 567 | 568 | \cxset{% 569 | title font-family=\rmfamily, 570 | title font-weight=\bfseries, 571 | title font-size=\Large, 572 | title color=\color{purple}, 573 | title after=, 574 | title before=, 575 | title afterskip={\vskip25pt}, 576 | title beforeskip={\par\par}, 577 | % 578 | position=center, 579 | % 580 | header style=fplain, 581 | } 582 | 583 | % Redefining the appendix command to suit the pgfkeys setup 584 | % Added to Ver.3.5 [01/09/2021] 585 | \gdef\appendix{% 586 | \setcounter{chapter}{0} 587 | \apnset{% 588 | name={Appendix}, 589 | % 590 | chapter font-family=\sffamily, 591 | chapter font-weight=\bfseries, 592 | chapter font-size pgone=\Huge, 593 | chapter font-size pgtwo=\Large, 594 | chapter color=gray, 595 | chapter before=,%{\leavevmode\par},%need to correct for 0pt 596 | chapter after=,%{\leavevmode\par}, 597 | % 598 | number font-size pgone=\Huge, 599 | number font-size pgtwo=\Large, 600 | number font-family=\sffamily, 601 | number font-weight=\bfseries, 602 | number color=\color{gray}, 603 | number before=, 604 | number after=, 605 | % 606 | title font-family=\rmfamily, 607 | title font-weight=\bfseries, 608 | title font-size pgone=\Huge, 609 | title font-size pgtwo=\Large, 610 | title color=\color{purple}, 611 | title after=, 612 | title before=, 613 | title afterskip={\vskip0pt}, 614 | title beforeskip={\vskip0pt}, 615 | % 616 | position pgone=right, 617 | position pgtwo=center, 618 | % 619 | numbering=Alphabet, 620 | number dot=, 621 | number position=rightname, 622 | % 623 | header style=mplain, 624 | } 625 | } 626 | 627 | \renewcommand\@makechapterhead[2][]{% 628 | % macro for typesetting the chapter number 629 | \def\printnumber{% 630 | \numberbefore@pnr 631 | {% 632 | \numbercolor@pnr 633 | \if@pgone 634 | \numberfontsizepgone@pnr 635 | \fi 636 | \if@pgtwo 637 | \numberfontsizepgtwo@pnr 638 | \fi 639 | \numberfontfamily@pnr 640 | \numberfontweight@pnr 641 | \thechapter 642 | \numberpunctuation@pnr 643 | } 644 | \numberafter@pnr 645 | }% 646 | % macro for typesetting the chapter name 647 | \def\printchaptername{% 648 | { 649 | \chapterfontfamily@pnr 650 | \chapterfontweight@pnr 651 | \color{\chaptercolor@pnr} 652 | \if@pgone 653 | \chapterfontsizepgone@pnr 654 | \chaptername% 655 | \fi 656 | \if@pgtwo 657 | \chapterfontsizepgtwo@pnr 658 | \uppercase\expandafter{\chaptername}% 659 | \fi 660 | \space 661 | }% 662 | }% 663 | % set all keys 664 | {% 665 | {%1st page 666 | \clearpage 667 | \thispagestyle{empty} 668 | \@pgonetrue\@pgtwofalse 669 | \parindent\z@ 670 | \normalfont% 671 | \vspace*{0.35\paperheight} 672 | \ifnum \c@secnumdepth>\m@ne% 673 | \if@mainmatter% 674 | \chapterbefore@pnr% 675 | \if@leftpgone% 676 | \raggedright 677 | \fi% 678 | \if@centerpgone% 679 | \centering 680 | \fi% 681 | \if@rightpgone% 682 | \raggedleft 683 | \fi% 684 | \if@leftname 685 | \printnumber 686 | \fi% 687 | \printchaptername 688 | \if@rightname 689 | \printnumber 690 | \fi% 691 | \chapterafter@pnr 692 | \fi% 693 | \fi% 694 | %chapter title 695 | \interlinepenalty\@M% 696 | \titlebeforeskip@pnr% 697 | \titlefontfamily@pnr% 698 | \titlefontsizepgone@pnr 699 | \titlefontweight@pnr% 700 | 701 | \titlefontcolor@pnr% 702 | %\selectfont% 703 | \titlebefore@pnr% 704 | {#2} 705 | \titleafter@pnr% 706 | \par\nobreak% 707 | % skip after title 708 | \titleafterskip@pnr% 709 | % headers 710 | %\thispagestyle{\headerstyle@pnr}% 711 | \thispagestyle{emptypg}% 712 | } 713 | \pagebreak 714 | {%2nd page 715 | \@pgtwotrue\@pgonefalse 716 | \parindent\z@ 717 | \normalfont% 718 | \ifnum \c@secnumdepth>\m@ne% 719 | \if@mainmatter% 720 | \chapterbefore@pnr% 721 | \if@leftpgtwo% 722 | \raggedright 723 | \fi% 724 | \if@centerpgtwo% 725 | \centering 726 | \fi% 727 | \if@rightpgtwo% 728 | \raggedleft 729 | \fi% 730 | \if@leftname 731 | \printnumber 732 | \fi% 733 | {\uppercase\expandafter{\printchaptername}} 734 | \if@rightname 735 | \printnumber 736 | \fi% 737 | \chapterafter@pnr 738 | \fi% 739 | \fi% 740 | %chapter title 741 | \interlinepenalty\@M% 742 | \titlebeforeskip@pnr% 743 | \titlefontfamily@pnr% 744 | \titlefontweight@pnr% 745 | \titlefontsizepgtwo@pnr 746 | \titlefontcolor@pnr% 747 | % \selectfont% 748 | \titlebefore@pnr% 749 | {\uppercase\expandafter{#2}} 750 | \titleafter@pnr% 751 | \par\nobreak% 752 | % skip after title 753 | \titleafterskip@pnr% 754 | % headers 755 | \pagestyle{\headerstyle@pnr}% 756 | } 757 | } 758 | } 759 | 760 | \renewcommand\@makeschapterhead[2][]{% 761 | % macro for typesetting the chapter name 762 | {% 763 | \parindent\z@ 764 | \normalfont% 765 | \if@left% 766 | \raggedright% 767 | \fi% 768 | \if@center% 769 | \centering% 770 | \fi% 771 | \if@right% 772 | \raggedleft% 773 | \fi% 774 | %chapter title 775 | \interlinepenalty\@M% 776 | \titlebeforeskip@cx% 777 | \titlefontfamily@cx% 778 | \titlefontweight@cx% 779 | \titlefontsizepgtwo@pnr 780 | \titlefontcolor@cx% 781 | \selectfont% 782 | \titlebefore@cx% 783 | {\uppercase\expandafter{#2}} 784 | \titleafter@cx% 785 | \par\nobreak% 786 | % skip after title 787 | \titleafterskip@cx% 788 | % headers 789 | \thispagestyle{\headerstyle@cx}% Have to use \this option to apply on the current page 790 | }% 791 | } 792 | 793 | %\newcommand*{\indentPara}[1]{\ifthenelse{\equal{#1}{yes}}{\@indenttrue}{\@indentfalse}} 794 | \endinput 795 | --------------------------------------------------------------------------------