Return to Contents

Converting notes from Latex (pdf) to Github pages

Things to look out for

After getting access to the folder containing the source code, content can more or less all be copied and pasted from the .tex file to a markdown file.

Paragraph
<br><br>
Next paragraph



<!-- Italic and Bold in Latex -->
\textit{Italic} and \textbf{Bold}

<!-- Italic and Bold in Markdown -->
*Italic* and **Bold**



<img align="right" src="figs/12.3-square-wave.svg" width="315"/>



<!-- before -->
\begin{equation*}
\frac{\partial}{\partial x} \left[ f(x, y) \, g(x, y) \right] = 
\frac{\partial f(x,y)}{\partial x}\,g(x,y) + f(x,y)\,\frac{\partial
g(x,y)}{\partial x}
\end{equation*}

<!-- after -->
$$\begin{equation}
\frac{\partial}{\partial x} \left[ f(x, y) \, g(x, y) \right] = 
\frac{\partial f(x,y)}{\partial x}\,g(x,y) + f(x,y)\,\frac{\partial
g(x,y)}{\partial x}
\end{equation}$$



<!-- These don't work -->
\dd{x} , \me  , \xRightarrow

<!-- Replace with these -->
\textrm{d}x , e , \Rightarrow