README - YuriOku/1D_SPH GitHub Wiki
Wiki Math Notation Updates
This directory contains the updated wiki files with converted mathematical notation.
What was changed
The wiki files have been converted from the old GitHub math rendering style:

To the new GitHub native LaTeX math style:
- Inline math:
$...$ - Display math:
$$...$$
Files converted
Formulation.md- English formulation documentationKernel-function.md- English kernel function documentationKernel-interpolation.md- English kernel interpolation documentationVolume-element.md- English volume element documentation定式化.md- Japanese formulation documentationカーネル関数.md- Japanese kernel function documentationカーネル補間法.md- Japanese kernel interpolation documentation体積要素.md- Japanese volume element documentation
How to apply these changes to the wiki
Since the GitHub wiki is a separate repository, these files need to be manually pushed to the wiki repository:
# Clone the wiki repository
git clone https://github.com/YuriOku/1D_SPH.wiki.git
# Copy the updated files
cp wiki-updates/*.md 1D_SPH.wiki/
# Commit and push to the wiki
cd 1D_SPH.wiki
git add *.md
git commit -m "Convert math notation to GitHub native LaTeX style"
git push
Alternatively, you can copy and paste the content from these files directly into the wiki editor on GitHub.