{"id":21238577,"url":"https://github.com/ml4net/latex-report","last_synced_at":"2025-07-11T21:33:36.123Z","repository":{"id":261297092,"uuid":"883887359","full_name":"ML4Net/latex-report","owner":"ML4Net","description":"LaTeX Report for the ML4N Project @ Polito - Code and resources for the Project Report.","archived":false,"fork":false,"pushed_at":"2025-02-01T13:46:08.000Z","size":99944,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-15T03:28:14.137Z","etag":null,"topics":["bibtex","latex","latex-template","report"],"latest_commit_sha":null,"homepage":"","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ML4Net.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-05T18:45:47.000Z","updated_at":"2025-02-15T12:00:28.000Z","dependencies_parsed_at":"2025-02-01T14:38:10.082Z","dependency_job_id":null,"html_url":"https://github.com/ML4Net/latex-report","commit_stats":null,"previous_names":["ml4net/latex-report"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ML4Net/latex-report","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ML4Net%2Flatex-report","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ML4Net%2Flatex-report/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ML4Net%2Flatex-report/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ML4Net%2Flatex-report/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ML4Net","download_url":"https://codeload.github.com/ML4Net/latex-report/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ML4Net%2Flatex-report/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264902809,"owners_count":23681123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bibtex","latex","latex-template","report"],"created_at":"2024-11-21T00:35:45.427Z","updated_at":"2025-07-11T21:33:36.094Z","avatar_url":"https://github.com/ML4Net.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project Report\n\n![polito](resources/logo_polito.jpg)\n\nThis repository contains the LaTeX source files for the project report associated with\n[Project Repository](https://github.com/ML4Net/SSH-Shell-Attacks), which holds the main code and related materials.\nThe report repository will be included as a submodule in the main project repository to facilitate\na seamless integration of documentation alongside the project.\n\n## Structure\n\nThe repository is organized as follows:\n\n- `sections/`: contains separate LaTeX files for each section of the report.\n- `images/`: stores all images and diagrams included in the report.\n- `bibliography/`: holds references and bibliography files.\n- `main.tex`: the main LaTeX file that compiles the entire report.\n- `appendix-main.tex`: the LaTeX file that compiles the appendix.\n- `compile.sh`: a script to compile the report and appendix, or clean the build environment.\n\n## Authors\n\n| Name              | GitHub                                                                                                               | LinkedIn                                                                                                                                  |\n| ----------------- | -------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |\n| Andrea Botticella | [![GitHub](https://img.shields.io/badge/GitHub-Profile-informational?logo=github)](https://github.com/Botti01)       | [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profile-blue?logo=linkedin)](https://www.linkedin.com/in/andrea-botticella-353169293/) |\n| Elia Innocenti    | [![GitHub](https://img.shields.io/badge/GitHub-Profile-informational?logo=github)](https://github.com/eliainnocenti) | [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profile-blue?logo=linkedin)](https://www.linkedin.com/in/eliainnocenti/)               |\n| Renato Mignone    | [![GitHub](https://img.shields.io/badge/GitHub-Profile-informational?logo=github)](https://github.com/RenatoMignone) | [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profile-blue?logo=linkedin)](https://www.linkedin.com/in/renato-mignone/)              |\n| Simone Romano     | [![GitHub](https://img.shields.io/badge/GitHub-Profile-informational?logo=github)](https://github.com/sroman0)       | [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profile-blue?logo=linkedin)](https://www.linkedin.com/in/simone-romano-383277307/)     |\n\n## Compilation Instructions\n\nTo compile the report or clean the output directory, you can use the provided `compile.sh` script.\n\n### First Time Setup\n\nBefore using the `compile.sh` script for the first time, make sure it has the necessary execute permissions. Run the following command to grant execute permissions to the script:\n\n```bash\nchmod +x compile.sh\n```\n\n### Compile Options\n\nThe `compile.sh` script provides the following functionalities:\n\n- **Compile both main report and appendix**:\n  ```bash\n  ./compile.sh\n  ```\n  This is the default behavior and compiles both `main.tex` and `appendix-main.tex`, generating PDFs for the report and appendix in the `out` directory.\n  \n- **Compile only the main report**:\n  ```bash\n  ./compile.sh main\n  ```\n  This compiles `main.tex` and generates the report PDF.\n  \n- **Compile only the appendix**:\n  ```bash\n  ./compile.sh appendix\n  ```\n  This compiles `appendix-main.tex` and generates the appendix PDF.\n  \n- **Clean the output directory**:\n  ```bash\n  ./compile.sh clean\n  ```\n  This removes all files in the `out` directory and any previously generated PDFs in the project root, ensuring a fresh build environment.\n\nFor any issues, please refer to the main project repository or contact the authors.\n\n### Notes\n\n- Ensure all necessary dependencies, including LaTeX and bibliography tools, are installed on your system before running the script.\n- The output files are saved in the `out` directory, with the report and appendix PDFs copied to the project root with custom names.\n\n---\n\nThis repository is structured for ease of integration and version control, with the report versioned separately from the main codebase. Happy compiling!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fml4net%2Flatex-report","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fml4net%2Flatex-report","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fml4net%2Flatex-report/lists"}