generated from learning-process/programming_course_reports
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Шульпин Илья. Отчет. Вычисление многомерных интегралов с использовани…
…ем многошаговой схемы (метод Симпсона) (#8)
- Loading branch information
Showing
20 changed files
with
805 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME) | ||
|
||
set(LATEX_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin") | ||
if (NOT EXISTS ${LATEX_OUTPUT_PATH}) | ||
file(MAKE_DIRECTORY ${LATEX_OUTPUT_PATH}) | ||
endif () | ||
|
||
if (USE_LATEX) | ||
message( STATUS "-- " ${ProjectId} ) | ||
file(GLOB_RECURSE report_files "*.tex") | ||
|
||
foreach (report ${report_files}) | ||
get_filename_component(report_name ${report} NAME_WE) | ||
list(APPEND list_report_names ${report_name}) | ||
endforeach () | ||
|
||
add_custom_target( ${ProjectId}_prebuild | ||
COMMAND ${PDFLATEX_COMPILER} -draftmode -interaction=nonstopmode ${report_files} | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
DEPENDS ${report_files}) | ||
|
||
add_custom_target( ${ProjectId}_pdf | ||
COMMAND ${PDFLATEX_COMPILER} ${report_files} | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
DEPENDS ${report_files}) | ||
|
||
add_custom_target(${ProjectId}_all_formats ALL) | ||
add_dependencies(${ProjectId}_all_formats ${ProjectId}_pdf) | ||
|
||
foreach (report_name ${list_report_names}) | ||
add_custom_command( | ||
TARGET ${ProjectId}_all_formats | ||
POST_BUILD | ||
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.aux" "${LATEX_OUTPUT_PATH}/${report_name}.aux" | ||
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.log" "${LATEX_OUTPUT_PATH}/${report_name}.log" | ||
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.pdf" "${LATEX_OUTPUT_PATH}/${report_name}.pdf" | ||
) | ||
endforeach () | ||
else() | ||
message( STATUS "-- ${ProjectId} - NOT BUILD!" ) | ||
endif() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
764 changes: 764 additions & 0 deletions
764
modules/mpi/shulpin_i_simpson_method/simpson_method.tex
Large diffs are not rendered by default.
Oops, something went wrong.