Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove LaTeX dependency #3395

Merged
merged 7 commits into from
Jan 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,4 @@ add_subdirectory(sphinx)
add_subdirectory(logo)
add_subdirectory(tutorials)

find_program(PDFLATEX pdflatex)
find_program(BIBTEX bibtex)
find_program(MAKEINDEX makeindex)

set(abs_srcdir ${CMAKE_CURRENT_SOURCE_DIR})
set(abs_top_srcdir ${CMAKE_SOURCE_DIR})

configure_file(latexit.sh.in
${CMAKE_BINARY_DIR}/doc/latexit.sh
@ONLY
)

add_custom_target(doc DEPENDS logo doxygen tutorials)
82 changes: 0 additions & 82 deletions doc/latexit.sh.in

This file was deleted.

10 changes: 0 additions & 10 deletions doc/misc/bibliography.bib

This file was deleted.

262 changes: 0 additions & 262 deletions doc/misc/python.tex

This file was deleted.

4 changes: 3 additions & 1 deletion doc/sphinx/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Required Development Tools

- To build the user documentation, you will need Sphinx_.

- To build the tutorials, you will need LaTeX and Jupyter.
- To build the tutorials, you will need Jupyter_.

- To build the core documentation, you will need Doxygen_.

Expand Down Expand Up @@ -124,3 +124,5 @@ in :ref:`Installation` and then the documentation with ``make sphinx``.
.. _Doxygen: http://www.doxygen.org/

.. _Sphinx: https://www.sphinx-doc.org/en/master/

.. _Jupyter: https://jupyter.org/
2 changes: 1 addition & 1 deletion doc/tutorials/01-lennard_jones/01-lennard_jones.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@
"At this point, we have set the necessary environment and warmed up our system. Now, we integrate the equations of motion and take measurements. We first plot the radial distribution function which describes how the density varies as a function of distance from a tagged particle. The radial distribution function is averaged over several measurements to reduce noise.\n",
"\n",
"The potential and kinetic energies can be monitored using the analysis method <tt>system.analysis.energy()</tt>.\n",
"<tt>kinetic_temperature</tt> here refers to the measured temperature obtained from kinetic energy and the number\n",
"Here <tt>kinetic_temperature</tt> refers to the measured temperature obtained from kinetic energy and the number\n",
"of degrees of freedom in the system. It should fluctuate around the preset temperature of the thermostat.\n",
"\n",
"The mean square displacement of particle $i$ is given by:\n",
Expand Down
Loading