Welcome

We will begin shortly

Inclusive, Future–Focused Scholarship

Facilitator: Jonathan Aragon

Writing Scholarly Works  in Plain Text

  • Focus on writing not formatting 
  • Improve the reader experience
  • Write it once and change it as needed with a few keystrokes  
  • Convert it to suit the platform, e.g, doc, pdf, Kendel, HTML, etc. 
  • Combine data analysis and manuscript development into a single process 
  • Fit beautifully plots, graphs, images, diagrams etc. 

The Tools

  • https://www.overleaf.com/
  • https://www.jabref.org/
  • Teacher-Scholar Website 
  • YouTube 

The Basic Format

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\title{Title here }
\author{Author here }
\date{October 2020}
\usepackage{blindtext}

\begin{document}
\tableofcontents



\bibliographystyle{plain}
\bibliography{Name of your bib file.bib}

\end{document}

Change the Format

\documentclass{article}
\documentclass{book}
\documentclass{memoir}
\documentclass{beamer}

\usepackage{natbib}

\usepackage{multicol}

\begin{multicols}{2}

\end{multicols}


\bibliographystyle{apalike}
\bibliography{Name of your bib file.bib}

\end{document}

Create Audio

import pyttsx3, PyPDF2

pdfReader = PyPDF2.PdfFileReader(open('file.pdf', 'rb'))

speaker = pyttsx3.init()

for page_num in range(pdfReader.numPages):
    text =  pdfReader.getPage(page_num).extractText()
    speaker.say(text)
    speaker.runAndWait()
speaker.stop()


Source: 
  https://towardsdatascience.com
    /build-your-own-audiobook-in-7-lines-of-python-code-bfd805fca4b1

Image Source: https://pixabay.com/photos/dictaphone-microphone-portable-1580003/

Dissertation Templates

All PFF Links

Made with Slides.com