This project allows the generation of reports or articles in IEEE format using markdown files as input.
This project provides a simple way to convert markdown files into documents formatted according to IEEE standards. It uses a Makefile
to automate the conversion process.
- Pandoc: Pandoc is a universal document converter.
- LaTeX: Required to render the document in PDF format according to IEEE standards.
-
Clone the repository:
git clone <REPOSITORY_URL> cd <REPOSITORY_NAME> make install
-
Make sure you have Pandoc and LaTeX installed on your system.
To generate an IEEE-formatted article from a markdown file, follow these steps:
-
Place your markdown file in the root of the project or modify the path in the
Makefile
. -
Run the make command:
make
-
The generated PDF document will be saved in the
output
folder with the namearticle.pdf
.
To generate the PDF from the main.md
file, run:
make
.
├── Makefile # File to automate document generation
├── main.md # Input markdown file
└── README.md # Project documentation
Contributions are welcome! To contribute, follow these steps:
- Fork the repository.
- Create a branch for your feature or bugfix:
git checkout -b my-feature
- Commit your changes:
git commit -m 'Add my feature'
- Push to the original branch:
git push origin my-feature
- Open a Pull Request.
This project is licensed under the terms of the MIT license. See the LICENSE file for more details.